Skip to content

Instantly share code, notes, and snippets.

@ryanbillingsley
Last active November 14, 2016 15:50
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ryanbillingsley/e0fc2c77d32d1db05f55 to your computer and use it in GitHub Desktop.
Save ryanbillingsley/e0fc2c77d32d1db05f55 to your computer and use it in GitHub Desktop.
Jason Snell's Automator service that converts to AIFF via ffmpeg.
for i in "$@" ; do /Users/jsnell/ffmpeg -i "$i" -map 0:0 -acodec pcm_s161e -ac 1 -out_sample_rate 44100 "${i%.*}.wav" ;
done
on run {input, parameters}
beep
return input
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment