Set up buffering for <video> object

后端 未结 1 1118
后悔当初
后悔当初 2020-12-22 05:54

So I\'m trying to play videos that are hosted on a remote server, the problem I\'m encountering is that it takes a VERY long time for large videos to start playing. It seems

相关标签:
1条回答
  • to process individual uploads you'll want to use something like ffmpeg to move the meta data (MOOV atom) to the front of the video file:

    ./ffmpeg -y -i SourceFile.mp4 -s 1280x720 -c:v libx264 -b 3M -strict -2 -movflags faststart DestFile.mp4
    

    The above will give you a 1280x720 output, at 3Mbps using h264 in an mp4 container, and will also do a second pass to move the moov element to the front of the file enabling it to start streaming faster. It will not re-encode the audio so will keep whatever quality you started with

    You may want to play around with the framesize and the bitrate to get the filesize to match what you like/need.

    to do this in the background you'll want to review something like this to call ffmpeg from PHP, or to make use of http://ffmpeg-php.sourceforge.net/ to call it, or if easier use a remote transcode service such as http://ffmpegasaservice.com/

    0 讨论(0)
提交回复
热议问题