Skip to content

Instantly share code, notes, and snippets.

@PMK
Last active May 19, 2018 14:07
Show Gist options
  • Save PMK/efac0ae89e15c9b4c4a4bb07c81c0211 to your computer and use it in GitHub Desktop.
Save PMK/efac0ae89e15c9b4c4a4bb07c81c0211 to your computer and use it in GitHub Desktop.
Convert mp4 to mp3 with faad and lame
#!/bin/bash
function convertMp4ToMp3 { faad -q -w -f 2 "$1" | lame --quiet -r -h -b 320 - "${1%.mp4}.mp3"; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment