ffmpeg - Pseudo-streaming mp4 files does not work with flash player -


i've got problem streaming audio on website. thought put mp3 file inside mp4 container h264 codec, can use pseudo-streaming ability of mp4 codec.

the code i'm using convert files is:

ffmpeg -i 1.mp3 -y -b:a 32k -vn 1.mp4 

pseudo-streaming (seeking in not-loaded parts of media) works in html5 player not in flash media players such jwplayer or flowplayer.

i've tested files on both apache server h264 module enabled , nginx mod_mp4 enabled, without lucks.

i tried mp4box, qtindexswapper , creating real video file mixing of image loop , audio file.

ffmpeg -y -i joojoo.png -i 2.mp3 -vcodec mjpeg havij.mp4 mp4box -add havij.mp4 -isma havij_new.mp4 

what doing wrong? can make work?

you have hint file. check out mp4box -hint


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -