Video editing framework in objective-c

Is there any framework that can edit video in objective-c. Any help is appreciated. Thank you very much!

+4
source share
1 answer

You can use libavcodec for A / V manipulation. This is a C-based API, so it will look different than the rest of your code, but it will work fine. However, the documentation is sparse.

If you're not targeting iOS devices, Quicktime still exists.

If you're targeting iOS devices, the new AVFoundation can help you.

+4
source

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


All Articles