Created
January 26, 2013 07:12
-
-
Save rkumar/4640692 to your computer and use it in GitHub Desktop.
convert FLAC files to m4a so you can play in itunes
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
#!/usr/bin/env zsh | |
for file ( *.flac ) { | |
print $file | |
newf=${file/flac/m4a} | |
ffmpeg -i $file $newf | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment