Created
September 18, 2021 19:51
-
-
Save quindariuss/7de84732a7f2f8db201768480f13c8ef to your computer and use it in GitHub Desktop.
Convert all Flac files to Alac
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
for file in *.flac; do ffmpeg -i $file -vn -acodec alac ${file%.*}.m4a; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment