Mailing List Archive


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [tlug] dvd rip - solved



Hi, here is one (simplish) solution with vlc and ffmpeg, hth:
#!/bin/bash

for i in $(seq 30)
do
# rips the movies 1-30 from title 2 on dvd # no compression at all, basicaly big files # cvlc = command (line) vlc
  cvlc /dev/dvd@example.com:$i --sout "#standard{access=file,mux=ps,dst=$i.mpeg}" vlc://quit
# compress riped movies, requires libx264 # if you want higher quality, set "crf" to _smaller_ number
  ffmpeg -i $i.mpeg -acodec libfaac -ab 128k -ac 2 -vcodec libx264 -preset slow -crf 22 -threads 0 $i.mp4
done
exit 0



Home | Main Index | Thread Index

Home Page Mailing List Linux and Japan TLUG Members Links