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 '{}' \;
Assistência Técnica Informática 24/7
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 '{}' \;