Convert mp3 to ogg vorbis

28,935

Solution 1

On Debian, a quick search with aptitude showed me the packages mp32ogg and dir2ogg. Have a look, maybe they do what you need.

Solution 2

ffmpeg (or more likely the fork avconv if you're using Debian or Ubuntu - these instructions should apply equally to both, though nobody knows how far apart they may drift in the future) should be in the repositories of your distro.

ffmpeg -i input.mp3 -c:a libvorbis -q:a 4 output.ogg

To do a whole directory full of MP3s:

for f in ./*.mp3; do ffmpeg -i "$f" -c:a libvorbis -q:a 4 "${f/%mp3/ogg}"; done

Recursively, with find:

find . -type f -name '*.mp3' -exec bash -c 'ffmpeg -i "$0" -c:a libvorbis -q:a 4 "${0/%mp3/ogg}"' '{}' \;

Set the output quality by adjusting the value of -q:a: for this codec the range is 0-10 and higher gives better quality.

On older versions of ffmpeg, you may need to use -acodec and -aq instead of -c:a and -q:a.

Of course, converting from one lossy format to another is not ideal; but such is life.

Share:
28,935

Related videos on Youtube

Michiel de Mare
Author by

Michiel de Mare

I've been programming since I was twelve years old - Basic, Pascal, C, C++, Java, Ruby. I've done a lot of Java, and since 2006 I'm working mostly with Ruby, and sometimes a bit of Clojure.

Updated on September 18, 2022

Comments

  • Michiel de Mare
    Michiel de Mare almost 2 years

    Is there a command-line utility to convert mp3s to ogg vorbis that I can install with apt-get?

    Alternatively, is there an extension for nginx so I can point it to a directory with mp3 files and have it serve ogg files on the fly?

  • Christian Long
    Christian Long over 10 years
    For the quality parameter, a higher number gives better quality. See here: trac.ffmpeg.org/wiki/TheoraVorbisEncodingGuide
  • loretoparisi
    loretoparisi about 8 years
    Super - duper, thank you. Very useful in cases like this github.com/nwjs/nw.js/issues/4687
  • aggregate1166877
    aggregate1166877 almost 8 years
    Confirmed: using those params with avconv does indeed work. Great answer.