Convert movie audio from ac3 to mp3 ? (no video conv.)

1

Possible Duplicate:
Convert mp4 to mp3

Hello everybody,

Could you please suggest me a quick way to convert just the audio of movies from AC3 to MP3 ? I would like to get a new Avi with the same video, but different audio (mp3). OS: windows 7.

(I do not need to convert video, just audio)

thank you !

iAsk

Posted 2011-03-20T16:24:47.163

Reputation: 689

Question was closed 2011-03-20T20:31:58.687

possible duplicate of Convert mp4 to mp3 and/or Convert windows media video stream to mp3 audio?

– Ƭᴇcʜιᴇ007 – 2011-03-20T16:31:11.580

Answers

2

You can do it with ffmpeg. Try a command line like this:

ffmpeg -i <input_filename> -f <container> -vcodec copy -acodec libmp3lame -ar 44100 -ab 128k -ac 2 <output_filename>

Replace the <> stuff with whatever filenames and containers you are using. Do note that this will downmix surround to 2 channel audio.

Mr Alpha

Posted 2011-03-20T16:24:47.163

Reputation: 6 391

Could downmixing be avoided by removing -ac 2? – user1686 – 2011-03-20T17:03:38.447

1@grawity mp3 doesn't support more than 2 channels – Mr Alpha – 2011-03-22T08:45:45.690

any graphical software please :) ?? – iAsk – 2011-03-22T21:39:23.997