Which software can I use to extract an audio track from a video?

I used VirtualDubMod on Windows to pull off the sound from a video file. What software could do the same on Ubuntu? thanks.

3 Answers

Command line:

ffmpeg -i input_file.flv -vn output_file.mp3
ffmpeg -i input_file.mov -vn output_file.mp3
ffmpeg -i input_file.avi -vn output_file.mp3

If ffmpeg is not installed ...

sudo apt-get install ffmpeg

and of course you need the audiocodecs required to play the video/audiofiles.

3

WinFF. A simple GUI to FFmpeg. Winff is in Ubuntu's repositories. Do sudo apt-get install winff to install it.

WinFF

Soundconverter, a lightweight simple app for converting audio files and can also take video as input. sudo apt-get install soundconverter

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like