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.mp3If ffmpeg is not installed ...
sudo apt-get install ffmpegand of course you need the audiocodecs required to play the video/audiofiles.
3WinFF. A simple GUI to FFmpeg. Winff is in Ubuntu's repositories. Do sudo apt-get install winff to install it.
Soundconverter, a lightweight simple app for converting audio files and can also take video as input. sudo apt-get install soundconverter