Tuesday, January 12, 2010

Convert youtube videos to mp3 audio

The ffmpeg command can be used for this purpose .

$ ffmpeg -i youtube.flv -acodec copy ouput.mp3

-i specifies the input file
-acodec Force audio codec to codec. Use the "copy" special value to specify
that the raw codec data must be copied as is.