ios - FFmpeg move the header to the front of the file -


i transcode h.264 files in mp4 container using ffmpeg, header placed in end , needs moved.so, how move header end of file beginning of file?i need objective c code.

as answered few years later;

ffmpeg -i input.mp4 -codec copy -movflags +faststart output.mp4 

Comments