
FFMPEG + MP4Box + h.264 question
Hello, Im trying to encode ...Hello, Im trying to encode videos to high quality and bandwidth friendly mp4 video (h.264) , the point is also to make them pseudo-streamable with the lighttpd h.264 module.
I'm using ffmpeg command:
bc.. ffmpeg -i start.avi -s 640:352 -acodec libfaac -ab 32k -ac 1 -vcodec libx264 -aspect 16:9 -vpre hq -crf 22 -threads 0 end.mp4
The video is a mythbusters episode
After that, I tried doing the whole moov atom moving with MP4Box
MP4Box
bc.. MP4Box -inter 500 final.mp4
Then I added the player to a website and tried to play it, the video took around 1 30 seconds to even start to play, however after it started to play the video played fine with no stuttering, however, these 30 seconds are misleading. Can anyone help?
Thanks!