Created
April 14, 2017 07:56
-
-
Save equivalentideas/58abc16a89fc821f5b9549dd7af20179 to your computer and use it in GitHub Desktop.
shell command to create new AIFF conversions for all MP3 files in the current directory
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
find . -name '*.mp3' | sed s/.mp3// | sed 's/.*/&.mp3 &.aiff/' | xargs -n 2 ffmpeg -i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment