Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's command line page.
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.