Stroller schrieb: > > On 2 Oct 2008, at 11:22, KH wrote: >> ... >> I am trying to capy a DVD. Somewhere it does not work as I want it. What >> I did until now: >> >> #mplayer dvd:// >> #dd if=/dev/cdrom of=~/folder/moviedvd.iso >> #mplayer -dvd-device ~/folder/moviedvd.iso dvd:// > > I think that mplayer may be running DeCSS on the iso, but you're > writing a scrambled image to the disk. I'm really sure that you can't > copy a region-locked disk using `dd` as you describe. > > Can you try running something like (from my Bash history): > $ vobcopy -m > $ mkisofs -dvd-video -o fargo.iso FARGO_16X9 > > Stroller. > > Thanks for this idea. What I did was the following:
as root: # mount -t iso9660 -o loop,user /home/me/folderone/themovie.iso /home/me/scratch/mountpunkt/ # vobcopy -m -i ~/scratch/mountpunkt/ # mkisofs -dvd-video -o themovie_new.iso THEMOVIE/ # cdrecord -dao -v -gracetime=3 -dev=/dev/cdrom1 scratch/themovie_new.iso This seems to work. Perfect!

