Hi,

I have a system working fine which encodes videos in to h.264 (x264) mp4 video, but I need to use something called qt-faststart to enable a browser to start playing a file beofre it has fully downloaded.

There is an app in the ffmpeg called qt-faststart which can be used outside ffmpeg using : qt-faststart input.mp4 output.mp4

But does anyone know how I can set this option in the command line?

eg: my commands are :

ffmpeg -y -i input.mov -vcodec h264 -r 24 -s 320x240 -b 200 output.mp4

I tried a switch '-qt-faststart' but that didn't work.

ANyone have any ideas?

thanks!