PDA

View Full Version : [ubuntu] MPEG to MP3


theozzlives
February 8th, 2009, 01:52 PM
I want to extract the audio out of a MPEG to make a MP3 so I can listen to it in my car. How do I do it???

howefield
February 8th, 2009, 01:56 PM
Try

ffmpeg -i input_file.mpg -f mp3 output_file.mp3

theozzlives
February 8th, 2009, 04:14 PM
Try

ffmpeg -i input_file.mpg -f mp3 output_file.mp3

didn't work, just gave me a ">" prompt, will audacity do it?

nevermind, it works... thanks

lswest
February 8th, 2009, 04:32 PM
try this:
mplayer -dumpaudio inputfile.mpg -dumpfile outputfile.mp3

*edit* never mind, seems you got the ffmpeg command working.