Skip to content

Instantly share code, notes, and snippets.

@guyoun
Created September 5, 2014 17:03
Show Gist options
  • Save guyoun/5b679afde9365ee96932 to your computer and use it in GitHub Desktop.
Save guyoun/5b679afde9365ee96932 to your computer and use it in GitHub Desktop.
Convert ogg to mp3
#!/bin/bash
for dname in *;
do
if [ -d "$dname" ];
then
cd "$dname"
for name in *.ogg;
do
ffmpeg -i "$name" -ab 256k "${name/.ogg/.mp3}"
done
cd ..
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment