[Bug 483792] Re: Brasero Copy to ISO image does not work for some DVDs

Michael Rumpf michael at rumpfonline.de
Mon Nov 16 21:13:49 GMT 2009


I was able to convert the Antz DVD into a ISO image using the following
script:

#!/bin/bash

DEV=$1
ISO=$2

if [ -z "$DEV" ]
then
  echo "Usage: $0 <DEVICE> <IMAGENAME>"
  exit 1
fi
if [ -z "$ISO" ]
then
  echo "Usage: $0 <DEVICE> <IMAGENAME>"
  exit 1
fi

BS=$(isoinfo -d -i $DEV | grep "block size" | awk '{print $5}')
VS=$(isoinfo -d -i $DEV | grep "Volume size" | awk '{print $4}')

dd if=$DEV of="$ISO" bs=$BS count=$VS

-- 
Brasero Copy to ISO image does not work for some DVDs
https://bugs.launchpad.net/bugs/483792
You received this bug notification because you are a member of Ubuntu
Burning Team, which is subscribed to brasero in ubuntu.



More information about the Ubuntu-burning mailing list