views:

43

answers:

0

I have an MPEG-TS tha Id'like to convert into a mp4 file. The MPEG-TS contains AAC audio and h.264 video. So with ffmpeg i can simply do ffmpeg -i input.ts -acodec copy -vcodec copy output.mp4. But I want to do this on the iPhone programmatically. So on the iPhone I don't wan't to use ffmpeg because it's LGPL and I would like to use something with an Apache or a BSD Style license. And I really just need to convert these two Formats and nothing more. So dealing with the entire ffmpeg lib would be a bit of an overhead. Any suggestions? Is there maybe even a way to do this with the Apple Frameworks?