Last active
November 17, 2021 03:50
-
-
Save worthy7/d241b8706ac6aca842b8a4d27aca0a11 to your computer and use it in GitHub Desktop.
Batch file using Sox to recursively convert some audio
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 /r %%f in (*.wv) do ( | |
echo "fullname: %%f" | |
echo "name: %%~nf" | |
sox "%%f" "%%~nf.flac" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment