Is there anyway to extract the sound track from a flv file on MacOS X? If yes, what are the tool/ways I can do that?

Thank you.

link|improve this question

17% accept rate
feedback

4 Answers

up vote 2 down vote accepted

Simply use MPlayer:

$ mplayer -dumpaudio input.flv

This command dumps the whole audio track in the original format into a file called "stream.dump". Thus, the file's audio track is dumped lossless.

Alternatively, try FFmpeg:

$ ffmpeg -i input.flv -f mp3 -vn -acodec copy output.mp3
link|improve this answer
Thanks. A related question. Can you please tell me if it is possible to cut off the first 3 seconds of a mp3 file on Mac using mplayer or ffmpeg? – hap497 Nov 14 '09 at 8:36
Yes, just use the -ss parameter. See also activearchives.org/wiki/… – timn Nov 15 '09 at 1:29
feedback

You can use the freeware named FLV to Audio Converter for Mac.

alt text

link|improve this answer
feedback

I use AudioExtractor for this (web)

link|improve this answer
feedback

Avidemux: all platforms, all manner of video processing tasks including saving audio (optionally without a re-encode quality loss, where possible).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.