Skip to content

Instantly share code, notes, and snippets.

@psenough
Created August 23, 2018 22:58
Show Gist options
  • Save psenough/de5a65fdcb48d99b897063a2488435c9 to your computer and use it in GitHub Desktop.
Save psenough/de5a65fdcb48d99b897063a2488435c9 to your computer and use it in GitHub Desktop.
reencode all wavs in diretory to flac using ffmpeg
@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