Last active
June 19, 2016 16:06
-
-
Save gartenfeld/dbbf939e57a04ad970da2b4c8aab85a1 to your computer and use it in GitHub Desktop.
Batch Convert Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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