Created
August 28, 2020 14:33
-
-
Save krispayne/e2afab6fce5792bbfc4873030c7c1b21 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
# wrapper for wav to mp3 using ffmpeg | |
#ffmpeg -i Big\ Squeeze.wav -b:a 320k Big\ Squeeze.mp3 | |
mkdir mp3 | |
for x in *.wav; do | |
ffmpeg -i "$x" -b:a 320k "mp3/$(basename "${x/.wav}").mp3" | |
# sleep 10 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment