Last active
August 15, 2024 11:17
-
-
Save championofblocks/3982727 to your computer and use it in GitHub Desktop.
Command line bash to convert all wav to mp3
This file contains 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 i in *.wav; do lame -b 320 -h "${i}" "${i%.wav}.mp3"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This worked great 💯