Status
Not open for further replies.

lib3rty1

Active Member
946
2010
29
0
Hi,
I am having some problems with avidemux encodes to mp4 and I don`t have any clue how to fix it.

When I make an encodes to mp4 files are not instant streamable. They need to pre-load first. Any clues what kind of option need to be checked to make files instant stramable ?
 
9 comments
I have tryed qt-faststart file.mp4 file.mp4 but when I tryed check qt-faststart -version I got an error that command can not be found so I think I have messed something with ffmpeg installation.
 
I have tryed qt-faststart file.mp4 file.mp4 but when I tryed check qt-faststart -version I got an error that command can not be found so I think I have messed something with ffmpeg installation.

That would not work, you must type a different output file name than the input file name, so

qt-faststart file.mp4 file2.mp4

would work.

Try testing.
 
From the MP4box documentation here: http://gpac.sourceforge.net/doc_mp4box.php

As of version 0.2.4, MP4Box always stores the file with 0.5 second interleaving and meta-data at the begining, making it suitable for HTTP streaming.
-inter Duration : interleaves media data in chunks of desired duration (in seconds). This is usefull to optimize the file for HTTP/FTP streaming or reducing disk access. All meta data are placed first in the file, allowing a player to start playback while downloading the content. By default MP4Box always stores files with half a second interleaving and performs drift checking between tracks while interleaving. Specifying a 0 interleaving time will result in the file being stored without interleaving, with all meta-data placed at beginning of the file.


So, use:


mp4box -inter 500 input.mp4

or just: mp4box input.mp4
 
Status
Not open for further replies.
Back
Top