-
-
Save phoenixthrush/e9e07711d4ec1c8c2d3ecc0b1c0a2a89 to your computer and use it in GitHub Desktop.
Convert FLAC to ALAC with PowerShell and FFmpeg #PowerShell #FFmpeg #AudioConversion
This file contains hidden or 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
| Get-ChildItem -Filter "*.flac" | % { ffmpeg -i "$_" -c:a alac -map 0:0 -y "$($_.BaseName).m4a" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment