Skip to content

Instantly share code, notes, and snippets.

@enblanco
Last active December 25, 2015 08:29
Show Gist options
  • Save enblanco/6946724 to your computer and use it in GitHub Desktop.
Save enblanco/6946724 to your computer and use it in GitHub Desktop.
Convert mp4 and flv video to mp3 with VLC
for file in /path/to/directory/*.flv; do /Applications/VLC.app/Contents/MacOS/VLC -I dummy "$file" --sout="#transcode{acodec=mp3,vcodec=dummy}:standard{access=file,mux=raw,dst=\"$(echo "$file" | sed 's/\.[^\.]*$/.mp3/')\"}" vlc://quit; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment