Skip to content

Instantly share code, notes, and snippets.

@jeffehobbs
Created June 4, 2022 20:20
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 jeffehobbs/b5a279b1621eefff77cffb88a09224fa to your computer and use it in GitHub Desktop.
Save jeffehobbs/b5a279b1621eefff77cffb88a09224fa to your computer and use it in GitHub Desktop.
FFMPEG convert all .aif files in directory to .wav
mkdir wav; for i in *.aif; do ffmpeg -i "$i" "./wav/${i%.*}.wav"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment