> > [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
> [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
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
> 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
--- 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
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
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
> > 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:
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
> 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
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
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
> > 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,
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
> 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
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
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
> 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
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
> 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
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
> 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
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
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
>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
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?
> > > 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
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
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
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
> > > 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
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:
> > > >
> > >
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
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
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
> 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
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
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
> > 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
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
> 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
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
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
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.
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
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.
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
47 matches
Mail list logo