-
-
Save Gladkov-Art/90e0004915598f75b9b6fccd0fd22f66 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = "FFmpegBin" | |
s.version = "0.1.0" | |
s.summary = "The latest version of FFmpeg for iOS" | |
s.description = "FFmped libraries for iOS" | |
s.homepage = "https://ffmpeg.org" | |
s.license = 'MIT' | |
s.author = { "iOS" => "[email protected]" } | |
s.source = { :http => "https://downloads.sourceforge.net/project/ffmpeg-ios/ffmpeg-ios-master.tar.bz2" } | |
s.platform = :ios, '8.0' | |
s.requires_arc = true | |
s.source_files = 'FFmpeg-iOS/include/**/*.h' | |
s.public_header_files = 'FFmpeg-iOS/include/**/*.h' | |
s.header_mappings_dir = 'FFmpeg-iOS/include' | |
s.vendored_libraries = 'FFmpeg-iOS/lib/*.a' | |
s.libraries = 'avcodec', 'avdevice', 'avfilter', 'avformat', 'avutil', 'swresample', 'swscale', 'iconv', 'z', 'bz2' | |
s.frameworks = 'AudioToolbox','CoreVideo','CoreImage','CoreMedia','QuartzCore','AVFoundation','CoreGraphics' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment