Created
January 12, 2019 17:30
-
-
Save djensenius/8de35b5a5b7cf8b43ce398277eee2f51 to your computer and use it in GitHub Desktop.
Fish function to convert all FLAC files in a directory to ALAC (requires ffmpeg). ππ
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
function flac2alac | |
for f in *.flac | |
ffmpeg -i "$f" -map 0:0 -c:a:0 alac (basename $f .flac).m4a | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment