is it possible to convert mp3 to ogg via command line?
I'd like to just in a bulk swoop convert my mp3 files to ogg so i can play them in firefox without any issues.
is it possible to convert mp3 to ogg via command line?
I'd like to just in a bulk swoop convert my mp3 files to ogg so i can play them in firefox without any issues.
Searching for packages matching ogg, I found dir2ogg which seems to be exactly what you want. Just
And it recursively finds and converts all mp3 files under
/path/to/mp3s/
to ogg (assuming I read the manual correctly).Use a combination of FFMPEG and String Manipulation.
Change into the folder where your mp3's are located:
One example is to use a simple "for" loop:
The double quotes prevent spaces in the filenames being treated as 'newlines'.
ffmpeg has several options to include in the conversion like codecs, bitrate, sample size, stereo/mono, etc... The above is the most generic conversion with default settings.
Be careful with conversions from MP3, M4A, etc. to OGG because the result may sound poor!
Warning: Both MP3 and OGG are lossy formats, unlike say WAV or FLAC. This means that they achieve their compression in great part by throwing away bits of audio information that are imperceptible to the human ear (called psychoacoustics [wikipedia])
When you encode (transcode) from one lossy format to another, most of those psychoacoustically redundant bits are already gone, so the transcoding quality will suffer and may even be "hearable" in the result. Hence, it isn't recommended to do such conversions unless absolutely necessary.
Minimize the effect if you do so by choosing a higher destination bit-rate than the source bit-rate
If you do this MP3-to-OGG conversion, you can minimize the chance of artifacts (poor quality) by using a higher destination bitrate than the source bitrate, e.g if your MP3s are at 128 kbps, try using Ogg at
-q7
(variable bitrate level 7), which is usually around ~200 kbps.You can pass the
-q
option to dir2ogg (available in the repos as @geirha mentioned) which should do what you want.you can use the avconv a gpl program, I did a shell for exemplify (run it on folder with the .mp3 files):
or a more simple version, without validation of avconv installation:
The parsing/replacing of mp3 by ogg is incorrect. The correct form should be:
Here's one using mplayer I think this is faster than avconv. Although, firefox should play mp3 files natively.
In case you are doing only audio use the below code [else FF doesn't play the .ogg]
There is also soundconverter. It supports both GUI and CLI and can perform bulk transformations in both modes.
This looks like it might solve your problem http://www.perturb.org/display/entry/687/