The easiest way that I’ve found to convert your WAV audio files to FLAC format so they’re compressed without losing any audio quality is to do the following:
- Make sure you have Chocolatey installed (which should be on your machine already. ? )
- Open an elevated PowerShell prompt and run the following command:
-
1choco install -y flac
-
- Now change to the directory containing your WAV files and run the following command:
-
1flac --best *.wav
-
- If you want to recursively convert WAV files in all subdirectories, run the following command:
-
1(dir -Recurse *.wav).FullName | % { flac --best $_ }
-
I found this solution here.
Rob
This post was migrated from https://blogs.msdn.microsoft.com/rob/2016/12/23/convert-wav-files-to-flac/.