Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Building ffmpeg iOS libraries for armv7, armv7s, arm64, i386 and universal

I have seen several scripts to build FFmpeg API for armv7, 7s and i386 but couldn't find anything which would work for armv64 as well. Some of the answers on other threads of this forum suggested to prepare a separate library for arm64 but it does not work well with rest of the architectures. Hence I need a script which can work for all the supported architectures for iOS including armv7, armv7s, armv64 and i386.

like image 501
sandy Avatar asked Apr 01 '14 15:04

sandy


1 Answers

I have use below scripts for making FFmpeg build for arm64

https://github.com/kewlbear/FFmpeg-iOS-build-script

https://github.com/bbcallen/ijkplayer/blob/fc70895c64cbbd20f32f1d81d2d48609ed13f597/ios/tools/do-compile-ffmpeg.sh#L7

You have to add libbz2.dylib and libiconv.dylib framework in your xCode project.

like image 65
Tarun Seera Avatar answered Nov 06 '22 18:11

Tarun Seera