public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] CLI DVD copy?
@ 2011-11-30 23:53 Mark Knecht
  2011-12-01  0:38 ` Paul Hartman
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Mark Knecht @ 2011-11-30 23:53 UTC (permalink / raw
  To: Gentoo User

I've got 1 DVD that for some reason fails to rip using Handbrake. I
then tried it in dvd::rip and it said it couldn't read the table of
contents. However after all of that the DVD plays fine in xine as well
as on my DVD player so I doubt there is anything truly wrong with the
DVD itself.

I was considering making a copy of this DVD to keep for bug testing in
the future. I'm wondering how to make a copy of a DVD movie at the
command line? All the things I'm finding in Google point to dvd::rip
or other GUI apps. I tried a simple dd copy, ala

dd if=/dev/dvd of=Movie.iso

but that fails also.

Thanks,
Mark



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] CLI DVD copy?
  2011-11-30 23:53 [gentoo-user] CLI DVD copy? Mark Knecht
@ 2011-12-01  0:38 ` Paul Hartman
  2011-12-01  0:47 ` Frank Steinmetzger
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Paul Hartman @ 2011-12-01  0:38 UTC (permalink / raw
  To: gentoo-user

On Wed, Nov 30, 2011 at 5:53 PM, Mark Knecht <markknecht@gmail.com> wrote:
> I've got 1 DVD that for some reason fails to rip using Handbrake. I
> then tried it in dvd::rip and it said it couldn't read the table of
> contents. However after all of that the DVD plays fine in xine as well
> as on my DVD player so I doubt there is anything truly wrong with the
> DVD itself.
>
> I was considering making a copy of this DVD to keep for bug testing in
> the future. I'm wondering how to make a copy of a DVD movie at the
> command line? All the things I'm finding in Google point to dvd::rip
> or other GUI apps. I tried a simple dd copy, ala
>
> dd if=/dev/dvd of=Movie.iso
>
> but that fails also.

dvdunauthor /dev/dvd
(from media-video/dvdauthor)

or

vobcopy -m /dev/dvd
(from media-video/vobcopy)

one of those should do the trick



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] CLI DVD copy?
  2011-11-30 23:53 [gentoo-user] CLI DVD copy? Mark Knecht
  2011-12-01  0:38 ` Paul Hartman
@ 2011-12-01  0:47 ` Frank Steinmetzger
  2011-12-01  2:20 ` [gentoo-user] " Grant Edwards
  2011-12-01  8:49 ` [gentoo-user] " Neil Bothwick
  3 siblings, 0 replies; 8+ messages in thread
From: Frank Steinmetzger @ 2011-12-01  0:47 UTC (permalink / raw
  To: gentoo-user

On Wed, Nov 30, 2011 at 03:53:10PM -0800, Mark Knecht wrote:

> I was considering making a copy of this DVD to keep for bug testing in
> the future. I'm wondering how to make a copy of a DVD movie at the
> command line? All the things I'm finding in Google point to dvd::rip
> or other GUI apps. I tried a simple dd copy, ala
> 
> dd if=/dev/dvd of=Movie.iso

vobcopy comes to mind. And if that fails also, you could try ddrescue and then
perhaps vobcopy on the created copy.
-- 
Gruß | Greetings | Qapla'
I forbid any use of my email addresses with Facebook services.

I’m not bothered by dreaming in English.
What pisses me off are the subtitles.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-user] Re: CLI DVD copy?
  2011-11-30 23:53 [gentoo-user] CLI DVD copy? Mark Knecht
  2011-12-01  0:38 ` Paul Hartman
  2011-12-01  0:47 ` Frank Steinmetzger
@ 2011-12-01  2:20 ` Grant Edwards
  2011-12-01  4:02   ` Mark Knecht
  2011-12-01  8:49 ` [gentoo-user] " Neil Bothwick
  3 siblings, 1 reply; 8+ messages in thread
From: Grant Edwards @ 2011-12-01  2:20 UTC (permalink / raw
  To: gentoo-user

On 2011-11-30, Mark Knecht <markknecht@gmail.com> wrote:

> I was considering making a copy of this DVD to keep for bug testing
> in the future. I'm wondering how to make a copy of a DVD movie at the
> command line? All the things I'm finding in Google point to dvd::rip
> or other GUI apps. I tried a simple dd copy, ala
>
> dd if=/dev/dvd of=Movie.iso
>
> but that fails also.

That will only work with unencrypted DVDs.

I use dvdbackup, and it hasn't failed me yet.

-- 
Grant






^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] Re: CLI DVD copy?
  2011-12-01  2:20 ` [gentoo-user] " Grant Edwards
@ 2011-12-01  4:02   ` Mark Knecht
  0 siblings, 0 replies; 8+ messages in thread
From: Mark Knecht @ 2011-12-01  4:02 UTC (permalink / raw
  To: gentoo-user

On Wed, Nov 30, 2011 at 6:20 PM, Grant Edwards
<grant.b.edwards@gmail.com> wrote:
> On 2011-11-30, Mark Knecht <markknecht@gmail.com> wrote:
>
>> I was considering making a copy of this DVD to keep for bug testing
>> in the future. I'm wondering how to make a copy of a DVD movie at the
>> command line? All the things I'm finding in Google point to dvd::rip
>> or other GUI apps. I tried a simple dd copy, ala
>>
>> dd if=/dev/dvd of=Movie.iso
>>
>> but that fails also.
>
> That will only work with unencrypted DVDs.
>
> I use dvdbackup, and it hasn't failed me yet.
>
> --
> Grant

Thanks to all three of you for your answers. Seeing them I remember
Neil suggesting vobcopy when I was first looking into ripping DVDs to
play on my Kindle.

I need to study all the suggestions. If it wasn't clear, being that
this problem with handbrake crashing occurs when it attempts to rip a
physical CD I'll also want to determine how to recreate a new physical
CD that causes the same problem so that I can evaluate fixes to
handbrake whenever they come along.

Again, thanks for your inputs.

Cheers,
Mark



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] CLI DVD copy?
  2011-11-30 23:53 [gentoo-user] CLI DVD copy? Mark Knecht
                   ` (2 preceding siblings ...)
  2011-12-01  2:20 ` [gentoo-user] " Grant Edwards
@ 2011-12-01  8:49 ` Neil Bothwick
  2011-12-01  9:00   ` Raffaele BELARDI
  3 siblings, 1 reply; 8+ messages in thread
From: Neil Bothwick @ 2011-12-01  8:49 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 414 bytes --]

On Wed, 30 Nov 2011 15:53:10 -0800, Mark Knecht wrote:

> I was considering making a copy of this DVD to keep for bug testing in
> the future. I'm wondering how to make a copy of a DVD movie at the
> command line?

If you only want the main title and not all the padding (sorry "extras")

mplayer -streamdump dvd://1


-- 
Neil Bothwick

We never really grow up; we only learn how to act in public.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] CLI DVD copy?
  2011-12-01  8:49 ` [gentoo-user] " Neil Bothwick
@ 2011-12-01  9:00   ` Raffaele BELARDI
  2011-12-01 10:25     ` Neil Bothwick
  0 siblings, 1 reply; 8+ messages in thread
From: Raffaele BELARDI @ 2011-12-01  9:00 UTC (permalink / raw
  To: gentoo-user@lists.gentoo.org

On 12/01/2011 09:49 AM, Neil Bothwick wrote:
> On Wed, 30 Nov 2011 15:53:10 -0800, Mark Knecht wrote:
> 
> If you only want the main title and not all the padding (sorry
> "extras")
> 
> mplayer -streamdump dvd://1
> 

It doesn't work for copy protected discs. Also, here it would be:

$ mplayer -dumpstream -dumpfile title.vob dvd://1

there's no -streamdump option on my mplayer (1.0_rc4_p20110322-r1)

raf


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] CLI DVD copy?
  2011-12-01  9:00   ` Raffaele BELARDI
@ 2011-12-01 10:25     ` Neil Bothwick
  0 siblings, 0 replies; 8+ messages in thread
From: Neil Bothwick @ 2011-12-01 10:25 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 535 bytes --]

On Thu, 1 Dec 2011 10:00:51 +0100, Raffaele BELARDI wrote:

> > mplayer -streamdump dvd://1
> >   
> 
> It doesn't work for copy protected discs. Also, here it would be:

If mplayer can play the discs, it should work.
> 
> $ mplayer -dumpstream -dumpfile title.vob dvd://1
> 
> there's no -streamdump option on my mplayer (1.0_rc4_p20110322-r1)

My bad, I was working from memory, which is suffering from bit rot (as it
the rest of me).


-- 
Neil Bothwick

Forget the Joneses...I can't keep up with The Simpsons.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-12-01 10:27 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-30 23:53 [gentoo-user] CLI DVD copy? Mark Knecht
2011-12-01  0:38 ` Paul Hartman
2011-12-01  0:47 ` Frank Steinmetzger
2011-12-01  2:20 ` [gentoo-user] " Grant Edwards
2011-12-01  4:02   ` Mark Knecht
2011-12-01  8:49 ` [gentoo-user] " Neil Bothwick
2011-12-01  9:00   ` Raffaele BELARDI
2011-12-01 10:25     ` Neil Bothwick

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox