The original conversion command was 

Code:
--------------------
    
  ffmpeg -i $source -ac 2 -ar 44100 -y -vn -acodec libfdk_aac -vbr 5 $dest
  
--------------------


Please try the following

Code:
--------------------
    
  ffmpeg -i $source -movflags faststart -ac 2 -ar 44100 -y -vn -acodec 
libfdk_aac -vbr 5 $dest
  
--------------------


Technically, it results in ffmpeg moving the MPEG4 "moov" atom ahead of
the "mdat" atom - (i.e. all index and metadata are at start and before
audio data) - which makes the file suitable for streaming.


------------------------------------------------------------------------
bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=108852

_______________________________________________
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to