Skip to content

Instantly share code, notes, and snippets.

@equivalentideas
Created April 14, 2017 07:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save equivalentideas/58abc16a89fc821f5b9549dd7af20179 to your computer and use it in GitHub Desktop.
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
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