Created
September 25, 2019 07:44
-
-
Save marek-pietrzak-tg/129faf027a1cc62a3a1e6c49820ea613 to your computer and use it in GitHub Desktop.
Convert wav to mp3 from command line
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
# just copy and paste below command to the folder with wav files: | |
for f in *.wav; do lame --vbr-new -V 3 "$f" "${f%.wav}.mp3"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment