Created
August 23, 2018 22:58
-
-
Save psenough/de5a65fdcb48d99b897063a2488435c9 to your computer and use it in GitHub Desktop.
reencode all wavs in diretory to flac using ffmpeg
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
| @ECHO OFF | |
| FOR %%f IN (*.wav) DO ( | |
| echo Converting: %%f | |
| ffmpeg -i "%%f" -ar 44100 -map_metadata -1 "%%~nf.flac" | |
| ) | |
| echo Finished | |
| PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment