Home » Questions » Computers [ Ask a new question ]

How to extract the sound track from a flv file

How to extract the sound track from a flv file

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?

Asked by: Guest | Views: 434
Total answers/comments: 2
bert [Entry]

"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"
bert [Entry]

I use AudioExtractor for this (web)