Extracting audio from movie in Linux using ffmpeg
July 12th, 2010
3 comments
Just needed to extract the audio from a movie under linux,
and thought it would be a nice thing to share.
The software i used is called ffmpeg, and should be easy to install (or allready installed) in most linux distrobutions.
I simply ran the following command, to extract the audio from a movie:
ffmpeg -i input.mov -vn -acodec pcm_s16le -ar 44100 -ac 2 output.wav
ffmpeg -i mandelbrot.flv -vn -acodec pcm_s16le -ar 44100 -ac 2 mandelbrot.wav