-
Posts
30,514 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by LIGHTNING UK!
-
What does the buffer look like when you're reading with the current version? Is it empty or full? Does it go at 1x with all discs?
-
Post some logs please. 1x doesn't seem right, I doubt any drive would even support reading at that speed.
-
ImgBurn Drive USB... Dont tase me again?..
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
Do you need a clue? The first rule of fight club is: You DO NOT talk about fight club. -
ImgBurn Drive USB... Dont tase me again?..
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
What's the first rule of fight club? -
ImgBurn Drive USB... Dont tase me again?..
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
What's the first rule of fight club? -
ImgBurn Drive USB... Dont tase me again?..
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
Only friends and family. It's not like I go out wearing a t-shirt saying "I'm the author of ImgBurn". -
ImgBurn Drive USB... Dont tase me again?..
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
Nah, ImgBurn is a bit too big now to be a secret project... but I guess it is its own business. -
ImgBurn Drive USB... Dont tase me again?..
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
ok so I'm not a pimp. Well done for seeing through my cleverly crafted lie. I do computer stuff (ImgBurn, network admin, fixing machines for people etc) for a living, what else did you expect me to do?! -
ImgBurn Drive USB... Dont tase me again?..
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
I'm a pimp. -
ImgBurn Drive USB... Dont tase me again?..
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
In school (secondary school anyway, so 12+), you have to learn about 10+ subjects (heading towards 'GCSE' qualifications). In college, you focus on certain (maybe 2, 3 or 4) subjects you enjoy / are good at. (heading towards 'A level' qualifications) In uni, you focus on 1 thing! (heading towards getting a degree) So it's all about becoming really good at what you want to do. -
ImgBurn Drive USB... Dont tase me again?..
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
In the UK, you go to school from 5 - 16, college (if you want to) from 17 - 18 and then uni (if you want to) for another 3+ years (taking into account a 'masters' degree, doctors etc). If you're thinking in American terms, college is our uni. -
ImgBurn Drive USB... Dont tase me again?..
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
Well you can't just 'know' everything. You look stuff up, learn about it, use it and then apply that knowledge to other bits. The Windows API is enormous and new bits get added all the time as OS's improve. Communicating with drives is a whole other area, but once you get the hang of it, it's all pretty much the same thing over and over again. The MMC (or Mt Fuji) documents tell you the commands they support and what they respond with when you issue them. You just have to know how to deal with it all. I didn't really 'learn' C++ at Uni, I'd already played around enough with it in college to know roughly what I was doing. I only got into the disc related stuff in my final year - but I learnt it for me, not because I had to. -
ImgBurn Drive USB... Dont tase me again?..
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
When I say 'consider it done', it would almost always mean it has already been done. I can't say I've done something before I've even begun to look at if it's possible or how I'd go about doing it. If it's simple enough to get that info for the device from Windows, I'll implement it. If it isn't, I won't. The ? is where the 'query string' starts. So what comes after it are the parameters you're passing to the sever/web page. They're like the paramters you pass to a function in C++. So something like... Sleep(1000); // C++ could translate to... Sleep.php?Time=1000 If you know some HTML, you may know you either 'post' a form or you 'get' it. If you 'get' it, the form variables are passed in the query string (and are then visible in the browser's address bar). If you 'post' it, they aren't. It's used all over the Internet, not just for php pages. PHP, Java and C++ are all very similar. If you can read one, you can read the others. If you can write one, you can fumble your way through the others Believe me, I'm not as awesome as you seem to think I am. I refer to Google for info ALL the time - I'll certainly be using it when trying to figure out this USB speed stuff. -
ImgBurn Drive USB... Dont tase me again?..
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
2 great minds think alike. Having seen an issue in the Support forum earlier with USB v1.0 limiting the burn speed on a Blu-ray drive, I wondered if such a thing might be (easily) possible myself. It's something I'll have to look into. Oh and it's tease, not tase. Tase would be like the image I posted in the other thread... where someone shoots you with a taser gun which gives you an electric shock that basically knocks you to the floor. -
ImgBurn website update (don't tase me)
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
That's pretty much the only content that gets added to the website, so yeah, that's what I mean. -
Well, the batch file was just for making the ISO files from your IBB files. I was expecting you to just insert those into your existing queue. You can make the progarm delete the image files when it's done with them. If you want to *just* use the batch file, you can't do a single loop (as I've done) if you're going to burn images too. I guess you could make a 2nd loop though and have that burn all of the images. Or you have X number of lines calling ImgBurn.exe with the correct parameters for whatever you're trying to do. That's not very reusable though and the looping ones are. Everything you need should be in the 'ReadMe.txt' file that lives alongside ImgBurn.exe. I just gave you an example with the most basic of command lines, there are tons of options (including some for disabling prompts etc - but some are taken care of automatically anyway) in that ReadMe.
-
ImgBurn website update (don't tase me)
LIGHTNING UK! replied to Adrianvdh's topic in ImgBurn Suggestions
Don't tase you? lol I'll update that info when I next have to update the website with some real content. -
I don't really know what to say beyond "You just can't". I know that sounds lame but they're doing different things and currently they don't talk to eachother to the point where you can queue up a Build mode project file in Write mode. Write mode is burning prebuilt image files - so it's reading a sectors worth of data from a file and asking the drive to write it to a sector on the disc. It's a very simple process. Build mode has to deal with creating file systems for the files you're adding to the project and is 100 times more complex. Build mode uses Write mode's code for burning the image it creates on the fly, but Write mode can't use Build mode's code for creating the image. Yes, maybe it would be nice if Write mode could queue up IBB files but it can't do it now and it isn't going to in the near future - but this isn't the first time doing that has occurred to me. What you can do is build your IBB files and use a batch file to build the ISO files all in 1 go. You just put them all in 1 folder and pass each one (in a loop) to ImgBurn via the command line. Something like this should work... for %%i in (*.ibb) do "%ProgramFiles(x86)%\ImgBurn\ImgBurn.exe" /MODE BUILD /BUILDOUTPUTMODE IMAGEFILE /SRC "%%~fi" /DEST "C:\Image Files\%%~ni.iso" /START /CLOSE Whilst untested, that (or something like it) should loop through the IBB files in a folder and make ImgBurn build an ISO of each of them. If you've already configured the output file name within the IBB (i.e. within the GUI), you can remove the '/DEST "..."' command from the parameter list.
-
8hrs to burn burn and verify a single Blu-ray?
LIGHTNING UK! replied to Slabysz's topic in ImgBurn Support
You shouldn't have to do anything. If it's running at USB 1.0 then it probably just needs disconnecting and reconnecting. If it still drops to USB 1.0 mode, maybe the cable or port are faulty? The issue is totally external to ImgBurn. -
Various Drives - BurnerMAX Payload - MKM-003-00
LIGHTNING UK! replied to LIGHTNING UK!'s topic in Drives
Lite-On iHAS524 A BL2U Drive ID: ATAPI iHAS524 A BL2U BurnerMAX Payload Tool v0.15: Scanning: G:\ [ATAPI iHAS524 A BL2U] L0: 0x872F L0: 0x89C3 L1: 0x870E L1: 0x872B L1: 0x8747 Patching: ............... BurnerMAX IS enabled ! Free Space: 8,738,897,920 bytes Media Information (Before): ATAPI iHAS524 A BL2U (ATAPI) Current Profile: DVD+R DL Disc Information: Status: Empty State of Last Session: Empty Erasable: No Free Sectors: 4,173,824 Free Space: 8,547,991,552 bytes Free Time: 927:32:74 (MM:SS:FF) Next Writable Address: 0 MID: MKM-003-00 Supported Write Speeds: 4x, 6x, 8x DVD±R DL Boundary Information: L0 Data Zone Capacity: 2,086,912 Changeable: Yes Physical Format Information (ADIP - L0): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (ADIP - L1): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (Last Recorded - L0): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (Last Recorded - L1): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Performance (Write Speed): Descriptor 1... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4173823 (0x003FAFFF) -> RS: 16,620 KB/s (12x) - WS: 5,540 KB/s (4x) Descriptor 2... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4173823 (0x003FAFFF) -> RS: 16,620 KB/s (12x) - WS: 8,310 KB/s (6x) Descriptor 3... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4173823 (0x003FAFFF) -> RS: 16,620 KB/s (12x) - WS: 11,080 KB/s (8x) Media Information (After): ATAPI iHAS524 A BL2U (ATAPI) Current Profile: DVD+R DL Disc Information: Status: Empty State of Last Session: Empty Erasable: No Free Sectors: 4,267,040 Free Space: 8,738,897,920 bytes Free Time: 948:15:65 (MM:SS:FF) Next Writable Address: 0 MID: MKM-003-00 Supported Write Speeds: 4x, 6x, 8x DVD±R DL Boundary Information: L0 Data Zone Capacity: 2,133,520 Changeable: Yes Physical Format Information (ADIP - L0): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (ADIP - L1): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (Last Recorded - L0): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (Last Recorded - L1): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Performance (Write Speed): Descriptor 1... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4267039 (0x00411C1F) -> RS: 16,620 KB/s (12x) - WS: 5,540 KB/s (4x) Descriptor 2... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4267039 (0x00411C1F) -> RS: 16,620 KB/s (12x) - WS: 8,310 KB/s (6x) Descriptor 3... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4267039 (0x00411C1F) -> RS: 16,620 KB/s (12x) - WS: 11,080 KB/s (8x) Results: I 18:48:13 ImgBurn Version 2.5.7.2 Beta started! I 18:48:13 Microsoft Windows 7 Ultimate x64 Edition (6.1, Build 7601 : Service Pack 1) I 18:48:13 Total Physical Memory: 16,760,108 KB - Available: 9,591,032 KB I 18:48:13 Initialising SPTI... I 18:48:13 Searching for SCSI / ATAPI devices... I 18:48:14 -> Drive 1 - Info: ATAPI iHAS524 A BL2U (G:) (ATAPI) I 18:48:14 -> Drive 2 - Info: ATAPI iHAS624 B GL2A (M:) (ATAPI) I 18:48:14 -> Drive 3 - Info: HL-DT-ST BD-RE BH12LS38 1.01-D0 (N:) (ATAPI) I 18:48:14 -> Drive 4 - Info: Optiarc DVD RW AD-5280S 1.Z8 (P:) (ATAPI) I 18:48:15 -> Drive 5 - Info: PIONEER BD-RW BDR-207M 1.30 (O:) (ATAPI) I 18:48:15 -> Drive 6 - Info: DTSOFT BDROM 1.05 (Y:) (SCSI) I 18:48:15 -> Drive 7 - Info: DVDFab Virtual Drive 1.1 (W:) (SCSI) I 18:48:15 -> Drive 8 - Info: ELBY CLONEDRIVE 1.4 (V:) (SCSI) I 18:48:15 -> Drive 9 - Info: VXDV BD-HD-DVDRAM S15 10.0 (X:) (SCSI) I 18:48:15 Found 1 DVD±RW, 2 DVD±RW/RAMs, 1 BD-ROM, 2 BD-ROM/HD DVD-ROMs, 2 BD-REs and 1 BD-RE XL! I 18:49:19 Operation Started! I 18:49:19 Source File: -==/\/[DISCOVERY IMAGE]\/\==- I 18:49:19 Source File Sectors: 4,267,040 (MODE1/2048) I 18:49:19 Source File Size: 8,738,897,920 bytes I 18:49:19 Source File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 18:49:19 Source File Volume Set Identifier: 4267040_SECTORS I 18:49:19 Source File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 18:49:19 Source File Implementation Identifier: ImgBurn v2.5.8.0 I 18:49:19 Source File File System(s): ISO9660 I 18:49:19 Destination Device: [0:4:0] ATAPI iHAS524 A BL2U (G:) (ATAPI) I 18:49:19 Destination Media Type: DVD+R DL (Disc ID: MKM-003-00) I 18:49:19 Destination Media Supported Write Speeds: 4x, 6x, 8x I 18:49:19 Destination Media Sectors: 4,267,040 I 18:49:19 Destination Media L0 Data Zone Capacity: 2,133,520 (Changeable: Yes) I 18:49:19 Write Mode: DVD I 18:49:19 Write Type: DAO I 18:49:19 Write Speed: 4x I 18:49:19 DVD+R DL Reserve Track: No I 18:49:19 Link Size: Auto I 18:49:19 Lock Volume: Yes I 18:49:19 Test Mode: No I 18:49:19 OPC: No I 18:49:19 BURN-Proof: Enabled I 18:49:19 Write Speed Successfully Set! - Effective: 5,540 KB/s (4x) I 18:49:19 Book Type Setting: DVD-ROM I 18:49:19 Advanced Settings - Force HT: No, Online HT: No, OverSpeed: No, SmartBurn: Yes I 18:49:19 CD/DVD Life Record Count: 10 - CD/DVD Record Count: 9 I 18:49:19 Optimal L0 Data Zone Capacity: 2,133,520 I 18:49:19 Optimal L0 Data Zone Method: ECC Block Boundary I 18:49:38 Set L0 Data Zone Capacity Succeeded! I 18:49:38 L0 Data Zone Capacity - Effective: 2,133,520 I 18:49:38 Filling Buffer... (80 MB) I 18:49:38 Writing LeadIn... I 18:49:40 Writing Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 18:49:40 Writing Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 18:49:40 Writing Layer 0... (LBA: 0 - 2133519) I 19:02:58 Writing Layer 1... (LBA: 2133520 - 4267039) I 19:16:21 Synchronising Cache... I 19:16:25 Closing Track... I 19:16:26 Finalising Disc... I 19:17:00 Exporting Graph Data... I 19:17:00 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS524_A_BL2U_08-JANUARY-2013_18-49_MKM-003-00_4x.ibg I 19:17:00 Export Successfully Completed! I 19:17:00 Operation Successfully Completed! - Duration: 00:27:41 I 19:17:00 Average Write Rate: 5,330 KB/s (3.8x) - Maximum Write Rate: 5,636 KB/s (4.1x) I 19:17:00 Cycling Tray before Verify... W 19:17:07 Waiting for device to become ready... I 19:17:23 Device Ready! I 19:17:23 Operation Started! I 19:17:23 Source Device: [0:4:0] ATAPI iHAS524 A BL2U (G:) (ATAPI) I 19:17:23 Source Media Type: DVD+R DL (Book Type: DVD-ROM) (Disc ID: MKM-003-00) I 19:17:23 Source Media Supported Read Speeds: 2.4x, 4x, 6x, 8x, 12x I 19:17:23 Source Media Supported Write Speeds: 4x, 6x, 8x I 19:17:23 Image File: -==/\/[DISCOVERY IMAGE]\/\==- I 19:17:23 Image File Sectors: 4,267,040 (MODE1/2048) I 19:17:23 Image File Size: 8,738,897,920 bytes I 19:17:23 Image File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 19:17:23 Image File Volume Set Identifier: 4267040_SECTORS I 19:17:23 Image File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 19:17:23 Image File Implementation Identifier: ImgBurn v2.5.8.0 I 19:17:23 Image File File System(s): ISO9660 I 19:17:23 Read Speed (Data/Audio): MAX / MAX I 19:17:24 Verifying Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 19:17:24 Verifying Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 19:17:24 Verifying Layer 0... (LBA: 0 - 2133519) I 19:23:33 Verifying Layer 1... (LBA: 2133520 - 4267039) I 19:29:42 Exporting Graph Data... I 19:29:42 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS524_A_BL2U_08-JANUARY-2013_18-49_MKM-003-00_4x.ibg I 19:29:42 Export Successfully Completed! I 19:29:42 Operation Successfully Completed! - Duration: 00:12:17 I 19:29:42 Average Verify Rate: 11,595 KB/s (8.4x) - Maximum Verify Rate: 16,885 KB/s (12.2x) Scans: Results 2: I 22:36:21 ImgBurn Version 2.5.7.2 Beta started! I 22:36:21 Microsoft Windows 7 Ultimate x64 Edition (6.1, Build 7601 : Service Pack 1) I 22:36:21 Total Physical Memory: 16,760,108 KB - Available: 9,313,896 KB I 22:36:21 Initialising SPTI... I 22:36:21 Searching for SCSI / ATAPI devices... I 22:36:21 -> Drive 1 - Info: ATAPI iHAS524 A BL2U (G:) (ATAPI) I 22:36:21 -> Drive 2 - Info: ATAPI iHAS624 B GL2A (M:) (ATAPI) I 22:36:21 -> Drive 3 - Info: HL-DT-ST BD-RE BH12LS38 1.01-D0 (N:) (ATAPI) I 22:36:22 -> Drive 4 - Info: Optiarc DVD RW AD-5280S 1.Z8 (P:) (ATAPI) I 22:36:22 -> Drive 5 - Info: PIONEER BD-RW BDR-207M 1.30 (O:) (ATAPI) I 22:36:22 -> Drive 6 - Info: DTSOFT BDROM 1.05 (Y:) (SCSI) I 22:36:22 -> Drive 7 - Info: DVDFab Virtual Drive 1.1 (W:) (SCSI) I 22:36:22 -> Drive 8 - Info: ELBY CLONEDRIVE 1.4 (V:) (SCSI) I 22:36:22 -> Drive 9 - Info: VXDV BD-HD-DVDRAM S15 10.0 (X:) (SCSI) I 22:36:22 Found 1 DVD±RW, 2 DVD±RW/RAMs, 1 BD-ROM, 2 BD-ROM/HD DVD-ROMs, 2 BD-REs and 1 BD-RE XL! I 22:36:27 Operation Started! I 22:36:27 Source File: -==/\/[DISCOVERY IMAGE]\/\==- I 22:36:27 Source File Sectors: 4,267,040 (MODE1/2048) I 22:36:27 Source File Size: 8,738,897,920 bytes I 22:36:27 Source File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 22:36:27 Source File Volume Set Identifier: 4267040_SECTORS I 22:36:27 Source File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 22:36:27 Source File Implementation Identifier: ImgBurn v2.5.8.0 I 22:36:27 Source File File System(s): ISO9660 I 22:36:27 Destination Device: [0:4:0] ATAPI iHAS524 A BL2U (G:) (ATAPI) I 22:36:27 Destination Media Type: DVD+R DL (Disc ID: MKM-003-00) I 22:36:27 Destination Media Supported Write Speeds: 4x, 6x, 8x I 22:36:27 Destination Media Sectors: 4,267,040 I 22:36:27 Destination Media L0 Data Zone Capacity: 2,133,520 (Changeable: Yes) I 22:36:27 Write Mode: DVD I 22:36:27 Write Type: DAO I 22:36:27 Write Speed: 4x I 22:36:27 DVD+R DL Reserve Track: No I 22:36:27 Link Size: Auto I 22:36:27 Lock Volume: Yes I 22:36:27 Test Mode: No I 22:36:27 OPC: No I 22:36:27 BURN-Proof: Enabled I 22:36:27 Write Speed Successfully Set! - Effective: 5,540 KB/s (4x) I 22:36:27 Book Type Setting: DVD-ROM I 22:36:27 Advanced Settings - Force HT: Yes, Online HT: No, OverSpeed: No, SmartBurn: Yes I 22:36:27 CD/DVD Life Record Count: 12 - CD/DVD Record Count: 9 I 22:36:27 Optimal L0 Data Zone Capacity: 2,133,520 I 22:36:27 Optimal L0 Data Zone Method: ECC Block Boundary I 22:36:47 Set L0 Data Zone Capacity Succeeded! I 22:36:47 L0 Data Zone Capacity - Effective: 2,133,520 I 22:36:47 Filling Buffer... (80 MB) I 22:36:47 Writing LeadIn... I 22:36:49 Writing Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 22:36:49 Writing Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 22:36:49 Writing Layer 0... (LBA: 0 - 2133519) I 22:50:06 Writing Layer 1... (LBA: 2133520 - 4267039) I 23:03:23 Synchronising Cache... I 23:03:26 Closing Track... I 23:03:27 Finalising Disc... I 23:04:01 Exporting Graph Data... I 23:04:01 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS524_A_BL2U_08-JANUARY-2013_22-36_MKM-003-00_4x.ibg I 23:04:01 Export Successfully Completed! I 23:04:01 Operation Successfully Completed! - Duration: 00:27:33 I 23:04:01 Average Write Rate: 5,357 KB/s (3.9x) - Maximum Write Rate: 5,636 KB/s (4.1x) I 23:04:01 Cycling Tray before Verify... W 23:04:08 Waiting for device to become ready... I 23:04:25 Device Ready! I 23:04:25 Operation Started! I 23:04:25 Source Device: [0:4:0] ATAPI iHAS524 A BL2U (G:) (ATAPI) I 23:04:25 Source Media Type: DVD+R DL (Book Type: DVD-ROM) (Disc ID: MKM-003-00) I 23:04:25 Source Media Supported Read Speeds: 2.4x, 4x, 6x, 8x, 12x I 23:04:25 Source Media Supported Write Speeds: 4x, 6x, 8x I 23:04:25 Image File: -==/\/[DISCOVERY IMAGE]\/\==- I 23:04:25 Image File Sectors: 4,267,040 (MODE1/2048) I 23:04:25 Image File Size: 8,738,897,920 bytes I 23:04:25 Image File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 23:04:25 Image File Volume Set Identifier: 4267040_SECTORS I 23:04:25 Image File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 23:04:25 Image File Implementation Identifier: ImgBurn v2.5.8.0 I 23:04:25 Image File File System(s): ISO9660 I 23:04:25 Read Speed (Data/Audio): MAX / MAX I 23:04:26 Verifying Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 23:04:26 Verifying Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 23:04:26 Verifying Layer 0... (LBA: 0 - 2133519) I 23:10:36 Verifying Layer 1... (LBA: 2133520 - 4267039) I 23:16:44 Exporting Graph Data... I 23:16:44 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS524_A_BL2U_08-JANUARY-2013_22-36_MKM-003-00_4x.ibg I 23:16:44 Export Successfully Completed! I 23:16:44 Operation Successfully Completed! - Duration: 00:12:17 I 23:16:44 Average Verify Rate: 11,595 KB/s (8.4x) - Maximum Verify Rate: 16,885 KB/s (12.2x) Scans 2: -
8hrs to burn burn and verify a single Blu-ray?
LIGHTNING UK! replied to Slabysz's topic in ImgBurn Support
Your drive must be running in USB 1.0 mode. That limits you to -
The Ask.com malware bundled with ImgBurn
LIGHTNING UK! replied to Rekrul2's topic in ImgBurn Support
Because that's all Microsof's standard dialog boxes allow for and they work fine for what 'Standard' input mode is designed for. If you want something a little easier for when you're adding a bunch of stuff, just switch the 'Input' mode to 'Advanced'. You're comparing apples with oranges. ImgBurn's calculate function does a dummy run on how the final 'Build' process will go. It gives you the exact size of the final image file, not just a running total of the file sizes. Again, if you want that info, just switch to 'Advanced' input mode. Your request to abort gets logged and it'll abort just as soon as it's in control again. A lot of the time, the drive is off doing its own thing and the program is just sitting there waiting for it to say it has finished. The thing with toolbars is that they have to check it's even worth offering them (compatible OS, browser etc and not already installed). That's just the way they work. You have no clue how much software does behind your back. I'm sure (I know) Ask's stuff is perfectly innocent, it's just doing what it needs to in order to function. If you end up with a file in your temp folder or registry key that hasn't been deleted then I'm sorry for that. My temp folder fills up with rubbish all the time, I don't lose any sleep over it. Welcome to the real world. Last time I checked, all the main freeware burning tools do the same sort of thing. Hell, I get offered Google / Microsoft / Ask toolbars with tons of stuff now. Believe me, it's only going to become more prevalent. It takes 1/2 a second to uncheck the box saying you want to install the toolbar. If you're going to write off software because of that, you should probably just stop using a PC. -
You're mixing up Build mode functionality with Write mode functionality... you can't do that. Rather than just making IBB files in Build mode, have it build the ISO and add that to your queue in Write mode.
-
Various Drives - BurnerMAX Payload - MKM-003-00
LIGHTNING UK! replied to LIGHTNING UK!'s topic in Drives
Lite-On iHAS324 A BLTP Drive ID: ATAPI iHAS324 A BLTP BurnerMAX Payload Tool v0.15: Scanning: G:\ [ATAPI iHAS324 A BLTP] L0: 0x872F L0: 0x89C3 L1: 0x870E L1: 0x872B L1: 0x8747 Patching: ............... BurnerMAX IS enabled ! Free Space: 8,738,897,920 bytes Media Information (Before): ATAPI iHAS324 A BLTP (ATAPI) Current Profile: DVD+R DL Disc Information: Status: Empty State of Last Session: Empty Erasable: No Free Sectors: 4,173,824 Free Space: 8,547,991,552 bytes Free Time: 927:32:74 (MM:SS:FF) Next Writable Address: 0 MID: MKM-003-00 Supported Write Speeds: 4x, 6x, 8x DVD±R DL Boundary Information: L0 Data Zone Capacity: 2,086,912 Changeable: Yes Physical Format Information (ADIP - L0): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (ADIP - L1): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (Last Recorded - L0): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (Last Recorded - L1): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Performance (Write Speed): Descriptor 1... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4173823 (0x003FAFFF) -> RS: 16,620 KB/s (12x) - WS: 5,540 KB/s (4x) Descriptor 2... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4173823 (0x003FAFFF) -> RS: 16,620 KB/s (12x) - WS: 8,310 KB/s (6x) Descriptor 3... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4173823 (0x003FAFFF) -> RS: 16,620 KB/s (12x) - WS: 11,080 KB/s (8x) Media Information (After): ATAPI iHAS324 A BLTP (ATAPI) Current Profile: DVD+R DL Disc Information: Status: Empty State of Last Session: Empty Erasable: No Free Sectors: 4,267,040 Free Space: 8,738,897,920 bytes Free Time: 948:15:65 (MM:SS:FF) Next Writable Address: 0 MID: MKM-003-00 Supported Write Speeds: 4x, 6x, 8x DVD±R DL Boundary Information: L0 Data Zone Capacity: 2,133,520 Changeable: Yes Physical Format Information (ADIP - L0): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (ADIP - L1): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (Last Recorded - L0): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (Last Recorded - L1): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Performance (Write Speed): Descriptor 1... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4267039 (0x00411C1F) -> RS: 16,620 KB/s (12x) - WS: 5,540 KB/s (4x) Descriptor 2... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4267039 (0x00411C1F) -> RS: 16,620 KB/s (12x) - WS: 8,310 KB/s (6x) Descriptor 3... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4267039 (0x00411C1F) -> RS: 16,620 KB/s (12x) - WS: 11,080 KB/s (8x) Results: I 23:35:58 ImgBurn Version 2.5.7.2 Beta started! I 23:35:58 Microsoft Windows 7 Ultimate x64 Edition (6.1, Build 7601 : Service Pack 1) I 23:35:58 Total Physical Memory: 16,760,108 KB - Available: 10,803,644 KB I 23:35:58 Initialising SPTI... I 23:35:58 Searching for SCSI / ATAPI devices... I 23:35:59 -> Drive 1 - Info: ATAPI iHAS324 A BLTP (G:) (ATAPI) I 23:35:59 -> Drive 2 - Info: ATAPI iHAS624 B GL2A (M:) (ATAPI) I 23:35:59 -> Drive 3 - Info: HL-DT-ST BD-RE BH12LS38 1.01-D0 (N:) (ATAPI) I 23:35:59 -> Drive 4 - Info: Optiarc DVD RW AD-5280S 1.Z8 (P:) (ATAPI) I 23:35:59 -> Drive 5 - Info: PIONEER BD-RW BDR-207M 1.30 (O:) (ATAPI) I 23:35:59 -> Drive 6 - Info: DTSOFT BDROM 1.05 (Y:) (SCSI) I 23:35:59 -> Drive 7 - Info: DVDFab Virtual Drive 1.1 (W:) (SCSI) I 23:35:59 -> Drive 8 - Info: ELBY CLONEDRIVE 1.4 (V:) (SCSI) I 23:35:59 -> Drive 9 - Info: VXDV BD-HD-DVDRAM S15 10.0 (X:) (SCSI) I 23:35:59 Found 1 DVD±RW, 2 DVD±RW/RAMs, 1 BD-ROM, 2 BD-ROM/HD DVD-ROMs, 2 BD-REs and 1 BD-RE XL! I 23:36:16 Operation Started! I 23:36:16 Source File: -==/\/[DISCOVERY IMAGE]\/\==- I 23:36:16 Source File Sectors: 4,267,040 (MODE1/2048) I 23:36:16 Source File Size: 8,738,897,920 bytes I 23:36:16 Source File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 23:36:16 Source File Volume Set Identifier: 4267040_SECTORS I 23:36:16 Source File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 23:36:16 Source File Implementation Identifier: ImgBurn v2.5.8.0 I 23:36:16 Source File File System(s): ISO9660 I 23:36:16 Destination Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 23:36:16 Destination Media Type: DVD+R DL (Disc ID: MKM-003-00) I 23:36:16 Destination Media Supported Write Speeds: 4x, 6x, 8x I 23:36:16 Destination Media Sectors: 4,267,040 I 23:36:16 Destination Media L0 Data Zone Capacity: 2,133,520 (Changeable: Yes) I 23:36:16 Write Mode: DVD I 23:36:16 Write Type: DAO I 23:36:16 Write Speed: 4x I 23:36:16 DVD+R DL Reserve Track: No I 23:36:16 Link Size: Auto I 23:36:16 Lock Volume: Yes I 23:36:16 Test Mode: No I 23:36:16 OPC: No I 23:36:16 BURN-Proof: Enabled I 23:36:16 Write Speed Successfully Set! - Effective: 5,540 KB/s (4x) I 23:36:16 Book Type Setting: DVD-ROM I 23:36:16 Advanced Settings - Force HT: No, Online HT: No, OverSpeed: No, SmartBurn: Yes I 23:36:16 CD/DVD Life Record Count: 44 - CD/DVD Record Count: 23 I 23:36:16 Optimal L0 Data Zone Capacity: 2,133,520 I 23:36:16 Optimal L0 Data Zone Method: ECC Block Boundary I 23:36:37 Set L0 Data Zone Capacity Succeeded! I 23:36:37 L0 Data Zone Capacity - Effective: 2,133,520 I 23:36:37 Filling Buffer... (80 MB) I 23:36:37 Writing LeadIn... I 23:36:39 Writing Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 23:36:39 Writing Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 23:36:39 Writing Layer 0... (LBA: 0 - 2133519) I 23:49:54 Writing Layer 1... (LBA: 2133520 - 4267039) I 00:03:12 Synchronising Cache... I 00:03:17 Closing Track... I 00:03:18 Finalising Disc... I 00:03:52 Exporting Graph Data... I 00:03:52 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_07-JANUARY-2013_23-36_MKM-003-00_4x.ibg I 00:03:52 Export Successfully Completed! I 00:03:52 Operation Successfully Completed! - Duration: 00:27:36 I 00:03:52 Average Write Rate: 5,360 KB/s (3.9x) - Maximum Write Rate: 5,655 KB/s (4.1x) I 00:03:52 Cycling Tray before Verify... W 00:03:59 Waiting for device to become ready... I 00:04:14 Device Ready! I 00:04:14 Operation Started! I 00:04:14 Source Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 00:04:14 Source Media Type: DVD+R DL (Book Type: DVD-ROM) (Disc ID: MKM-003-00) I 00:04:14 Source Media Supported Read Speeds: 2.4x, 4x, 6x, 8x, 12x I 00:04:14 Source Media Supported Write Speeds: 4x, 6x, 8x I 00:04:15 Image File: -==/\/[DISCOVERY IMAGE]\/\==- I 00:04:15 Image File Sectors: 4,267,040 (MODE1/2048) I 00:04:15 Image File Size: 8,738,897,920 bytes I 00:04:15 Image File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 00:04:15 Image File Volume Set Identifier: 4267040_SECTORS I 00:04:15 Image File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 00:04:15 Image File Implementation Identifier: ImgBurn v2.5.8.0 I 00:04:15 Image File File System(s): ISO9660 I 00:04:15 Read Speed (Data/Audio): MAX / MAX I 00:04:16 Verifying Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 00:04:16 Verifying Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 00:04:16 Verifying Layer 0... (LBA: 0 - 2133519) I 00:10:24 Verifying Layer 1... (LBA: 2133520 - 4267039) I 00:16:31 Exporting Graph Data... I 00:16:31 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_07-JANUARY-2013_23-36_MKM-003-00_4x.ibg I 00:16:31 Export Successfully Completed! I 00:16:31 Operation Successfully Completed! - Duration: 00:12:15 I 00:16:31 Average Verify Rate: 11,626 KB/s (8.4x) - Maximum Verify Rate: 16,958 KB/s (12.2x) Scans: Results 2 : I 00:20:28 ImgBurn Version 2.5.7.2 Beta started! I 00:20:28 Microsoft Windows 7 Ultimate x64 Edition (6.1, Build 7601 : Service Pack 1) I 00:20:28 Total Physical Memory: 16,760,108 KB - Available: 10,881,780 KB I 00:20:28 Initialising SPTI... I 00:20:28 Searching for SCSI / ATAPI devices... I 00:20:28 -> Drive 1 - Info: ATAPI iHAS324 A BLTP (G:) (ATAPI) I 00:20:28 -> Drive 2 - Info: ATAPI iHAS624 B GL2A (M:) (ATAPI) I 00:20:28 -> Drive 3 - Info: HL-DT-ST BD-RE BH12LS38 1.01-D0 (N:) (ATAPI) I 00:20:28 -> Drive 4 - Info: Optiarc DVD RW AD-5280S 1.Z8 (P:) (ATAPI) I 00:20:29 -> Drive 5 - Info: PIONEER BD-RW BDR-207M 1.30 (O:) (ATAPI) I 00:20:29 -> Drive 6 - Info: DTSOFT BDROM 1.05 (Y:) (SCSI) I 00:20:29 -> Drive 7 - Info: DVDFab Virtual Drive 1.1 (W:) (SCSI) I 00:20:29 -> Drive 8 - Info: ELBY CLONEDRIVE 1.4 (V:) (SCSI) I 00:20:29 -> Drive 9 - Info: VXDV BD-HD-DVDRAM S15 10.0 (X:) (SCSI) I 00:20:29 Found 1 DVD±RW, 2 DVD±RW/RAMs, 1 BD-ROM, 2 BD-ROM/HD DVD-ROMs, 2 BD-REs and 1 BD-RE XL! I 00:20:45 Operation Started! I 00:20:45 Source File: -==/\/[DISCOVERY IMAGE]\/\==- I 00:20:45 Source File Sectors: 4,267,040 (MODE1/2048) I 00:20:45 Source File Size: 8,738,897,920 bytes I 00:20:45 Source File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 00:20:45 Source File Volume Set Identifier: 4267040_SECTORS I 00:20:45 Source File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 00:20:45 Source File Implementation Identifier: ImgBurn v2.5.8.0 I 00:20:45 Source File File System(s): ISO9660 I 00:20:45 Destination Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 00:20:45 Destination Media Type: DVD+R DL (Disc ID: MKM-003-00) I 00:20:45 Destination Media Supported Write Speeds: 4x, 6x, 8x I 00:20:45 Destination Media Sectors: 4,267,040 I 00:20:45 Destination Media L0 Data Zone Capacity: 2,133,520 (Changeable: Yes) I 00:20:45 Write Mode: DVD I 00:20:45 Write Type: DAO I 00:20:45 Write Speed: 4x I 00:20:45 DVD+R DL Reserve Track: No I 00:20:45 Link Size: Auto I 00:20:45 Lock Volume: Yes I 00:20:45 Test Mode: No I 00:20:45 OPC: No I 00:20:45 BURN-Proof: Enabled I 00:20:46 Write Speed Successfully Set! - Effective: 5,540 KB/s (4x) I 00:20:46 Book Type Setting: DVD-ROM I 00:20:46 Advanced Settings - Force HT: Yes, Online HT: No, OverSpeed: No, SmartBurn: Yes I 00:20:46 CD/DVD Life Record Count: 46 - CD/DVD Record Count: 23 I 00:20:46 Optimal L0 Data Zone Capacity: 2,133,520 I 00:20:46 Optimal L0 Data Zone Method: ECC Block Boundary I 00:21:05 Set L0 Data Zone Capacity Succeeded! I 00:21:05 L0 Data Zone Capacity - Effective: 2,133,520 I 00:21:06 Filling Buffer... (80 MB) I 00:21:06 Writing LeadIn... I 00:21:08 Writing Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 00:21:08 Writing Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 00:21:08 Writing Layer 0... (LBA: 0 - 2133519) I 00:34:22 Writing Layer 1... (LBA: 2133520 - 4267039) I 00:47:36 Synchronising Cache... I 00:47:41 Closing Track... I 00:47:42 Finalising Disc... I 00:48:16 Exporting Graph Data... I 00:48:16 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_08-JANUARY-2013_00-20_MKM-003-00_4x.ibg I 00:48:16 Export Successfully Completed! I 00:48:16 Operation Successfully Completed! - Duration: 00:27:30 I 00:48:16 Average Write Rate: 5,374 KB/s (3.9x) - Maximum Write Rate: 5,654 KB/s (4.1x) I 00:48:16 Cycling Tray before Verify... W 00:48:22 Waiting for device to become ready... I 00:48:38 Device Ready! I 00:48:38 Operation Started! I 00:48:38 Source Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 00:48:38 Source Media Type: DVD+R DL (Book Type: DVD-ROM) (Disc ID: MKM-003-00) I 00:48:38 Source Media Supported Read Speeds: 2.4x, 4x, 6x, 8x, 12x I 00:48:38 Source Media Supported Write Speeds: 4x, 6x, 8x I 00:48:38 Image File: -==/\/[DISCOVERY IMAGE]\/\==- I 00:48:38 Image File Sectors: 4,267,040 (MODE1/2048) I 00:48:38 Image File Size: 8,738,897,920 bytes I 00:48:38 Image File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 00:48:38 Image File Volume Set Identifier: 4267040_SECTORS I 00:48:38 Image File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 00:48:38 Image File Implementation Identifier: ImgBurn v2.5.8.0 I 00:48:38 Image File File System(s): ISO9660 I 00:48:38 Read Speed (Data/Audio): MAX / MAX I 00:48:39 Verifying Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 00:48:39 Verifying Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 00:48:39 Verifying Layer 0... (LBA: 0 - 2133519) I 00:54:47 Verifying Layer 1... (LBA: 2133520 - 4267039) I 01:00:55 Exporting Graph Data... I 01:00:55 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_08-JANUARY-2013_00-20_MKM-003-00_4x.ibg I 01:00:55 Export Successfully Completed! I 01:00:55 Operation Successfully Completed! - Duration: 00:12:15 I 01:00:55 Average Verify Rate: 11,626 KB/s (8.4x) - Maximum Verify Rate: 16,948 KB/s (12.2x) Scans 2: Results 3: I 11:04:44 ImgBurn Version 2.5.7.2 Beta started! I 11:04:44 Microsoft Windows 7 Ultimate x64 Edition (6.1, Build 7601 : Service Pack 1) I 11:04:44 Total Physical Memory: 16,760,108 KB - Available: 10,443,496 KB I 11:04:44 Initialising SPTI... I 11:04:44 Searching for SCSI / ATAPI devices... I 11:04:44 -> Drive 1 - Info: ATAPI iHAS324 A BLTP (G:) (ATAPI) I 11:04:44 -> Drive 2 - Info: ATAPI iHAS624 B GL2A (M:) (ATAPI) I 11:04:44 -> Drive 3 - Info: HL-DT-ST BD-RE BH12LS38 1.01-D0 (N:) (ATAPI) I 11:04:45 -> Drive 4 - Info: Optiarc DVD RW AD-5280S 1.Z8 (P:) (ATAPI) I 11:04:45 -> Drive 5 - Info: PIONEER BD-RW BDR-207M 1.30 (O:) (ATAPI) I 11:04:45 -> Drive 6 - Info: DTSOFT BDROM 1.05 (Y:) (SCSI) I 11:04:45 -> Drive 7 - Info: DVDFab Virtual Drive 1.1 (W:) (SCSI) I 11:04:45 -> Drive 8 - Info: ELBY CLONEDRIVE 1.4 (V:) (SCSI) I 11:04:45 -> Drive 9 - Info: VXDV BD-HD-DVDRAM S15 10.0 (X:) (SCSI) I 11:04:45 Found 1 DVD±RW, 2 DVD±RW/RAMs, 1 BD-ROM, 2 BD-ROM/HD DVD-ROMs, 2 BD-REs and 1 BD-RE XL! I 11:04:56 Operation Started! I 11:04:56 Source File: -==/\/[DISCOVERY IMAGE]\/\==- I 11:04:56 Source File Sectors: 4,267,040 (MODE1/2048) I 11:04:56 Source File Size: 8,738,897,920 bytes I 11:04:56 Source File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 11:04:56 Source File Volume Set Identifier: 4267040_SECTORS I 11:04:56 Source File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 11:04:56 Source File Implementation Identifier: ImgBurn v2.5.8.0 I 11:04:56 Source File File System(s): ISO9660 I 11:04:56 Destination Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 11:04:56 Destination Media Type: DVD+R DL (Disc ID: MKM-003-00) I 11:04:56 Destination Media Supported Write Speeds: 4x, 6x, 8x I 11:04:56 Destination Media Sectors: 4,267,040 I 11:04:56 Destination Media L0 Data Zone Capacity: 2,133,520 (Changeable: Yes) I 11:04:56 Write Mode: DVD I 11:04:56 Write Type: DAO I 11:04:56 Write Speed: 4x I 11:04:56 DVD+R DL Reserve Track: No I 11:04:56 Link Size: Auto I 11:04:56 Lock Volume: Yes I 11:04:56 Test Mode: No I 11:04:56 OPC: No I 11:04:56 BURN-Proof: Enabled I 11:04:56 Write Speed Successfully Set! - Effective: 5,540 KB/s (4x) I 11:04:56 Book Type Setting: DVD-ROM I 11:04:56 Advanced Settings - Force HT: No, Online HT: No, OverSpeed: No, SmartBurn: Yes I 11:04:56 CD/DVD Life Record Count: 50 - CD/DVD Record Count: 23 I 11:04:56 Optimal L0 Data Zone Capacity: 2,133,520 I 11:04:56 Optimal L0 Data Zone Method: ECC Block Boundary I 11:05:16 Set L0 Data Zone Capacity Succeeded! I 11:05:16 L0 Data Zone Capacity - Effective: 2,133,520 I 11:05:16 Filling Buffer... (80 MB) I 11:05:16 Writing LeadIn... I 11:05:18 Writing Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 11:05:18 Writing Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 11:05:18 Writing Layer 0... (LBA: 0 - 2133519) I 11:18:32 Writing Layer 1... (LBA: 2133520 - 4267039) I 11:31:52 Synchronising Cache... I 11:31:57 Closing Track... I 11:31:58 Finalising Disc... I 11:32:31 Exporting Graph Data... I 11:32:31 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_08-JANUARY-2013_11-04_MKM-003-00_4x.ibg I 11:32:31 Export Successfully Completed! I 11:32:31 Operation Successfully Completed! - Duration: 00:27:34 I 11:32:31 Average Write Rate: 5,357 KB/s (3.9x) - Maximum Write Rate: 5,653 KB/s (4.1x) I 11:32:31 Cycling Tray before Verify... W 11:32:38 Waiting for device to become ready... I 11:32:53 Device Ready! I 11:32:53 Operation Started! I 11:32:53 Source Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 11:32:53 Source Media Type: DVD+R DL (Book Type: DVD-ROM) (Disc ID: MKM-003-00) I 11:32:53 Source Media Supported Read Speeds: 2.4x, 4x, 6x, 8x, 12x I 11:32:53 Source Media Supported Write Speeds: 4x, 6x, 8x I 11:32:53 Image File: -==/\/[DISCOVERY IMAGE]\/\==- I 11:32:53 Image File Sectors: 4,267,040 (MODE1/2048) I 11:32:53 Image File Size: 8,738,897,920 bytes I 11:32:53 Image File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 11:32:53 Image File Volume Set Identifier: 4267040_SECTORS I 11:32:53 Image File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 11:32:53 Image File Implementation Identifier: ImgBurn v2.5.8.0 I 11:32:53 Image File File System(s): ISO9660 I 11:32:53 Read Speed (Data/Audio): MAX / MAX I 11:32:54 Verifying Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 11:32:54 Verifying Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 11:32:54 Verifying Layer 0... (LBA: 0 - 2133519) I 11:39:03 Verifying Layer 1... (LBA: 2133520 - 4267039) I 11:45:10 Exporting Graph Data... I 11:45:10 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_08-JANUARY-2013_11-04_MKM-003-00_4x.ibg I 11:45:10 Export Successfully Completed! I 11:45:10 Operation Successfully Completed! - Duration: 00:12:15 I 11:45:10 Average Verify Rate: 11,626 KB/s (8.4x) - Maximum Verify Rate: 16,901 KB/s (12.2x) Scans 3: Results 4: I 11:49:25 ImgBurn Version 2.5.7.2 Beta started! I 11:49:25 Microsoft Windows 7 Ultimate x64 Edition (6.1, Build 7601 : Service Pack 1) I 11:49:25 Total Physical Memory: 16,760,108 KB - Available: 10,797,152 KB I 11:49:25 Initialising SPTI... I 11:49:25 Searching for SCSI / ATAPI devices... I 11:49:25 -> Drive 1 - Info: ATAPI iHAS324 A BLTP (G:) (ATAPI) I 11:49:25 -> Drive 2 - Info: ATAPI iHAS624 B GL2A (M:) (ATAPI) I 11:49:25 -> Drive 3 - Info: HL-DT-ST BD-RE BH12LS38 1.01-D0 (N:) (ATAPI) I 11:49:26 -> Drive 4 - Info: Optiarc DVD RW AD-5280S 1.Z8 (P:) (ATAPI) I 11:49:26 -> Drive 5 - Info: PIONEER BD-RW BDR-207M 1.30 (O:) (ATAPI) I 11:49:26 -> Drive 6 - Info: DTSOFT BDROM 1.05 (Y:) (SCSI) I 11:49:26 -> Drive 7 - Info: DVDFab Virtual Drive 1.1 (W:) (SCSI) I 11:49:26 -> Drive 8 - Info: ELBY CLONEDRIVE 1.4 (V:) (SCSI) I 11:49:26 -> Drive 9 - Info: VXDV BD-HD-DVDRAM S15 10.0 (X:) (SCSI) I 11:49:26 Found 1 DVD±RW, 2 DVD±RW/RAMs, 1 BD-ROM, 2 BD-ROM/HD DVD-ROMs, 2 BD-REs and 1 BD-RE XL! I 11:49:33 Operation Started! I 11:49:33 Source File: -==/\/[DISCOVERY IMAGE]\/\==- I 11:49:33 Source File Sectors: 4,267,040 (MODE1/2048) I 11:49:33 Source File Size: 8,738,897,920 bytes I 11:49:33 Source File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 11:49:33 Source File Volume Set Identifier: 4267040_SECTORS I 11:49:33 Source File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 11:49:33 Source File Implementation Identifier: ImgBurn v2.5.8.0 I 11:49:33 Source File File System(s): ISO9660 I 11:49:33 Destination Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 11:49:33 Destination Media Type: DVD+R DL (Disc ID: MKM-003-00) I 11:49:33 Destination Media Supported Write Speeds: 4x, 6x, 8x I 11:49:33 Destination Media Sectors: 4,267,040 I 11:49:33 Destination Media L0 Data Zone Capacity: 2,133,520 (Changeable: Yes) I 11:49:33 Write Mode: DVD I 11:49:33 Write Type: DAO I 11:49:33 Write Speed: 4x I 11:49:33 DVD+R DL Reserve Track: No I 11:49:33 Link Size: Auto I 11:49:33 Lock Volume: Yes I 11:49:33 Test Mode: No I 11:49:33 OPC: No I 11:49:33 BURN-Proof: Enabled I 11:49:33 Write Speed Successfully Set! - Effective: 5,540 KB/s (4x) I 11:49:33 Book Type Setting: DVD-ROM I 11:49:33 Advanced Settings - Force HT: Yes, Online HT: No, OverSpeed: No, SmartBurn: Yes I 11:49:33 CD/DVD Life Record Count: 52 - CD/DVD Record Count: 23 I 11:49:33 Optimal L0 Data Zone Capacity: 2,133,520 I 11:49:33 Optimal L0 Data Zone Method: ECC Block Boundary I 11:49:54 Set L0 Data Zone Capacity Succeeded! I 11:49:54 L0 Data Zone Capacity - Effective: 2,133,520 I 11:49:54 Filling Buffer... (80 MB) I 11:49:54 Writing LeadIn... I 11:49:56 Writing Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 11:49:56 Writing Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 11:49:56 Writing Layer 0... (LBA: 0 - 2133519) I 12:03:10 Writing Layer 1... (LBA: 2133520 - 4267039) I 12:16:24 Synchronising Cache... I 12:16:27 Closing Track... I 12:16:28 Finalising Disc... I 12:17:02 Exporting Graph Data... I 12:17:02 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_08-JANUARY-2013_11-49_MKM-003-00_4x.ibg I 12:17:02 Export Successfully Completed! I 12:17:02 Operation Successfully Completed! - Duration: 00:27:29 I 12:17:02 Average Write Rate: 5,374 KB/s (3.9x) - Maximum Write Rate: 5,654 KB/s (4.1x) I 12:17:02 Cycling Tray before Verify... W 12:17:09 Waiting for device to become ready... I 12:17:25 Device Ready! I 12:17:25 Operation Started! I 12:17:25 Source Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 12:17:25 Source Media Type: DVD+R DL (Book Type: DVD-ROM) (Disc ID: MKM-003-00) I 12:17:25 Source Media Supported Read Speeds: 2.4x, 4x, 6x, 8x, 12x I 12:17:25 Source Media Supported Write Speeds: 4x, 6x, 8x I 12:17:25 Image File: -==/\/[DISCOVERY IMAGE]\/\==- I 12:17:25 Image File Sectors: 4,267,040 (MODE1/2048) I 12:17:25 Image File Size: 8,738,897,920 bytes I 12:17:25 Image File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 12:17:25 Image File Volume Set Identifier: 4267040_SECTORS I 12:17:25 Image File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 12:17:25 Image File Implementation Identifier: ImgBurn v2.5.8.0 I 12:17:25 Image File File System(s): ISO9660 I 12:17:25 Read Speed (Data/Audio): MAX / MAX I 12:17:26 Verifying Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 12:17:26 Verifying Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 12:17:26 Verifying Layer 0... (LBA: 0 - 2133519) I 12:23:35 Verifying Layer 1... (LBA: 2133520 - 4267039) I 12:29:42 Exporting Graph Data... I 12:29:42 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_08-JANUARY-2013_11-49_MKM-003-00_4x.ibg I 12:29:42 Export Successfully Completed! I 12:29:42 Operation Successfully Completed! - Duration: 00:12:15 I 12:29:42 Average Verify Rate: 11,626 KB/s (8.4x) - Maximum Verify Rate: 16,917 KB/s (12.2x) Scans 4: Results 5: I 12:35:57 ImgBurn Version 2.5.7.2 Beta started! I 12:35:57 Microsoft Windows 7 Ultimate x64 Edition (6.1, Build 7601 : Service Pack 1) I 12:35:57 Total Physical Memory: 16,760,108 KB - Available: 10,276,068 KB I 12:35:57 Initialising SPTI... I 12:35:57 Searching for SCSI / ATAPI devices... I 12:35:57 -> Drive 1 - Info: ATAPI iHAS324 A BLTP (G:) (ATAPI) I 12:35:57 -> Drive 2 - Info: ATAPI iHAS624 B GL2A (M:) (ATAPI) I 12:35:58 -> Drive 3 - Info: HL-DT-ST BD-RE BH12LS38 1.01-D0 (N:) (ATAPI) I 12:35:58 -> Drive 4 - Info: Optiarc DVD RW AD-5280S 1.Z8 (P:) (ATAPI) I 12:35:58 -> Drive 5 - Info: PIONEER BD-RW BDR-207M 1.30 (O:) (ATAPI) I 12:35:58 -> Drive 6 - Info: DTSOFT BDROM 1.05 (Y:) (SCSI) I 12:35:58 -> Drive 7 - Info: DVDFab Virtual Drive 1.1 (W:) (SCSI) I 12:35:58 -> Drive 8 - Info: ELBY CLONEDRIVE 1.4 (V:) (SCSI) I 12:35:58 -> Drive 9 - Info: VXDV BD-HD-DVDRAM S15 10.0 (X:) (SCSI) I 12:35:58 Found 1 DVD±RW, 2 DVD±RW/RAMs, 1 BD-ROM, 2 BD-ROM/HD DVD-ROMs, 2 BD-REs and 1 BD-RE XL! I 12:36:30 Operation Started! I 12:36:30 Source File: -==/\/[DISCOVERY IMAGE]\/\==- I 12:36:30 Source File Sectors: 4,267,040 (MODE1/2048) I 12:36:30 Source File Size: 8,738,897,920 bytes I 12:36:30 Source File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 12:36:30 Source File Volume Set Identifier: 4267040_SECTORS I 12:36:30 Source File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 12:36:30 Source File Implementation Identifier: ImgBurn v2.5.8.0 I 12:36:30 Source File File System(s): ISO9660 I 12:36:30 Destination Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 12:36:30 Destination Media Type: DVD+R DL (Disc ID: MKM-003-00) I 12:36:30 Destination Media Supported Write Speeds: 4x, 6x, 8x I 12:36:30 Destination Media Sectors: 4,267,040 I 12:36:30 Destination Media L0 Data Zone Capacity: 2,133,520 (Changeable: Yes) I 12:36:30 Write Mode: DVD I 12:36:30 Write Type: DAO I 12:36:30 Write Speed: 4x I 12:36:30 DVD+R DL Reserve Track: No I 12:36:30 Link Size: Auto I 12:36:30 Lock Volume: Yes I 12:36:30 Test Mode: No I 12:36:30 OPC: No I 12:36:30 BURN-Proof: Enabled I 12:36:30 Write Speed Successfully Set! - Effective: 5,540 KB/s (4x) I 12:36:30 Book Type Setting: DVD-ROM I 12:36:30 Advanced Settings - Force HT: Yes, Online HT: No, OverSpeed: No, SmartBurn: Yes I 12:36:30 CD/DVD Life Record Count: 56 - CD/DVD Record Count: 23 I 12:36:30 Optimal L0 Data Zone Capacity: 2,133,520 I 12:36:30 Optimal L0 Data Zone Method: ECC Block Boundary I 12:36:48 Set L0 Data Zone Capacity Succeeded! I 12:36:48 L0 Data Zone Capacity - Effective: 2,133,520 I 12:36:49 Filling Buffer... (80 MB) I 12:36:49 Writing LeadIn... I 12:36:51 Writing Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 12:36:51 Writing Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 12:36:51 Writing Layer 0... (LBA: 0 - 2133519) I 12:50:05 Writing Layer 1... (LBA: 2133520 - 4267039) I 13:03:19 Synchronising Cache... I 13:03:22 Closing Track... I 13:03:23 Finalising Disc... I 13:03:56 Exporting Graph Data... I 13:03:56 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_08-JANUARY-2013_12-36_MKM-003-00_4x.ibg I 13:03:56 Export Successfully Completed! I 13:03:56 Operation Successfully Completed! - Duration: 00:27:26 I 13:03:56 Average Write Rate: 5,374 KB/s (3.9x) - Maximum Write Rate: 5,655 KB/s (4.1x) I 13:03:56 Cycling Tray before Verify... W 13:04:03 Waiting for device to become ready... I 13:04:18 Device Ready! I 13:04:18 Operation Started! I 13:04:18 Source Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 13:04:18 Source Media Type: DVD+R DL (Book Type: DVD-ROM) (Disc ID: MKM-003-00) I 13:04:18 Source Media Supported Read Speeds: 2.4x, 4x, 6x, 8x, 12x I 13:04:18 Source Media Supported Write Speeds: 4x, 6x, 8x I 13:04:18 Image File: -==/\/[DISCOVERY IMAGE]\/\==- I 13:04:18 Image File Sectors: 4,267,040 (MODE1/2048) I 13:04:18 Image File Size: 8,738,897,920 bytes I 13:04:18 Image File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 13:04:18 Image File Volume Set Identifier: 4267040_SECTORS I 13:04:18 Image File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 13:04:18 Image File Implementation Identifier: ImgBurn v2.5.8.0 I 13:04:18 Image File File System(s): ISO9660 I 13:04:18 Read Speed (Data/Audio): MAX / MAX I 13:04:19 Verifying Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 13:04:19 Verifying Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 13:04:19 Verifying Layer 0... (LBA: 0 - 2133519) I 13:10:28 Verifying Layer 1... (LBA: 2133520 - 4267039) I 13:16:35 Exporting Graph Data... I 13:16:35 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_08-JANUARY-2013_12-36_MKM-003-00_4x.ibg I 13:16:35 Export Successfully Completed! I 13:16:35 Operation Successfully Completed! - Duration: 00:12:15 I 13:16:35 Average Verify Rate: 11,626 KB/s (8.4x) - Maximum Verify Rate: 16,927 KB/s (12.2x) Scans 5: Results 6 (ImgBurn Payload - Compatible): I 15:15:43 ImgBurn Version 2.5.7.2 Beta started! I 15:15:43 Microsoft Windows 7 Ultimate x64 Edition (6.1, Build 7601 : Service Pack 1) I 15:15:43 Total Physical Memory: 16,760,108 KB - Available: 10,040,164 KB I 15:15:43 Initialising SPTI... I 15:15:43 Searching for SCSI / ATAPI devices... I 15:15:43 -> Drive 1 - Info: ATAPI iHAS324 A BLTP (G:) (ATAPI) I 15:15:43 -> Drive 2 - Info: ATAPI iHAS624 B GL2A (M:) (ATAPI) I 15:15:44 -> Drive 3 - Info: HL-DT-ST BD-RE BH12LS38 1.01-D0 (N:) (ATAPI) I 15:15:44 -> Drive 4 - Info: Optiarc DVD RW AD-5280S 1.Z8 (P:) (ATAPI) I 15:15:44 -> Drive 5 - Info: PIONEER BD-RW BDR-207M 1.30 (O:) (ATAPI) I 15:15:44 -> Drive 6 - Info: DTSOFT BDROM 1.05 (Y:) (SCSI) I 15:15:44 -> Drive 7 - Info: DVDFab Virtual Drive 1.1 (W:) (SCSI) I 15:15:44 -> Drive 8 - Info: ELBY CLONEDRIVE 1.4 (V:) (SCSI) I 15:15:44 -> Drive 9 - Info: VXDV BD-HD-DVDRAM S15 10.0 (X:) (SCSI) I 15:15:44 Found 1 DVD±RW, 2 DVD±RW/RAMs, 1 BD-ROM, 2 BD-ROM/HD DVD-ROMs, 2 BD-REs and 1 BD-RE XL! I 15:16:07 Operation Started! I 15:16:07 Source File: -==/\/[DISCOVERY IMAGE]\/\==- I 15:16:07 Source File Sectors: 4,267,040 (MODE1/2048) I 15:16:07 Source File Size: 8,738,897,920 bytes I 15:16:07 Source File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 15:16:07 Source File Volume Set Identifier: 4267040_SECTORS I 15:16:07 Source File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 15:16:07 Source File Implementation Identifier: ImgBurn v2.5.8.0 I 15:16:07 Source File File System(s): ISO9660 I 15:16:07 Destination Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 15:16:07 Destination Media Type: DVD+R DL (Disc ID: MKM-003-00) I 15:16:07 Destination Media Supported Write Speeds: 4x, 6x, 8x I 15:16:07 Destination Media Sectors: 4,267,040 I 15:16:07 Destination Media L0 Data Zone Capacity: 2,133,520 (Changeable: Yes) I 15:16:07 Write Mode: DVD I 15:16:07 Write Type: DAO I 15:16:07 Write Speed: 4x I 15:16:07 DVD+R DL Reserve Track: No I 15:16:07 Link Size: Auto I 15:16:07 Lock Volume: Yes I 15:16:07 Test Mode: No I 15:16:07 OPC: No I 15:16:07 BURN-Proof: Enabled I 15:16:07 Write Speed Successfully Set! - Effective: 5,540 KB/s (4x) I 15:16:07 Book Type Setting: DVD-ROM I 15:16:07 Advanced Settings - Force HT: Yes, Online HT: No, OverSpeed: No, SmartBurn: Yes I 15:16:07 CD/DVD Life Record Count: 60 - CD/DVD Record Count: 23 I 15:16:07 Optimal L0 Data Zone Capacity: 2,133,520 I 15:16:07 Optimal L0 Data Zone Method: ECC Block Boundary I 15:16:28 Set L0 Data Zone Capacity Succeeded! I 15:16:28 L0 Data Zone Capacity - Effective: 2,133,520 I 15:16:28 Filling Buffer... (80 MB) I 15:16:28 Writing LeadIn... I 15:16:31 Writing Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 15:16:31 Writing Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 15:16:31 Writing Layer 0... (LBA: 0 - 2133519) I 15:29:45 Writing Layer 1... (LBA: 2133520 - 4267039) I 15:43:00 Synchronising Cache... I 15:43:26 Closing Track... I 15:43:27 Finalising Disc... I 15:44:01 Exporting Graph Data... I 15:44:01 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_08-JANUARY-2013_15-16_MKM-003-00_4x.ibg I 15:44:01 Export Successfully Completed! I 15:44:01 Operation Successfully Completed! - Duration: 00:27:53 I 15:44:01 Average Write Rate: 5,370 KB/s (3.9x) - Maximum Write Rate: 5,654 KB/s (4.1x) I 15:44:01 Cycling Tray before Verify... W 15:44:07 Waiting for device to become ready... I 15:44:23 Device Ready! I 15:44:24 Operation Started! I 15:44:24 Source Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 15:44:24 Source Media Type: DVD+R DL (Book Type: DVD-ROM) (Disc ID: MKM-003-00) I 15:44:24 Source Media Supported Read Speeds: 2.4x, 4x, 6x, 8x, 12x I 15:44:24 Source Media Supported Write Speeds: 4x, 6x, 8x I 15:44:24 Image File: -==/\/[DISCOVERY IMAGE]\/\==- I 15:44:24 Image File Sectors: 4,267,040 (MODE1/2048) I 15:44:24 Image File Size: 8,738,897,920 bytes I 15:44:24 Image File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 15:44:24 Image File Volume Set Identifier: 4267040_SECTORS I 15:44:24 Image File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 15:44:24 Image File Implementation Identifier: ImgBurn v2.5.8.0 I 15:44:24 Image File File System(s): ISO9660 I 15:44:24 Read Speed (Data/Audio): MAX / MAX I 15:44:25 Verifying Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 15:44:25 Verifying Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 15:44:25 Verifying Layer 0... (LBA: 0 - 2133519) I 15:50:33 Verifying Layer 1... (LBA: 2133520 - 4267039) I 15:56:41 Exporting Graph Data... I 15:56:41 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_08-JANUARY-2013_15-16_MKM-003-00_4x.ibg I 15:56:41 Export Successfully Completed! I 15:56:41 Operation Successfully Completed! - Duration: 00:12:15 I 15:56:41 Average Verify Rate: 11,626 KB/s (8.4x) - Maximum Verify Rate: 16,917 KB/s (12.2x) Scans 6: Results 7 (ImgBurn Payload - Effective): I 16:36:29 ImgBurn Version 2.5.7.2 Beta started! I 16:36:29 Microsoft Windows 7 Ultimate x64 Edition (6.1, Build 7601 : Service Pack 1) I 16:36:29 Total Physical Memory: 16,760,108 KB - Available: 9,872,700 KB I 16:36:29 Initialising SPTI... I 16:36:29 Searching for SCSI / ATAPI devices... I 16:36:30 -> Drive 1 - Info: ATAPI iHAS324 A BLTP (G:) (ATAPI) I 16:36:30 -> Drive 2 - Info: ATAPI iHAS624 B GL2A (M:) (ATAPI) I 16:36:30 -> Drive 3 - Info: HL-DT-ST BD-RE BH12LS38 1.01-D0 (N:) (ATAPI) I 16:36:30 -> Drive 4 - Info: Optiarc DVD RW AD-5280S 1.Z8 (P:) (ATAPI) I 16:36:31 -> Drive 5 - Info: PIONEER BD-RW BDR-207M 1.30 (O:) (ATAPI) I 16:36:31 -> Drive 6 - Info: DTSOFT BDROM 1.05 (Y:) (SCSI) I 16:36:31 -> Drive 7 - Info: DVDFab Virtual Drive 1.1 (W:) (SCSI) I 16:36:31 -> Drive 8 - Info: ELBY CLONEDRIVE 1.4 (V:) (SCSI) I 16:36:31 -> Drive 9 - Info: VXDV BD-HD-DVDRAM S15 10.0 (X:) (SCSI) I 16:36:31 Found 1 DVD±RW, 2 DVD±RW/RAMs, 1 BD-ROM, 2 BD-ROM/HD DVD-ROMs, 2 BD-REs and 1 BD-RE XL! I 16:38:44 Operation Started! I 16:38:44 Source File: -==/\/[DISCOVERY IMAGE]\/\==- I 16:38:44 Source File Sectors: 4,267,040 (MODE1/2048) I 16:38:44 Source File Size: 8,738,897,920 bytes I 16:38:44 Source File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 16:38:44 Source File Volume Set Identifier: 4267040_SECTORS I 16:38:44 Source File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 16:38:44 Source File Implementation Identifier: ImgBurn v2.5.8.0 I 16:38:44 Source File File System(s): ISO9660 I 16:38:44 Destination Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 16:38:44 Destination Media Type: DVD+R DL (Disc ID: MKM-003-00) I 16:38:44 Destination Media Supported Write Speeds: 4x, 6x, 8x I 16:38:44 Destination Media Sectors: 4,267,040 I 16:38:44 Destination Media L0 Data Zone Capacity: 2,133,520 (Changeable: Yes) I 16:38:44 Write Mode: DVD I 16:38:44 Write Type: DAO I 16:38:44 Write Speed: 4x I 16:38:44 DVD+R DL Reserve Track: No I 16:38:44 Link Size: Auto I 16:38:44 Lock Volume: Yes I 16:38:44 Test Mode: No I 16:38:44 OPC: No I 16:38:44 BURN-Proof: Enabled I 16:38:44 Write Speed Successfully Set! - Effective: 5,540 KB/s (4x) I 16:38:44 Book Type Setting: DVD-ROM I 16:38:44 Advanced Settings - Force HT: Yes, Online HT: No, OverSpeed: No, SmartBurn: Yes I 16:38:44 CD/DVD Life Record Count: 64 - CD/DVD Record Count: 23 I 16:38:44 Optimal L0 Data Zone Capacity: 2,133,520 I 16:38:44 Optimal L0 Data Zone Method: ECC Block Boundary W 16:38:45 Set L0 Data Zone Capacity Failed! - Reason: Invalid Field in Parameter List I 16:38:45 L0 Data Zone Capacity - Effective: 2,133,520 I 16:38:45 Filling Buffer... (80 MB) I 16:38:45 Writing LeadIn... I 16:39:07 Writing Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 16:39:07 Writing Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 16:39:07 Writing Layer 0... (LBA: 0 - 2133519) I 16:52:21 Writing Layer 1... (LBA: 2133520 - 4267039) I 17:05:35 Synchronising Cache... I 17:05:39 Closing Track... I 17:05:40 Finalising Disc... I 17:06:14 Exporting Graph Data... I 17:06:14 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_08-JANUARY-2013_16-38_MKM-003-00_4x.ibg I 17:06:14 Export Successfully Completed! I 17:06:14 Operation Successfully Completed! - Duration: 00:27:29 I 17:06:14 Average Write Rate: 5,377 KB/s (3.9x) - Maximum Write Rate: 5,654 KB/s (4.1x) I 17:06:14 Cycling Tray before Verify... W 17:06:21 Waiting for device to become ready... I 17:06:37 Device Ready! I 17:06:37 Operation Started! I 17:06:37 Source Device: [0:4:0] ATAPI iHAS324 A BLTP (G:) (ATAPI) I 17:06:37 Source Media Type: DVD+R DL (Book Type: DVD-ROM) (Disc ID: MKM-003-00) I 17:06:37 Source Media Supported Read Speeds: 2.4x, 4x, 6x, 8x, 12x I 17:06:37 Source Media Supported Write Speeds: 4x, 6x, 8x I 17:06:37 Image File: -==/\/[DISCOVERY IMAGE]\/\==- I 17:06:37 Image File Sectors: 4,267,040 (MODE1/2048) I 17:06:37 Image File Size: 8,738,897,920 bytes I 17:06:37 Image File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 17:06:37 Image File Volume Set Identifier: 4267040_SECTORS I 17:06:37 Image File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 17:06:37 Image File Implementation Identifier: ImgBurn v2.5.8.0 I 17:06:37 Image File File System(s): ISO9660 I 17:06:37 Read Speed (Data/Audio): MAX / MAX I 17:06:38 Verifying Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 17:06:38 Verifying Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 17:06:38 Verifying Layer 0... (LBA: 0 - 2133519) I 17:12:47 Verifying Layer 1... (LBA: 2133520 - 4267039) I 17:18:54 Exporting Graph Data... I 17:18:54 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS324_A_BLTP_08-JANUARY-2013_16-38_MKM-003-00_4x.ibg I 17:18:54 Export Successfully Completed! I 17:18:54 Operation Successfully Completed! - Duration: 00:12:15 I 17:18:54 Average Verify Rate: 11,626 KB/s (8.4x) - Maximum Verify Rate: 16,933 KB/s (12.2x) Scans 7: -
Various Drives - BurnerMAX Payload - MKM-003-00
LIGHTNING UK! replied to LIGHTNING UK!'s topic in Drives
Lite-On iHAS422 8 4L18 Drive ID: ATAPI iHAS422 8 4L18 BurnerMAX Payload Tool v0.15: Scanning: G:\ [ATAPI iHAS422 8 4L18] L0: 0x872E L0: 0x8A88 L1: 0x863E L1: 0x870E L1: 0x872A L1: 0x8745 Patching: .................. BurnerMAX IS enabled ! Free Space: 8,738,897,920 bytes Media Information (Before): ATAPI iHAS422 8 4L18 (ATAPI) Current Profile: DVD+R DL Disc Information: Status: Empty State of Last Session: Empty Erasable: No Free Sectors: 4,173,824 Free Space: 8,547,991,552 bytes Free Time: 927:32:74 (MM:SS:FF) Next Writable Address: 0 MID: MKM-003-00 Supported Write Speeds: 4x, 6x, 8x DVD±R DL Boundary Information: L0 Data Zone Capacity: 2,086,912 Changeable: Yes Physical Format Information (ADIP - L0): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (ADIP - L1): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (Last Recorded - L0): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (Last Recorded - L1): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Performance (Write Speed): Descriptor 1... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4173823 (0x003FAFFF) -> RS: 16,620 KB/s (12x) - WS: 5,540 KB/s (4x) Descriptor 2... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4173823 (0x003FAFFF) -> RS: 16,620 KB/s (12x) - WS: 8,310 KB/s (6x) Descriptor 3... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4173823 (0x003FAFFF) -> RS: 16,620 KB/s (12x) - WS: 11,080 KB/s (8x) Media Information (After): ATAPI iHAS422 8 4L18 (ATAPI) Current Profile: DVD+R DL Disc Information: Status: Empty State of Last Session: Empty Erasable: No Free Sectors: 4,267,040 Free Space: 8,738,897,920 bytes Free Time: 948:15:65 (MM:SS:FF) Next Writable Address: 0 MID: MKM-003-00 Supported Write Speeds: 4x, 6x, 8x DVD±R DL Boundary Information: L0 Data Zone Capacity: 2,133,520 Changeable: Yes Physical Format Information (ADIP - L0): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (ADIP - L1): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (Last Recorded - L0): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Physical Format Information (Last Recorded - L1): Disc ID: MKM-003-00 Book Type: DVD+R DL Part Version: 1 Disc Size: 120mm Maximum Read Rate: Not Specified Number of Layers: 2 Track Path: Opposite Track Path (OTP) Linear Density: 0.293 um/bit Track Density: 0.74 um/track First Physical Sector of Data Area: 196,608 Last Physical Sector of Data Area: 16,580,607 Last Physical Sector in Layer 0: 2,283,519 Performance (Write Speed): Descriptor 1... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4267039 (0x00411C1F) -> RS: 16,620 KB/s (12x) - WS: 5,540 KB/s (4x) Descriptor 2... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4267039 (0x00411C1F) -> RS: 16,620 KB/s (12x) - WS: 8,310 KB/s (6x) Descriptor 3... -> B0: 0x00, B1: 0x00, B2: 0x00, B3: 0x00 -> EL: 4267039 (0x00411C1F) -> RS: 16,620 KB/s (12x) - WS: 11,080 KB/s (8x) Results: I 20:04:21 ImgBurn Version 2.5.7.2 Beta started! I 20:04:21 Microsoft Windows 7 Ultimate x64 Edition (6.1, Build 7601 : Service Pack 1) I 20:04:21 Total Physical Memory: 16,760,108 KB - Available: 10,872,080 KB I 20:04:21 Initialising SPTI... I 20:04:21 Searching for SCSI / ATAPI devices... I 20:04:21 -> Drive 1 - Info: ATAPI iHAS422 8 4L18 (G:) (ATAPI) I 20:04:21 -> Drive 2 - Info: ATAPI iHAS624 B GL2A (M:) (ATAPI) I 20:04:22 -> Drive 3 - Info: HL-DT-ST BD-RE BH12LS38 1.01-D0 (N:) (ATAPI) I 20:04:22 -> Drive 4 - Info: Optiarc DVD RW AD-5280S 1.Z8 (P:) (ATAPI) I 20:04:22 -> Drive 5 - Info: PIONEER BD-RW BDR-207M 1.30 (O:) (ATAPI) I 20:04:22 -> Drive 6 - Info: DTSOFT BDROM 1.05 (Y:) (SCSI) I 20:04:22 -> Drive 7 - Info: DVDFab Virtual Drive 1.1 (W:) (SCSI) I 20:04:22 -> Drive 8 - Info: ELBY CLONEDRIVE 1.4 (V:) (SCSI) I 20:04:22 -> Drive 9 - Info: VXDV BD-HD-DVDRAM S15 10.0 (X:) (SCSI) I 20:04:22 Found 1 DVD±RW, 2 DVD±RW/RAMs, 1 BD-ROM, 2 BD-ROM/HD DVD-ROMs, 2 BD-REs and 1 BD-RE XL! I 20:04:37 Operation Started! I 20:04:37 Source File: -==/\/[DISCOVERY IMAGE]\/\==- I 20:04:37 Source File Sectors: 4,267,040 (MODE1/2048) I 20:04:37 Source File Size: 8,738,897,920 bytes I 20:04:37 Source File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 20:04:37 Source File Volume Set Identifier: 4267040_SECTORS I 20:04:37 Source File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 20:04:37 Source File Implementation Identifier: ImgBurn v2.5.8.0 I 20:04:37 Source File File System(s): ISO9660 I 20:04:37 Destination Device: [0:4:0] ATAPI iHAS422 8 4L18 (G:) (ATAPI) I 20:04:37 Destination Media Type: DVD+R DL (Disc ID: MKM-003-00) I 20:04:37 Destination Media Supported Write Speeds: 4x, 6x, 8x I 20:04:37 Destination Media Sectors: 4,267,040 I 20:04:37 Destination Media L0 Data Zone Capacity: 2,133,520 (Changeable: Yes) I 20:04:37 Write Mode: DVD I 20:04:37 Write Type: DAO I 20:04:37 Write Speed: 4x I 20:04:37 DVD+R DL Reserve Track: No I 20:04:37 Link Size: Auto I 20:04:37 Lock Volume: Yes I 20:04:37 Test Mode: No I 20:04:37 OPC: No I 20:04:37 BURN-Proof: Enabled I 20:04:37 Write Speed Successfully Set! - Effective: 5,540 KB/s (4x) I 20:04:37 Book Type Setting: DVD-ROM I 20:04:37 Advanced Settings - Force HT: No, Online HT: No, OverSpeed: No, SmartBurn: Yes I 20:04:37 CD/DVD Life Record Count: 50 - CD/DVD Record Count: 32 I 20:04:37 Optimal L0 Data Zone Capacity: 2,133,520 I 20:04:37 Optimal L0 Data Zone Method: ECC Block Boundary I 20:05:07 Set L0 Data Zone Capacity Succeeded! I 20:05:07 L0 Data Zone Capacity - Effective: 2,133,520 I 20:05:07 Filling Buffer... (80 MB) I 20:05:07 Writing LeadIn... I 20:05:08 Writing Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 20:05:08 Writing Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 20:05:08 Writing Layer 0... (LBA: 0 - 2133519) I 20:18:21 Writing Layer 1... (LBA: 2133520 - 4267039) I 20:31:34 Synchronising Cache... I 20:31:39 Closing Track... I 20:31:40 Finalising Disc... I 20:32:14 Exporting Graph Data... I 20:32:14 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS422_8_4L18_07-JANUARY-2013_20-04_MKM-003-00_4x.ibg I 20:32:14 Export Successfully Completed! I 20:32:14 Operation Successfully Completed! - Duration: 00:27:37 I 20:32:14 Average Write Rate: 5,384 KB/s (3.9x) - Maximum Write Rate: 5,585 KB/s (4.0x) I 20:32:14 Cycling Tray before Verify... W 20:32:20 Waiting for device to become ready... I 20:32:39 Device Ready! I 20:32:41 Operation Started! I 20:32:41 Source Device: [0:4:0] ATAPI iHAS422 8 4L18 (G:) (ATAPI) I 20:32:41 Source Media Type: DVD+R DL (Book Type: DVD-ROM) (Disc ID: MKM-003-00) I 20:32:41 Source Media Supported Read Speeds: 2.4x, 4x, 6x, 8x, 12x I 20:32:41 Source Media Supported Write Speeds: 4x, 6x, 8x I 20:32:41 Image File: -==/\/[DISCOVERY IMAGE]\/\==- I 20:32:41 Image File Sectors: 4,267,040 (MODE1/2048) I 20:32:41 Image File Size: 8,738,897,920 bytes I 20:32:41 Image File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 20:32:41 Image File Volume Set Identifier: 4267040_SECTORS I 20:32:41 Image File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 20:32:41 Image File Implementation Identifier: ImgBurn v2.5.8.0 I 20:32:41 Image File File System(s): ISO9660 I 20:32:41 Read Speed (Data/Audio): MAX / MAX W 20:38:49 Session 1, Track 1 is smaller on the disc than it is in the image file. W 20:38:49 Disc's Track Sectors: 4173824 (TOC Sectors: 4173824) W 20:38:49 Image File's Track Sectors: 4267040 (TOC Sectors: 4267040) I 20:38:49 Verifying Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 20:38:49 Verifying Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 20:38:49 Verifying Layer 0... (LBA: 0 - 2086911) I 20:44:59 Verifying Layer 1... (LBA: 2086912 - 4267039) I 20:51:02 Exporting Graph Data... I 20:51:02 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS422_8_4L18_07-JANUARY-2013_20-04_MKM-003-00_4x.ibg I 20:51:02 Export Successfully Completed! I 20:51:02 Operation Successfully Completed! - Duration: 00:18:20 I 20:51:02 Average Verify Rate: 11,658 KB/s (8.4x) - Maximum Verify Rate: 16,691 KB/s (12.1x) Scans: Results 2: I 21:02:06 ImgBurn Version 2.5.7.2 Beta started! I 21:02:06 Microsoft Windows 7 Ultimate x64 Edition (6.1, Build 7601 : Service Pack 1) I 21:02:06 Total Physical Memory: 16,760,108 KB - Available: 10,883,388 KB I 21:02:06 Initialising SPTI... I 21:02:06 Searching for SCSI / ATAPI devices... I 21:02:06 -> Drive 1 - Info: ATAPI iHAS422 8 4L18 (G:) (ATAPI) I 21:02:06 -> Drive 2 - Info: ATAPI iHAS624 B GL2A (M:) (ATAPI) I 21:02:06 -> Drive 3 - Info: HL-DT-ST BD-RE BH12LS38 1.01-D0 (N:) (ATAPI) I 21:02:07 -> Drive 4 - Info: Optiarc DVD RW AD-5280S 1.Z8 (P:) (ATAPI) I 21:02:07 -> Drive 5 - Info: PIONEER BD-RW BDR-207M 1.30 (O:) (ATAPI) I 21:02:07 -> Drive 6 - Info: DTSOFT BDROM 1.05 (Y:) (SCSI) I 21:02:07 -> Drive 7 - Info: DVDFab Virtual Drive 1.1 (W:) (SCSI) I 21:02:07 -> Drive 8 - Info: ELBY CLONEDRIVE 1.4 (V:) (SCSI) I 21:02:07 -> Drive 9 - Info: VXDV BD-HD-DVDRAM S15 10.0 (X:) (SCSI) I 21:02:07 Found 1 DVD±RW, 2 DVD±RW/RAMs, 1 BD-ROM, 2 BD-ROM/HD DVD-ROMs, 2 BD-REs and 1 BD-RE XL! I 21:02:14 Operation Started! I 21:02:14 Source File: -==/\/[DISCOVERY IMAGE]\/\==- I 21:02:14 Source File Sectors: 4,267,040 (MODE1/2048) I 21:02:14 Source File Size: 8,738,897,920 bytes I 21:02:14 Source File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 21:02:14 Source File Volume Set Identifier: 4267040_SECTORS I 21:02:14 Source File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 21:02:14 Source File Implementation Identifier: ImgBurn v2.5.8.0 I 21:02:14 Source File File System(s): ISO9660 I 21:02:14 Destination Device: [0:4:0] ATAPI iHAS422 8 4L18 (G:) (ATAPI) I 21:02:14 Destination Media Type: DVD+R DL (Disc ID: MKM-003-00) I 21:02:14 Destination Media Supported Write Speeds: 4x, 6x, 8x I 21:02:14 Destination Media Sectors: 4,267,040 I 21:02:14 Destination Media L0 Data Zone Capacity: 2,133,520 (Changeable: Yes) I 21:02:14 Write Mode: DVD I 21:02:14 Write Type: DAO I 21:02:14 Write Speed: 4x I 21:02:14 DVD+R DL Reserve Track: No I 21:02:14 Link Size: Auto I 21:02:14 Lock Volume: Yes I 21:02:14 Test Mode: No I 21:02:14 OPC: No I 21:02:14 BURN-Proof: Enabled I 21:02:14 Write Speed Successfully Set! - Effective: 5,540 KB/s (4x) I 21:02:14 Book Type Setting: DVD-ROM I 21:02:14 Advanced Settings - Force HT: Yes, Online HT: No, OverSpeed: No, SmartBurn: Yes I 21:02:14 CD/DVD Life Record Count: 51 - CD/DVD Record Count: 32 I 21:02:14 Optimal L0 Data Zone Capacity: 2,133,520 I 21:02:14 Optimal L0 Data Zone Method: ECC Block Boundary I 21:02:55 Set L0 Data Zone Capacity Succeeded! I 21:02:55 L0 Data Zone Capacity - Effective: 2,133,520 I 21:02:55 Filling Buffer... (80 MB) I 21:02:55 Writing LeadIn... I 21:02:56 Writing Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 21:02:56 Writing Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 21:02:56 Writing Layer 0... (LBA: 0 - 2133519) I 21:16:03 Writing Layer 1... (LBA: 2133520 - 4267039) I 21:29:12 Synchronising Cache... I 21:29:17 Closing Track... I 21:29:18 Finalising Disc... I 21:29:53 Exporting Graph Data... I 21:29:53 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS422_8_4L18_07-JANUARY-2013_21-02_MKM-003-00_4x.ibg I 21:29:53 Export Successfully Completed! I 21:29:53 Operation Successfully Completed! - Duration: 00:27:38 I 21:29:53 Average Write Rate: 5,418 KB/s (3.9x) - Maximum Write Rate: 5,598 KB/s (4.0x) I 21:29:53 Cycling Tray before Verify... W 21:29:59 Waiting for device to become ready... I 21:30:17 Device Ready! I 21:30:20 Operation Started! I 21:30:20 Source Device: [0:4:0] ATAPI iHAS422 8 4L18 (G:) (ATAPI) I 21:30:20 Source Media Type: DVD+R DL (Book Type: DVD-ROM) (Disc ID: MKM-003-00) I 21:30:20 Source Media Supported Read Speeds: 2.4x, 4x, 6x, 8x, 12x I 21:30:20 Source Media Supported Write Speeds: 4x, 6x, 8x I 21:30:20 Image File: -==/\/[DISCOVERY IMAGE]\/\==- I 21:30:20 Image File Sectors: 4,267,040 (MODE1/2048) I 21:30:20 Image File Size: 8,738,897,920 bytes I 21:30:20 Image File Volume Identifier: IMGBURN_DISCOVERY_IMAGE I 21:30:20 Image File Volume Set Identifier: 4267040_SECTORS I 21:30:20 Image File Application Identifier: IMGBURN V2.5.8.0 - THE ULTIMATE IMAGE BURNER! I 21:30:20 Image File Implementation Identifier: ImgBurn v2.5.8.0 I 21:30:20 Image File File System(s): ISO9660 I 21:30:20 Read Speed (Data/Audio): MAX / MAX W 21:31:32 Session 1, Track 1 is smaller on the disc than it is in the image file. W 21:31:33 Disc's Track Sectors: 4173824 (TOC Sectors: 4173824) W 21:31:33 Image File's Track Sectors: 4267040 (TOC Sectors: 4267040) I 21:31:33 Verifying Session 1 of 1... (1 Track, LBA: 0 - 4267039) I 21:31:33 Verifying Track 1 of 1... (MODE1/2048, LBA: 0 - 4267039) I 21:31:33 Verifying Layer 0... (LBA: 0 - 2086911) I 21:37:40 Verifying Layer 1... (LBA: 2086912 - 4267039) I 21:43:43 Exporting Graph Data... I 21:43:43 Graph Data File: C:\Users\Richard\AppData\Roaming\ImgBurn\Graph Data Files\ATAPI_iHAS422_8_4L18_07-JANUARY-2013_21-02_MKM-003-00_4x.ibg I 21:43:43 Export Successfully Completed! I 21:43:43 Operation Successfully Completed! - Duration: 00:13:22 I 21:43:43 Average Verify Rate: 11,706 KB/s (8.5x) - Maximum Verify Rate: 16,708 KB/s (12.1x) Scans 2: