Skip to content

Instantly share code, notes, and snippets.

@amitsnyderman
Last active October 31, 2024 15:47
Show Gist options
  • 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