Created
July 19, 2020 22:58
-
-
Save anphetamina/4085606e8de5613ea87482dcf792a6c4 to your computer and use it in GitHub Desktop.
Convert all .wav files into the current folder into 320kbps mp3 files
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 ffmpeg -i "%i" -b:a 320k "%~ni.mp3" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment