Skip to content

Instantly share code, notes, and snippets.

@phoenixthrush
Forked from nibral/flac_to_alac.ps1
Last active November 9, 2022 11:16
Show Gist options
  • Save phoenixthrush/e9e07711d4ec1c8c2d3ecc0b1c0a2a89 to your computer and use it in GitHub Desktop.
Save phoenixthrush/e9e07711d4ec1c8c2d3ecc0b1c0a2a89 to your computer and use it in GitHub Desktop.
Encode FLAC to ALAC with ffmpeg on Powershell
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