How to add a MOOV atom in a mp4 video file

前端 未结 8 1523
礼貌的吻别
礼貌的吻别 2020-12-24 06:04

I am working on live device to server streaming in android. I am able to send data in bytes on server but when i play that file during recording on server VLC

8条回答
  •  执笔经年
    2020-12-24 06:32

    It is possible to move the moov atom to the begining of the video file using FFMpeg.

    ffmpeg -i input_video_file.mp4 -vcodec copy -acodec copy -movflags faststart output_video_file.mp4
    

提交回复
热议问题