vote up 0 vote down star

Is making an image of a DVD disk faster than copying DVD on disk?

flag

2 Answers

vote up 0 vote down check

In theory making an image of the DVD should be faster than just copying the files and directories, since the image copy is done on a sector-by-sector basis and does not waste time on following the files through the file system.

There are no numbers that I could find for reading the DVD, but some burner programs claim that writing an iso is 6-7 times faster than copying the files/directories. It seems logical that the reverse operation should also be faster for the same reason.

link|flag
vote up 2 vote down

Yes, making an image on the harddrive will be faster. The bottleneck in the above situation is DVD write/read speed. Writing to the harddrive is significantly faster than writing to physical media like DVD's.

So, you have the two scenarios:

1) Read from DVD and write to HDD.

If your drive is a standard 16X DVD-RW drive, then this should take about (4.7GB / 22MB/sec) = 3.7 minutes. We can consider the HDD write speed to be negligable because it will be done at the same time as the reading of the DVD and can easily keep up.

2) Read from DVD, store temporarily on hard drive and finally write to DVD.
(if you have 2 DVD drives than some of this can be done simultaneously while simply using a buffer in memory)

Similarly, in this case you have to do the same thing as above and write back to the disc. If you write speed is also 16x then you are looking at a total of 7.4 minutes.

In the first case you only have to read from the DVD once where as in the second, you'll have to both read from the DVD, write to the hdd and finally write to a DVD which takes more time.

link|flag
Is there any performance comparisons available? I'm just curious to know how much faster. :) – raja Nov 22 at 20:28
Nice answer Teradon. Thanks :) – raja Nov 23 at 3:33

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.