Skip to content

Instantly share code, notes, and snippets.

@gartenfeld
Last active June 19, 2016 16:06
Show Gist options
  • Save gartenfeld/dbbf939e57a04ad970da2b4c8aab85a1 to your computer and use it in GitHub Desktop.
Save gartenfeld/dbbf939e57a04ad970da2b4c8aab85a1 to your computer and use it in GitHub Desktop.
Batch Convert Script
for file in <DIR>/*.ogg; do
dest="converted/${file[@]/%ogg/mp3}"
ffmpeg -hide_banner -i "$file" -qscale:a 4 -acodec libmp3lame $dest
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment