HTTP Live Streaming
I got this response back from apple after contacting them
Every video stream accessible via 3G must have a minimal encoded steam with a bit rate of no more than 64 Kbps. Typically this is an audio only stream with minimal video content. As long as that stream is present you are free to provide as many additional, higher bit rate, streams as you like. Our only concern is that the that the low bit rate stream is provided
I'm currently using this command for the ffmpeg encoding :
ffmpeg -y -i $path_to_file -acodec libfaac -ab 64k -vcodec libx264 -b 512k -bt 512k -s 480x320 -threads 0 -f ipod $path_to_new_file.m4v
To me it seems that i respect the 64 kb stream but I may be wrong, can anyone help ?
Maybe post your encoding command :-??
Last edited by Annonymus; 02-12-2010 at 02:49 PM.
|