Skip to content

Instantly share code, notes, and snippets.

@sergeioff
Created September 20, 2018 17:51
Show Gist options
  • Save sergeioff/0727e8385c162975ed4d24ab36e7c2aa to your computer and use it in GitHub Desktop.
Save sergeioff/0727e8385c162975ed4d24ab36e7c2aa to your computer and use it in GitHub Desktop.
Rip DVD to mp4 supported by iMovie
for entry in "."/*
do
if [[ "$entry" =~ .VOB$ ]]; then
/Applications/VLC.app/Contents/MacOS/VLC -I dummy --sout "#transcode{vcodec=h264,acodec=aac,ab=128,channels=2,samplerate=44100}:std{access=file,mux="mp4",dst=$entry.mp4}" "$entry" vlc://quit
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment