Skip to content

Instantly share code, notes, and snippets.

@kerembaydogan
Created July 7, 2020 14:06
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 kerembaydogan/dfb031f95047f6c0403a3a47c3fb068e to your computer and use it in GitHub Desktop.
Save kerembaydogan/dfb031f95047f6c0403a3a47c3fb068e to your computer and use it in GitHub Desktop.
// CONVERT ALL M4A FILES TO WAV USING FFMPEG
for f in *.m4a; do ffmpeg -i "$f" "${f/%m4a/wav}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment