Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-13 Thread Grant
> > [EMAIL PROTECTED] ~ $ ls -l > > -rwxrwxrwx 1 grant grant 386 Oct 12 22:24 getdvd > > [EMAIL PROTECTED] ~ $ getdvd > > -bash: getdvd: command not found > > Unless the current directory is in your path, you need to invoke it > with ./getdvd. > > > I like the sound of your ~/bin setup. How can

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-13 Thread Grant
> [EMAIL PROTECTED] ~ $ ls -l > -rwxrwxrwx 1 grant grant 386 Oct 12 22:24 getdvd > [EMAIL PROTECTED] ~ $ getdvd > -bash: getdvd: command not found Unless the current directory is in your path, you need to invoke it with ./getdvd. > I like the sound of your ~/bin setup. How can I add that to my

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-13 Thread Neil Bothwick
On Fri, 13 Oct 2006 07:52:57 -0700, Grant wrote: > [EMAIL PROTECTED] ~ $ ls -l > -rwxrwxrwx 1 grant grant 386 Oct 12 22:24 getdvd > [EMAIL PROTECTED] ~ $ getdvd > -bash: getdvd: command not found Unless the current directory is in your path, you need to invoke it with ./getdvd. > I like the sou

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-13 Thread Grant
> I'm tweaking that script you wrote. Here's what I have: > > #!/bin/bash > > echo Enter DVD filename: > read FILENAME > mount /dev/cdrom > TITLE=$(vobcopy -I 2>&1 | awk '/DVD-name:/ {print $3}') > vobcopy -m || exit > mkisofs -dvd-video -V $TITLE -o $FILENAME $TITLE || exit > rm -rf $TITLE > umo

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-13 Thread go moko
--- Bo Ørsted Andresen <[EMAIL PROTECTED]> wrote: > It's quite common is bash scripts to define a > function named die: > > die() { > echo "$@" > exit 1 > } Or, with use of a specific return code: die() { RT=$1 shift echo "$@" exit $RT } and call it either with the error code of

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-13 Thread Bo Ørsted Andresen
On Friday 13 October 2006 07:55, Grant wrote: > #!/bin/bash [SNIP] > vobcopy -m || exit > mkisofs -dvd-video -V $TITLE -o $FILENAME $TITLE || exit [SNIP] > > Can you tell me what purpose the "|| exit" portions serve? It's quite common is bash scripts to define a function named die: die() { ec

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-13 Thread Neil Bothwick
On Thu, 12 Oct 2006 22:55:03 -0700, Grant wrote: > I'm tweaking that script you wrote. Here's what I have: > > #!/bin/bash > > echo Enter DVD filename: > read FILENAME > mount /dev/cdrom > TITLE=$(vobcopy -I 2>&1 | awk '/DVD-name:/ {print $3}') > vobcopy -m || exit > mkisofs -dvd-video -V $TITL

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-12 Thread Grant
> > Could it be using this? http://en.wikipedia.org/wiki/ARccOS > > Would it then make sense that vobcopy can rip a decrypted backup from > the disc but not from a disc image? Possibly, because dd would trip up on the deliberate errors. I'm tweaking that script you wrote. Here's what I have:

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-12 Thread Neil Bothwick
On Thu, 12 Oct 2006 07:26:58 -0700, Grant wrote: > > Could it be using this? http://en.wikipedia.org/wiki/ARccOS > > Would it then make sense that vobcopy can rip a decrypted backup from > the disc but not from a disc image? Possibly, because dd would trip up on the deliberate errors. -- Ne

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-12 Thread Grant
> I tried using vobcopy to decrypt my "The Life of Mammals" dd images > and, strangely, it's not working. vobcopy outputs the same error that > dvdbackup did, something about an error cracking the CSS keys, which > comes from libdvdcss. Could it be using this? http://en.wikipedia.org/wiki/ARccOS

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-12 Thread Paul Stear
On Wednesday 11 October 2006 19:12, Neil Bothwick wrote: > On Wed, 11 Oct 2006 08:24:48 -0700, Grant wrote: > > I tried using vobcopy to decrypt my "The Life of Mammals" dd images > > and, strangely, it's not working. vobcopy outputs the same error that > > dvdbackup did, something about an error

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-11 Thread Neil Bothwick
On Wed, 11 Oct 2006 08:24:48 -0700, Grant wrote: > I tried using vobcopy to decrypt my "The Life of Mammals" dd images > and, strangely, it's not working. vobcopy outputs the same error that > dvdbackup did, something about an error cracking the CSS keys, which > comes from libdvdcss. Could it b

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-11 Thread Grant
> > mount /dev/dvd > > TITLE=$(vobcopy -I 2>&1 | awk '/DVD-name:/ {print $3}') > > vobcopy -m || exit > > mkisofs -dvd-video -V ${TITLE} -o ${TITLE}.iso ${TITLE} || exit > > rm -fr ${TITLE} > > umount /dev/dvd > > Thanks for the script. I set it up to temporarily use my dd images as > the source,

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-10 Thread Neil Bothwick
On Tue, 10 Oct 2006 08:59:00 -0700, Grant wrote: > > mount /dev/dvd > > TITLE=$(vobcopy -I 2>&1 | awk '/DVD-name:/ {print $3}') > > vobcopy -m || exit > > mkisofs -dvd-video -V ${TITLE} -o ${TITLE}.iso ${TITLE} || exit > > rm -fr ${TITLE} > > umount /dev/dvd > > Thanks for the script. I set it

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-10 Thread Grant
> mount /dev/cdrom && vobcopy -m -o MOVIE_NAME && mkisofs -l -o > MOVIE_NAME.iso MOVIE_NAME && rm -rf MOVIE_NAME > > How can I set that up in a script and execute just the script? #!/bin/bash mount /dev/dvd TITLE=$(vobcopy -I 2>&1 | awk '/DVD-name:/ {print $3}') vobcopy -m || exit mkisofs -dvd-v

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-10 Thread Neil Bothwick
On Mon, 9 Oct 2006 17:08:21 -0700, Grant wrote: > mount /dev/cdrom && vobcopy -m -o MOVIE_NAME && mkisofs -l -o > MOVIE_NAME.iso MOVIE_NAME && rm -rf MOVIE_NAME > > How can I set that up in a script and execute just the script? #!/bin/bash mount /dev/dvd TITLE=$(vobcopy -I 2>&1 | awk '/DVD-name

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-10 Thread Neil Bothwick
On Mon, 9 Oct 2006 17:08:21 -0700, Grant wrote: > mount /dev/cdrom && vobcopy -m -o MOVIE_NAME && mkisofs -l -o > MOVIE_NAME.iso MOVIE_NAME && rm -rf MOVIE_NAME > > How can I set that up in a script and execute just the script? #!/bin/bash mount /dev/dvd TITLE=$(vobcopy -I 2>&1 | awk '/DVD-name

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-09 Thread Grant
> That does seem to work with the stubborn "The Life of Mammals". I > wish I didn't have to mount the DVD before running vobcopy though. vobcopy reads the VOB files directly, rather than reading /dev/dvd as a video source. > I > suppose a mkisofs command after vobcopy would make for a pretty go

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-09 Thread Neil Bothwick
On Mon, 9 Oct 2006 09:42:21 -0700, Grant wrote: > That does seem to work with the stubborn "The Life of Mammals". I > wish I didn't have to mount the DVD before running vobcopy though. vobcopy reads the VOB files directly, rather than reading /dev/dvd as a video source. > I > suppose a mkisofs

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-09 Thread Grant
> Would vobcopy -m decrypt the DVD so that it can be played back without > a need to crack or use stored CSS keys? Yes. That does seem to work with the stubborn "The Life of Mammals". I wish I didn't have to mount the DVD before running vobcopy though. I suppose a mkisofs command after vobcop

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-09 Thread Neil Bothwick
On Mon, 9 Oct 2006 07:55:10 -0700, Grant wrote: > Would vobcopy -m decrypt the DVD so that it can be played back without > a need to crack or use stored CSS keys? Yes. -- Neil Bothwick IBM: Inferior But Marketable. signature.asc Description: PGP signature

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-09 Thread Grant
> and dd means bad portability. What do you mean by this? dd simply mirrors the UDF filesystem from the disc in a file? According to someone else's post, the CSS keys would need to be cracked again if the backup was moved to a different computer. That's all I meant. If you want to extract th

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-09 Thread Neil Bothwick
On Sun, 8 Oct 2006 20:56:45 +1300, Nick Rout wrote: > > You're right. I read this information some years ago in a normally > > reliable source, and saw no reason to doubt it as it made sense. bit > > I've just tried a dd copy and it worked. It failed on the first > > attempt, but after running lsd

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-09 Thread Neil Bothwick
On Sun, 8 Oct 2006 10:59:19 -0700, Grant wrote: > and dd means bad portability. What do you mean by this? dd simply mirrors the UDF filesystem from the disc in a file? If you want to extract the files from the filesystem, use vobcopy. -- Neil Bothwick The box said 'needs Win95 or better' so

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-08 Thread Grant
>dvdbackup doesn't work on "The Life of Mammals" (and surely others) >and dd means bad portability. Are there any other options for a full >backup? perhaps there is some newfangled encryption on it. What version of libdvdcss do you have? Perhaps upgrading to a later version? I'm using ver

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-08 Thread Nick Rout
On 10/8/2006, "Grant" <[EMAIL PROTECTED]> wrote: > >dvdbackup doesn't work on "The Life of Mammals" (and surely others) >and dd means bad portability. Are there any other options for a full >backup? perhaps there is some newfangled encryption on it. What version of libdvdcss do you have?

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-08 Thread Grant
> > > That won't work on CSS scrambled discs. You'll copy the scrambled data > > > but not the key. > > > > That's not true. The CSS key is in the standard filesystem data, not > > in some subtrack data. > > You're right. I read this information some years ago in a normally > reliable source, and

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-08 Thread Nick Rout
On Sat, 7 Oct 2006 17:56:36 +0100 Neil Bothwick <[EMAIL PROTECTED]> wrote: > On Fri, 6 Oct 2006 17:36:10 -0500, Boyd Stephen Smith Jr. wrote: > > > > That won't work on CSS scrambled discs. You'll copy the scrambled data > > > but not the key. > > > > That's not true. The CSS key is in the st

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-07 Thread Uwe Thiem
On 07 October 2006 18:56, Neil Bothwick wrote: > On Fri, 6 Oct 2006 17:36:10 -0500, Boyd Stephen Smith Jr. wrote: > > > That won't work on CSS scrambled discs. You'll copy the scrambled data > > > but not the key. > > > > That's not true. The CSS key is in the standard filesystem data, not > > in

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-07 Thread Nick Rout
On Sat, 7 Oct 2006 13:43:50 -0700 Grant <[EMAIL PROTECTED]> wrote: > > yes. ease of transfer, keping everyting togther. still playable with xine > > dvd://path/to.iso > > > > why are you naming it image.dvd instead of image.iso? > > dd doesn't actually create an ISO filesystem does it? > > - Gra

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-07 Thread Grant
> > > I think I'll stick with: > > > > > > dd if=/dev/dvd of=image.dvd > > > > That won't work on CSS scrambled discs. You'll copy the scrambled data > > but not the key. Instead, use vobcopy followed by growisofs. > > What about this (it's what I've been doing): > > lsdvd && dd if=/dev/dvd of=im

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-07 Thread Boyd Stephen Smith Jr.
On Saturday 07 October 2006 03:52, Nick Rout <[EMAIL PROTECTED]> wrote about 'Re: [gentoo-user] {OT} dvdrip permissions error, alternative?': > On Saturday 07 October 2006 06:50, Grant wrote: > > > > I think I'll stick with: > > > > > > >

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-07 Thread Neil Bothwick
On Fri, 6 Oct 2006 17:36:10 -0500, Boyd Stephen Smith Jr. wrote: > > That won't work on CSS scrambled discs. You'll copy the scrambled data > > but not the key. > > That's not true. The CSS key is in the standard filesystem data, not > in some subtrack data. You're right. I read this informat

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-07 Thread Nick Rout
On Saturday 07 October 2006 06:50, Grant wrote: > > > I think I'll stick with: > > > > > > dd if=/dev/dvd of=image.dvd > > > > That won't work on CSS scrambled discs. You'll copy the scrambled data > > but not the key. Instead, use vobcopy followed by growisofs. > > What about this (it's what I've

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-06 Thread Boyd Stephen Smith Jr.
On Friday 06 October 2006 20:54, Grant <[EMAIL PROTECTED]> wrote about 'Re: [gentoo-user] {OT} dvdrip permissions error, alternative?': > > > dd if=/dev/dvd of=image.dvd > > This is it's a standard store-bought DVD, this will end up copying the > > encry

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-06 Thread Grant
> dd if=/dev/dvd of=image.dvd This is it's a standard store-bought DVD, this will end up copying the encrypted (CSS) data to your HD, which will add CPU overhead at play time. dvdbackup (in portage) does roughly the same thing, but decrypts once, at rip time. It does no transcoding so everythin

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-06 Thread Boyd Stephen Smith Jr.
On Friday 06 October 2006 12:27, Neil Bothwick <[EMAIL PROTECTED]> wrote about 'Re: [gentoo-user] {OT} dvdrip permissions error, alternative?': > On Fri, 6 Oct 2006 09:59:51 -0700, Grant wrote: > > dd if=/dev/dvd of=image.dvd > > That won't work on CSS scramb

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-06 Thread Boyd Stephen Smith Jr.
On Friday 06 October 2006 11:59, Grant <[EMAIL PROTECTED]> wrote about 'Re: [gentoo-user] {OT} dvdrip permissions error, alternative?': > dd if=/dev/dvd of=image.dvd This is it's a standard store-bought DVD, this will end up copying the encrypted (CSS) data to you

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-06 Thread Grant
> > That won't work on CSS scrambled discs. You'll copy the scrambled data > > but not the key. Instead, use vobcopy followed by growisofs. > > What about this (it's what I've been doing): > > lsdvd && dd if=/dev/dvd of=image.dvd Does it work with scrambled DVDs? The CSS key is supposed to be sto

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-06 Thread Neil Bothwick
On Fri, 6 Oct 2006 10:50:27 -0700, Grant wrote: > > That won't work on CSS scrambled discs. You'll copy the scrambled data > > but not the key. Instead, use vobcopy followed by growisofs. > > What about this (it's what I've been doing): > > lsdvd && dd if=/dev/dvd of=image.dvd Does it work wi

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-06 Thread Grant
> I think I'll stick with: > > dd if=/dev/dvd of=image.dvd That won't work on CSS scrambled discs. You'll copy the scrambled data but not the key. Instead, use vobcopy followed by growisofs. What about this (it's what I've been doing): lsdvd && dd if=/dev/dvd of=image.dvd Is there any advant

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-06 Thread Neil Bothwick
On Fri, 6 Oct 2006 09:59:51 -0700, Grant wrote: > I think I'll stick with: > > dd if=/dev/dvd of=image.dvd That won't work on CSS scrambled discs. You'll copy the scrambled data but not the key. Instead, use vobcopy followed by growisofs. signature.asc Description: PGP signature

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-06 Thread Grant
What's the error? I've run dvdrip for a long time and don't get any errors. Embarassing, but I needed to change the CHANGE_ME paths to eliminate the errors. > I'm trying to make backups of my DVDs that are smaller than the full > 8GB but don't lose any noticeable audio or video quality. I'd be

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-05 Thread Mike Williams
On Thursday 05 October 2006 17:57, Grant wrote: > When I click on "RIP Title" in dvdrip, I get a permission denied error > regarding Project.pm.  All of the other options in the other tabs are > grayed out and unmodifiable.  If I try to run the program as root, it > says it cannot open the display.

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-05 Thread Meino Christian Cramer
From: Grant <[EMAIL PROTECTED]> Subject: [gentoo-user] {OT} dvdrip permissions error, alternative? Date: Thu, 5 Oct 2006 09:57:03 -0700 > When I click on "RIP Title" in dvdrip, I get a permission denied error > regarding Project.pm. All of the other options in the other tab

Re: [gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-05 Thread Hemmann, Volker Armin
On Thursday 05 October 2006 18:57, Grant wrote: > When I click on "RIP Title" in dvdrip, I get a permission denied error > regarding Project.pm. All of the other options in the other tabs are > grayed out and unmodifiable. If I try to run the program as root, it > says it cannot open the display.

[gentoo-user] {OT} dvdrip permissions error, alternative?

2006-10-05 Thread Grant
When I click on "RIP Title" in dvdrip, I get a permission denied error regarding Project.pm. All of the other options in the other tabs are grayed out and unmodifiable. If I try to run the program as root, it says it cannot open the display. Does anyone know what's wrong here? I've tried amd64