Skip to content

Instantly share code, notes, and snippets.

@worthy7
Last active November 17, 2021 03:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save worthy7/d241b8706ac6aca842b8a4d27aca0a11 to your computer and use it in GitHub Desktop.
Save worthy7/d241b8706ac6aca842b8a4d27aca0a11 to your computer and use it in GitHub Desktop.
Batch file using Sox to recursively convert some audio
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