How to convert .ogg to .mp3?

29,689

Solution 1

There's several ways you can do this. Probably the easiest is to use a tool called ogg2mp3. Details on the Ubuntu forums about how do install it:

$ sudo apt-get install mp32ogg lame
$ wget ftp://ftp.pbone.net/mirror/plf.zarb.org/plf/mandrake/10.1/noarch/ogg2mp3-0.3-3plf.noarch.rpm
$ sudo alien ogg2mp3-0.3-3plf.noarch.rpm
$ sudo dpkg -i ogg2mp3_0.3-4_all.deb

While this is an RPM for Mandrake, it should work fine after running it through alien and installing the .deb. And in the future, you can use lame to rip CDs in mp3 format as it's installed in the first step.

As is commonly pointed out, converting from one lossy format (ogg) to another (mp3) will degrade the quality of the music. But its better than not being able to play the music on your portable device at all ;).

Solution 2

Transcoding from one lossy format (vorbis) to another (MP3) is not ideal, but unfortunately it is necessary sometimes, especially if one has an ageing audio device. The command-line tool avconv can do this well (ffmpeg uses identical syntax).

avconv -i input.ogg -c:a libmp3lame -q:a 2 output.mp3

will give you a variable bit rate MP3: this means that the encoder will alter the bit rate depending on the needs of the music. Dubstep needs a higher bit rate than whalesong. On average, over several pieces of music, -q:a 2 will get you 190 kbit/s, though most of them will be over or under that bitrate.

The quality setting -q:a ranges from 0 to 9, where 0 is best quality and 9 is worst. Here is a more in-depth guide. For most people, -q:a 2 is more than good enough.

To convert a directory full of oggs vorbis to MP3 (on the Linux or OSX command-line), use

for f in *.ogg; do avconv -i "$f" -c:a libmp3lame -q:a 2 "${f/ogg/mp3}"; done

Sometimes people need to use a constant bit rate, for some really obsolete hardware, or for streaming. If that is the case,

avconv -i input.ogg -c:a libmp3lame -b:a 192k output.mp3

This would be of broadly the same quality as -q:a 2, though the VBR mode should generally be preferred.

If you want a GUI frontend, WinFF might be worth looking at.

Solution 3

SoX is the Swiss Army Knife of sound processing utilities http://sox.sourceforge.net/

for f in *.ogg; do sox "$f" "${f%.ogg}.mp3"; done

its like vlc for audio files. It is so old it was ported to the Amiga in 1994.

Solution 4

If you install the package ubuntu-restricted-extra then you can rip to MP3 instead of Ogg Vorbis. Ubuntu doesn't ship with the MP3 encoder by default because of the legal minefield about who owns it.

Solution 5

You'll find the application Sound Converter in the menu under Sounds & Video Very easy to use GUI, does the job. To install Sound Converter search for it in the Ubuntu Software Center or open the terminal and run the command:

sudo apt-get install soundconverter
Share:
29,689

Related videos on Youtube

Benoit
Author by

Benoit

web/software developer, .NET, C#, WPF, PHP, have philosophy degree, love languages, run marathons my tweets: http://www.twitter.com/edward_tanguay my runs: http://www.tanguay.info/run my code: http://www.tanguay.info/web my training videos: http://partner.video2brain.com/edwardtanguay

Updated on September 17, 2022

Comments

  • Benoit
    Benoit over 1 year

    Ubuntu ripped a CD for me into audio files but they are all .ogg format which I can't play on my MP3 player.

    How can I convert .ogg files to .mp3 files?

    • endolith
      endolith over 14 years
      Yes, it's better to re-rip the CD directly to MP3s.
    • Grumpy ol' Bear
      Grumpy ol' Bear over 14 years
      @musicfreak which you wouldn't really hear. Seriously this madness needs to stop. Most, if not all, humans cann't distiguish between 320kbit quality and 128kbit quality. There have been recent studies which prove that for a fact.
    • mrduclaw
      mrduclaw over 14 years
      @NoCanDo yeah yeah, sell your logic elsewhere. I like 320kbit 'cause the number's bigger. ;)
    • scrat.squirrel
      scrat.squirrel almost 6 years
      Please see here for my script: askubuntu.com/questions/442997/…
  • Nippysaurus
    Nippysaurus almost 15 years
    @jtimberman: Cant vouch for the quality of this app, but you certainly hit the nail on the head :)
  • jtimberman
    jtimberman almost 15 years
    "Ubuntu ripped.." - indicates he's using Ubuntu, not Windows.
  • jtimberman
    jtimberman almost 15 years
    I recall using it a couple years ago when I ran into a similar issue, though I think I compiled from source.
  • juanefren
    juanefren almost 15 years
    +1, even though it may not help the original question, it cannot hurt to have an answer for Windows available too.
  • codeLes
    codeLes almost 15 years
    This is about the first package I install any time I do a clean install of Ubuntu. a must have!
  • ricastro
    ricastro almost 15 years
    My bad. Maybe it makes sense to make this question "How do you convert .ogg to .mp3?" and then have multiple solutions or solutions for different platforms.
  • user829755
    user829755 about 10 years
    minor note: would prefer ${f/.ogg/.mp3} over ${f/ogg/mp3} because the latter translates e.g. Goggle.ogg to Gmp3le.mp3.
  • guettli
    guettli almost 10 years
    if you get this error: "sox FAIL formats: no handler for file extension `mp3'". This helps: sudo apt-get install libsox-fmt-mp3
  • scrat.squirrel
    scrat.squirrel almost 6 years
    avconv did not preserve id3v2 tags
  • scrat.squirrel
    scrat.squirrel almost 6 years
    Please see here for a little script that converts ogg to mp3 and preserves tags: askubuntu.com/questions/442997/…