Go back to Richel Bilderbeek's homepage.

Go back to Richel Bilderbeek's command line page.

 

 

 

 

 

(Command line) convert MP3 to OGG

 

convert MP3 to OGG is a command line snippet to convert an MP3 audio file to an OGG audio file.

 

mpg321 my_song_name.mp3 -w - | oggenc -o my_song_name.ogg -

 

Or all files in a folder at once:

 

for x in *.mp3; do avconv -i "$x" "`basename "$x" .mp3`.ogg"; done

 

 

 

 

 

Go back to Richel Bilderbeek's command line page.

Go back to Richel Bilderbeek's homepage.

 

Valid XHTML 1.0 Strict