Last active
April 15, 2021 14:03
-
-
Save matthacksteiner/addd9651d918cd4274acc9bc47af1395 to your computer and use it in GitHub Desktop.
Convert all wav files in a directory to a 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
for /R %f in ("*.wav") do (ffmpeg.exe -i "%~f" -acodec mp3 "%~pf%~nf.mp3") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment