ffmpeg – ogg to mp3

Just a quick snipped to transform files from OGG format to MP3 format in *Unix based systems. Due to the command only accepts one file at a time, it needs a bit of bash shell code to make the trick and transforming all the files in a directory.

find . -type f -iname '*.ogg' -execdir sh -c \
    'ffmpeg -v 8 -i "$1" "${1%.*}.mp3" && rm -- "$1" && echo "$1"' sh {} \;
ffmpeg – ogg to mp3

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.