Skip to content

Instantly share code, notes, and snippets.

@viviparous
Forked from amitsnyderman/wav2flac.sh
Last active December 1, 2021 03:10
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 viviparous/ca2958d8627210049e7e61974baefbf1 to your computer and use it in GitHub Desktop.
Save viviparous/ca2958d8627210049e7e61974baefbf1 to your computer and use it in GitHub Desktop.
Convert wav to flac (16-bit / 44.1 kHz)
find . -iname "*.wav" -exec ffmpeg -i {} -af aformat=s16:44100 {}.flac \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment