Skip to content

Instantly share code, notes, and snippets.

@amitsnyderman
Last active December 1, 2021 03:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save amitsnyderman/1f15bd553010e4cf1c2619329c6ed0bf to your computer and use it in GitHub Desktop.
Save amitsnyderman/1f15bd553010e4cf1c2619329c6ed0bf to your computer and use it in GitHub Desktop.
Convert wav to flac (16-bit / 44.1 kHz)
find . -name "*.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