Skip to content

Instantly share code, notes, and snippets.

@Eddy-Barraud
Created December 30, 2018 12:55
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 Eddy-Barraud/7614db021465ec261fb3a06ae34cd7b3 to your computer and use it in GitHub Desktop.
Save Eddy-Barraud/7614db021465ec261fb3a06ae34cd7b3 to your computer and use it in GitHub Desktop.
convert each m4a inside a folder to mp3
find . -type f -name '*.m4a' -exec bash -c 'avconv -i "$0" "${0/%m4a/mp3}"' '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment