Convert mp4 to mp3

10

2

I would like to convert mp4 (video included) to mp3 (without video). what is the best way of doing this apart from using audacity (or similar software) and performing manual conversion (recording as the audio plays)

quest49

Posted 2009-11-30T15:02:50.583

Reputation: 203

Answers

3

I've used Convert MP4 to MP3. As for me - it's good.

ToreTrygg

Posted 2009-11-30T15:02:50.583

Reputation: 490

By now this tool is shareware, the free version only converts the first 3 minutes seconds of every file. – Gerald Schneider – 2014-09-12T18:19:58.343

7

Try changing the extension from .mp4 to .m4a. Then open it in iTunes and convert it to an mp3.

jsejcksn

Posted 2009-11-30T15:02:50.583

Reputation: 2 854

1Worked brilliantly. I love the fact that it uses a well-known company's software. Thanks! – Senseful – 2011-03-18T20:05:48.567

3

MediaCoder should do it. Load the video, disable video, choose audio encoder, done.

Or download the audio version of MediaCoder, AudioCoder.

Grumpy ol' Bear

Posted 2009-11-30T15:02:50.583

Reputation: 5 313

2

Command-line-wise, there's always ffmpeg:

ffmpeg -i input.mp4 -c:a libmp3lame -q:a 4 output.mp3

-q:a determines the audio quality of the MP3; its meaning differs between encoders, but in this case a lower number gives better quality, but a larger file. See here for a guide to encoding MP3s with ffmpeg. Since the MP3 format cannot contain any video, there is no need to specify any video-stripping option - ffmpeg does it automatically.

Alternatively, to simply extract the audio into an audio MP4 (M4A):

ffmpeg -i input.mp4 -vn -c copy output.m4a

Since the MP4 format (and M4A is simply a renamed MP4) can contain video, the -vn option is necessary to strip the video stream. -c copy tells ffmpeg to copy the streams without any re-encoding.

You can get ffmpeg from the Downloads page on their website.

evilsoup

Posted 2009-11-30T15:02:50.583

Reputation: 10 085

You've got to love the good old unix classics. I used this on windows, combined with a for loop from this post on SO I made a loop to convert all files in a directory in a dos prompt: for /f "delims=|" %f in ('dir /b *.m4a') do ffmpeg -i "%f" -c:a libmp3lame -q:a 4 "%f.mp3".

– Gerald Schneider – 2014-09-12T18:18:51.773

2

All video-processing roads lead to Avidemux.

Drag MP4 into window. If the original audio track in the MP4 file was MP3, you can go directly to ‘Audio->Save’ and get the original, untouched audio with no quality loss.

If it's not MP3 (probably AAC would be more likely), change the ‘Audio’ drop-down from ‘Copy’ to ‘MP3 (lame)’, hit ‘Configure’ to set the bitrate (you probably also want to enable Joint Stereo), and then ‘Audio->Save’.

bobince

Posted 2009-11-30T15:02:50.583

Reputation: 8 816

1

The quickest way (If you have good internet) is just to use an online service.

For example Media-Convert or Zamzar

William Hilsum

Posted 2009-11-30T15:02:50.583

Reputation: 111 572

1

All of the above are good choices.

You may also want to investigate MeGUI - it's complex and the learning curve is not the most accessible, but it's powerful and you may find it useful again at some point in the future.

Florin Andrei

Posted 2009-11-30T15:02:50.583

Reputation: 919

0

benjamin239

Posted 2009-11-30T15:02:50.583

Reputation: 111

0

Quicktime Pro is able to do it.

mouviciel

Posted 2009-11-30T15:02:50.583

Reputation: 2 858

1is quicktime available for free on a mac? – quest49 – 2010-10-01T19:27:02.647

Before Snow Leopard, there were two versions of Quicktime: one free and shipped with the system, the other one being a paid upgrade. This latter is Quicktime Pro. Since Snow Leopard, a third version exists, named Quicktime X, which is free and shipped with the system. I know for sure that Quicktime Pro is able to convert from mp4 video to mp3 audio, I know that Quicktime X is not. I am not sure about Quicktime. – mouviciel – 2010-10-02T09:09:50.257