Last active
August 29, 2015 14:05
-
-
Save wojciak/dc9014bfea8b757b64ad to your computer and use it in GitHub Desktop.
Wave to mp3
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
//convert | |
for i in *.wav; do lame -b 320 -h "${i}" "${i}.mp3"; done | |
//remove the .wav part | |
for f in *.mp3; do mv "$f" "${f/.*./.}"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment