Created
January 5, 2012 21:16
-
-
Save mrpollo/1567341 to your computer and use it in GitHub Desktop.
just a tiny script/utility to convert all the flac files in a folder to Apple Lossless codec 'alac'
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
| #!/bin/bash | |
| for f in *.flac; do ffmpeg -i "$f" -acodec alac "${f%.flac}.m4a"; done |
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
| #!/bin/bash | |
| for f in *.wav; do ffmpeg -i "$f" "${f%.wav}.mp3"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks