Created
February 21, 2024 00:28
-
-
Save luckylittle/961e0b302808c0412de8505e38913d14 to your computer and use it in GitHub Desktop.
WAV to FLAC in all subdirectories
This file contains 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
#!/bin/zsh | |
find . -type f -iname "*.wav" -execdir sh -c 'flac --compression-level-8 --verify "{}"' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment