欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s

程序员文章站 2022-06-08 15:32:48
...

In the posts, I will show how to use ffmpeg on iOS.

 

This posts is a document for this project: 

https://github.com/lvjian700/ffmpegc-demo

 

Now, ffmpec support x264 module. If you use the script before, please check your version first. 

 

What is ffmpeg ?

FFmpeg is a complete, across-platform solution to record, convert and stream audio and video. 

Why use ffmpeg?

  • Play h.264 video
  • encoding capture video to h.264 video(It need ffmpeg h.264 module.)
  • publish a av stream
  • subscribe a rtsp av stream

Before use ffmpegc-demo, you should download and compile ffmpeg:

I made a repository to make the step easy:
git clone git@github.com:lvjian700/ffmpegc.git
cd ffmpegc
./install-ffmpeg.sh
 https://github.com/lvjian700/ffmpegc

If compile complete, you can find universal library in ffmpeg/build folder:

1. ffmpeg core library:
Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
 
2. ffmpeg x264 module. x264 is a H.264/MPEG-4 AVC encoder 
Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
 

Using ffmpeg

1. Clone project first:

git@github.com:lvjian700/ffmpegc-demo.git

2.Open in XCode and copy build/*.a and x264/build/*.a to libs/ folder of the project:

Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
 

3. Add them to project link library

Project References -> Targets -> Build Phases -> Link Binary With Librarys

Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
 

4. Add dependences library:

Project References -> Targets -> Build Phases -> Link Binary With Librarys
Add two library:
  • libbz.dylib
  • libz.dylib
  • libiconv.2.4.0.dylib
Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
 

5. Add Header Search Paths:

Project References -> Targets -> Build Settings -> Header Search Paths
1. add ffmpeg core header paths:
Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
 
2. add x264 header paths:
Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
 
 

 

6. Now, run project ...

Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 

 

Some useful document:

《How to prepare your mac for ios development with ffmpeg libraries》

《ffmpeg configure options》 -pdf

 

 

  • Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
  • 大小: 69.9 KB
  • Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
  • 大小: 44.8 KB
  • Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
  • 大小: 44.8 KB
  • Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
  • 大小: 247.8 KB
  • Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
  • 大小: 238 KB
  • Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
  • 大小: 71.1 KB
  • Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
  • 大小: 82.4 KB
  • Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
  • 大小: 108.4 KB
  • Compile ffmpeg for iOS 6, support Simulator & armv7 & armv7s
            
    
    博客分类: iphone & ipad iOSffmpeg 
  • 大小: 131.2 KB
相关标签: iOS ffmpeg