Skip to content

Instantly share code, notes, and snippets.

@nibral
Created November 25, 2015 12:10
Show Gist options
  • Save nibral/361494edbdee14edbf6b to your computer and use it in GitHub Desktop.
Save nibral/361494edbdee14edbf6b to your computer and use it in GitHub Desktop.
Encode FLAC to ALAC with ffmpeg on Powershell
Get-ChildItem -Filter "*.flac" | % { ffmpeg.exe -i "$_" -acodec alac "$($_.BaseName).m4a" }
@K-BeBO
Copy link

K-BeBO commented Feb 26, 2021

thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment