How to use run ffmpeg command in ios

I successfully created ffmpeg in xcode, but I did not understand how to execute the command in the project. I studied it and fined how to play video using encoding and decoding, but did not understand how to run the command.

+4
source share
1 answer

You cannot run the ffmpeg command directly with code; instead, you should use c code to decode the encoding that can be achieved using object c-wrappers. FFmpegWrapper gives you an easy wrapper class to convert media.

0
source

Source: https://habr.com/ru/post/1651387/


All Articles