Skip to content

Instantly share code, notes, and snippets.

@ivansabik
Last active August 29, 2015 14:24
Show Gist options
  • Save ivansabik/e781ee92f5aa2806c2a5 to your computer and use it in GitHub Desktop.
Save ivansabik/e781ee92f5aa2806c2a5 to your computer and use it in GitHub Desktop.
Iconv convert all mp4 in a folder to mp3
#!/bin/sh
for i in *.m4a; do avconv -i "$i" "${i/.m4a/.mp3}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment