How to convert WAV files to FLAC

posted in: Linux, Tutorials | 0

Recently I needed to upload all my music library to Google Music, and got some errors (WAV format is not supported).
So I needed a command to batch convert all WAV files into FLAC

find . -name "*.WAV" -exec flac --best '{}' \;
Comments are closed.