-
Notifications
You must be signed in to change notification settings - Fork 0
/
VideoLab.podspec
28 lines (24 loc) · 1.21 KB
/
VideoLab.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Pod::Spec.new do |s|
s.name = 'VideoLab'
s.version = '0.0.1'
s.summary = 'High-performance and flexible video editing and effects framework, based on AVFoundation and Metal.'
s.description = <<-DESC
High-performance and flexible video editing and effects framework, based on AVFoundation and Metal.
* High-performance real-time video editing and exporting.
* Highly free to combination of video, picture, audio.
* Support audio pitch setting and volume adjustment.
* Support for CALayer vector animations. So support complex text animations.
* Support keyframe animation.
* Support for After Effect-like pre-compose.
* Support transitions.
* Support custom effects. Such as lut filter, zoom blur, etc.
DESC
s.homepage = 'https://github.com/ruanjx/VideoLab'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'bear' => '[email protected]' }
s.source = { :git => 'https://github.com/ruanjx/VideoLab.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.swift_version = "5"
s.source_files = 'VideoLab/**/*.{swift,h,m,metal}'
s.resources = 'VideoLab/VideoLab.bundle'
end