Create QuickTime movies in Qt?
-
Hi,
To add to andreyc, the quickest way would be to use ffmpeg for that e.g. through QProcess
-
Yeah, that was my thought, as well. By far the easiest thing to do would be just to dump the frames into a temp dir, run ffmpeg shell command as a "system" call, then remove the frames.
I managed to get the ffmpeg libs to compile (easy on Mac or Linux, rather gruesome in Windows). So, it's possible to create movies programatically from frame data, but the cost of building for several platforms and architectures is not fun, and you can't use h.264 in ffmpeg in a non-GPL program.
Just gotta convince the boss to go with the easy (run ffmpeg command instead) solution. Only real cost is a ton of disk space in the process of doing this... :-)