Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Hi - I thought about posting this in the programming section, but as I'm not really a programmer (I rarely write scripts) and this relates to dvds, I thought I'd put it here.
I've been playing around with Avidemux which is useful if you want to convert a file in *.vob format to an *.avi ... I probably spent too long on this, but inspired by the (excellent) Avidemux documentation I wrote a script to create a single vob from a dvd.
It's not much actually, but feel free to copy, amend, etc ... You'll need an up-to-date version of Mplayer (without it the script is useless!) Also, be aware that this will create a very large file indeed, which can eat up a lot of disk space. Please monitor how much room you have on your hdd.
Code:
#!/bin/bash
clear #Clear the screen.
#Variables to define rip options
X="mplayer dvd://1 -dumpstream -dumpfile rippeddvd.vob"
Y="mplayer dvd://2 -dumpstream -dumpfile rippeddvd.vob"
Z="mplayer dvd://3 -dumpstream -dumpfile rippeddvd.vob"
#Get user input
echo Start ripping from chapter 1, 2 or 3?:
read number
#Show script is working.
feedback="Working ..."
echo $feedback
#Conditional stuff to handle user input and errors.
if [ "$number" = "1" ]; then $X
elif [ "$number" = "2" ]; then $Y
elif [ "$number" = "3" ]; then $Z
else echo Sorry, but $number is out of range. Exiting.
exit 1
echo
fi
#Show ripped vob file.
echo
echo Your ripped file is:
ls -al *.vob
exit
__________________ I am always doing that which I can not do, in order that I may learn how to do it. - Pablo Picasso
A Newbie's Getting Started Guide to Linux
Learn the basics of the Linux operating systems. Get to know what it is all about, and familiarize yourself with the practical side. Basically, if you're a complete Linux newbie and looking for a quick and easy guide to get you started this is it. subscribe
Open Source Security Myths Dispelled Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization subscribe
InformationWeek InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology. subscribe