Search code examples
objective-ciphonevideo-processing

Video edit framework in objective-c


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


Solution

  • You can use libavcodec for A/V manipulation. It's a C based API, so it'll look different than the rest of your code, but it'll work just fine. The documentation is sparse though.

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

    If you are targeting iOS devices, the new AVFoundation framework may be able to help you.