Skip to content

Instantly share code, notes, and snippets.

@emgeebee
Created September 27, 2018 05:53
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 emgeebee/82239704167d20221962a723078bc625 to your computer and use it in GitHub Desktop.
Save emgeebee/82239704167d20221962a723078bc625 to your computer and use it in GitHub Desktop.
DVD -> mp3
for filename in *.m4v; do /Applications/ffmpeg -i "${filename}" -vn -f mp3 "test/${filename%.*}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment