Hello.
I started having problems with my DVD-R RIDATA G04. I was thinking my encoded movies using HC,QUENC etc were being someway incompatible with some standalone players around there.
I decided so, to check the option "verify written data" on nero. And then, I found that many read errors were occurring at the end of the disk! Nevertheless I got really surprised when I found read error on 12 continuous media
. In other words: I got a "bad 50 DVD-R pack". Fortunately I have another 50 DVD-R pack of ridata G04 that is burning pretty fine.
Anyway, I read somewhere (
anyone to confirm this ) that the nero "verify written data" is NOT good at all
Or does NOT have accuracy.
I performed a search and found a nice tool: FSUM (freeware)
http://www.slavasoft.com/fsum/
It is a comand-line tool that generates many file integrity verification methods. Including the SHA-512
(If I Recall Correctly, SHA-XXX is used by bittorrent to verify the file integrity). You can use it this way (assuming your DVD-Drive is E:\ and the data that were burnt is on D:\KDVD\):
1- You choose one (or many
) checksum algorithm(s): MD2, MD4, MD5, SHA-1, SHA-2( 256, 384, 512), RIPEMD-160, PANAMA, TIGER, ADLER32, CRC32.
Lets say MD5 and SHA-512:
Code:
D:\KDVD\fsum -sha512 -md5 *.* >checksum.txt
the
>checksum.txt writes the results to the txt file "checksum.txt"
2- You verify the burnt data against the HD data:
Code:
E:\fsum -c D:\KDVD\checksum.txt
and await it finishes (be patient
)
3- if you only want to display the errors (if they occur) use the -jf option:
Code:
E:\fsum -c -jf D:\KDVD\checksum.txt
that is it
Probably it will take time, but is highly recommended to do so
Nevertheless I found another very nice tool: CDCHECK
http://www.elpros.si/CDCheck/news.php
Basically, it does the same as fsum: generates checksums and verify the data against the original one. But it has very handy features
Give it a try