Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
shell command to create new AIFF conversions for all MP3 files in the current directory
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