Last active
July 22, 2021 20:55
-
-
Save superrnovae/ee4d1af894ef58506ad18852d7b8c872 to your computer and use it in GitHub Desktop.
[Powershell] Convert FLAC to ALAC using ffmpeg while preserving metadata and tags
This file contains 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 -Path . -filter *.flac | ForEach-Object -Process {[System.IO.Path]::GetFileNameWithoutExtension($_)} | ForEach-Object -Process {ffmpeg -i "$($_).flac" -acodec alac -vn "$($_).m4a"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment