Gentoo Archives: gentoo-user

From: Neil Bothwick <neil@××××××××××.uk>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] {OT} dvdrip permissions error, alternative?
Date: Tue, 10 Oct 2006 08:33:35
Message-Id: 20061010092847.35e25270@hactar.digimed.co.uk
In Reply to: Re: [gentoo-user] {OT} dvdrip permissions error, alternative? by Grant
1 On Mon, 9 Oct 2006 17:08:21 -0700, Grant wrote:
2
3 > mount /dev/cdrom && vobcopy -m -o MOVIE_NAME && mkisofs -l -o
4 > MOVIE_NAME.iso MOVIE_NAME && rm -rf MOVIE_NAME
5 >
6 > How can I set that up in a script and execute just the script?
7
8 #!/bin/bash
9
10 mount /dev/dvd
11 TITLE=$(vobcopy -I 2>&1 | awk '/DVD-name:/ {print $3}')
12 vobcopy -m || exit
13 mkisofs -dvd-video -V ${TITLE} -o ${TITLE}.iso ${TITLE} || exit
14 rm -fr ${TITLE}
15 umount /dev/dvd
16
17 > This is also better for performance because the system won't have to
18 > decrypt while it's playing right?
19
20 That seems reasonable, although I've no idea how much effort is needed
21 to decrypt a DVD once the key is known.
22
23
24 --
25 Neil Bothwick
26
27 "Do you reply to our surveys.?"
28 [X]Never [ ]Always [ ]Sometimes

Attachments

File name MIME type
signature.asc application/pgp-signature

Replies

Subject Author
Re: [gentoo-user] {OT} dvdrip permissions error, alternative? Grant <emailgrant@×××××.com>