Command-line ffmpeg has the ability to use an empty moov_atom at the beginning of a file.
More info: http://www.ffmpeg.org/ffmpeg-formats.html#Options-3
I would like to do the same thing, except within code. Anyone know how?
Command-line ffmpeg has the ability to use an empty moov_atom at the beginning of a file.
More info: http://www.ffmpeg.org/ffmpeg-formats.html#Options-3
I would like to do the same thing, except within code. Anyone know how?
This is an
AVOption
for the mov muxer.Things in avcodec, avformat, etc. can take
AVOption
s when setting them up. You can useav_opt_set
to set these options. It would be something like: