Skip to content

Instantly share code, notes, and snippets.

@thiagosf
Created April 8, 2017 13:36
Show Gist options
  • Select an option

  • Save thiagosf/3bee686218eccc2977e9f5c65b6e8849 to your computer and use it in GitHub Desktop.

Select an option

Save thiagosf/3bee686218eccc2977e9f5c65b6e8849 to your computer and use it in GitHub Desktop.
Converte arquivos mp4 para mp3
for f in *.mp4; do ffmpeg -i "$f" "output/${f%mp4}mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment