-
Posts
30,521 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by LIGHTNING UK!
-
ConnectFilters(Source, Sample Grabber)Failed!
LIGHTNING UK! replied to JolietJake's topic in ImgBurn Support
FLAC 1.2.1b is a GUI and command line util, it's not a DirectShow filter. Download and install the 'madFlac' DirectShow filter. http://forum.doom9.org/showthread.php?t=130498 http://madshi.net/madFlac.rar -
Could you please examine the ISO in IsoBuster and look at the LBA of the bootimage and compare it to the actual isolinux\isolinux.bin file on the disc. They *should* both be the same!
-
The track names you see in media player are from it looking at all the track lengths and comparing them to a database online. Obviously it won't find a proper match for any custom compilations you've done, and I'm not sure how much 'give' there is in the track times if a disc has been converted to mp3 format and then back again to proper CD Audio (CD-DA). Lossy conversions (of which MP3 is one) change the length of tracks ever so slightly. Some of the more advanced (but still freeware) players will probably read cd-text. The only one I've actually seen in it myself is Nero ShowTime which comes as part of the Nero burning suite.
-
Do you have a player that actually reads cd-text? Media Player doesn't.
-
Can you also please keep an eye on/make note of exactly what's written in the statusbar when your machine hangs. Thanks.
-
If it's getting stuck on a command and nothing is being logged, press F8 to enable I/O debug mode and capture it that way - I assume you can reproduce it easily so it shouldn't take long.
-
Ask Google (and Google Groups), it'll have most, if not all of the answers.
-
NSIS based installers are forever falsely getting picked up as viruses, it just means the AV people haven't gotten round to tweaking their definitions after a new version was released (in this case, NSIS 2.38).
-
Don't worry, I have absolutely no intention of changing anything to do with the progress bars.
-
For people updating their translation to v1.0.0.5.... You need to redo frmSettings - number 11. frmMain - number 479 and 485
-
All those registry entries (apart from Drive.CDROM) are checked by default - and it's always been that way. Are you sure you haven't uninstalled powerdvd or anything?! Each context menu entry is its own unique registry key. Adding another one doesn't touch existing ones. The 'Drive' entry you want to change to 'DVD RW' is an internal windows name, you can't change it and you wouldn't want to. I don't believe there is any problem here. If your powerdvd has mucked up you could just reinstall it to fix the issue.
-
That would be in the pregap of a track (index 0) - players always start from index 1. You wouldn't generally make your own compilation like that, it seems a bit pointless! If you have an original disc with a track in the pregap (and that's normally only before Track 1) then it'll be captured just fine using Read mode. Within the CUE file, where you'd normally see something like: FILE "normal track.wav" WAVE TRACK 01 AUDIO INDEX 01 00:00:00 You'd then have something like: FILE "hidden track.wav" WAVE TRACK 01 AUDIO INDEX 00 00:00:00 FILE "normal track.wav" WAVE INDEX 01 03:32:00 So the 'hidden' bit of audio lasts 3 mins 32 seconds or whatever. Please note that the syntax there might be wrong!
-
Nope the CDB's are pretty straight forward. It's all explained and broken down with the MMC docs. Byte 0 in the CDB is always the command operation code - i.e. where you tell it you want to Read a sector or write to one. and then maybe bytes 3 - 6 will be the LBA address of where to read from / write to. and bytes 8 - 9 will be the number of sectors to read. (that's simplified but you get the idea) Yes you can test CDB's with DVDInfoPro if you like. I'm sure you'll find it's more fun to code your own functions though. There are 3 ways to enumerate really. Go by the drive letters, go by the CdRom class or use the SetupDi functions. ImgBurn can use either of the first 2. Yes an ISO is created by reading a sector from the disc and writing it out to a file, moving onto the next sector and repeating the process. It's a 1:1 copy of the disc. So when you burn you read the first sectors worth of data from the image and then write it to the appropriate lba on the disc.
-
Start by looking at the mmc command specs document and then all you really need to do is figure out how to enumerate the drives and send a command to them - this is done via the functions CreateFile and DeviceIoControl (with the parameter 'SCSI_PASS_THROUGH_DIRECT'). Microsoft have a few basic examples of how to communicate with drives. You just have to swap out the MMC commands they issue for the ones you want to issue - and that's just a case of changing what's in the CDB (command descriptor block).
-
Windows picks its own order for these things, all I do is add a context menu entry depending on the options in the settings - on the 'Registry' tab.
-
Oh and I noticed from your other thread that your Pioneer Bluray drive is the IDE model but showing as SCSI. I assume that means it's not on a motherboard chipset port and instead on a 3rd party one? Well, it's that or the drivers just make it look like a SCSI device. Which motherboard is it connected to and which chipset is it running? (Intel, Nvidia etc) A lot of controllers don't like optical drives all that much and it's important that the bios for the motherboard/controller is kept up-to-date (much like the firmware on the drive!) and also the drivers. JMicron controllers are common on newer motherboards where legacy IDE controllers have been removed from the main chipset. (ICH8 onwards on Intel boards I believe) Updated drivers for the most common one can be found here: ftp://driver.jmicron.com.tw/jmb36x/Win2k_xp_Vista/
-
Before putting the disc in just press F8 to enable I/O debug mode. Then we'll be able to see which command the drive is having trouble processing via all the stuff in the log window - you can just copy & paste from it. When I/O gets stuck, it REALLY gets stuck. The only way out is to force a bus reset (which you need special software for) or to just reset / power off the machine.
-
The 'boot image' should point to the isolinux\isolinux.bin file in your file structure. The sectors to load should be 4. I'm not so sure you want 'Preserve Full Pathnames' enabled - that could prevent things from working correctly. If the folder & file 'isolinux\isolinux.bin' doesn't exist in the root of the image then no patching will take place. For testing without burning you can just build an ISO and try to boot it in vmware / some other virtual machine program (having mounted the image as a drive).
-
Burning R+DL Failure Invalid Address For Write
LIGHTNING UK! replied to larrym's topic in ImgBurn Support
All the drive is saying is that it can't write to the disc. The media might be fine in some drives, just not yours. Likewise, other media might be fine in your drive, just not that one. If you're going to change one of the variables, it's got to be the discs first as Verbatims are just better - full stop. -
It's got exactly the same file hash as the ImgBurn.com mirror one - so basically it's 100% fine.
-
2.4.2.0 ? The file must be exactly as I describe in the changelog though.
-
As usual, you can download it and view the changelog by visiting the main website. http://www.imgburn.com/ Special 'Thanks' to all the beta testers, translators and donors!
-
Burning R+DL Failure Invalid Address For Write
LIGHTNING UK! replied to larrym's topic in ImgBurn Support
Your drive is probably not very good a burning that media. You *might* have more luck with it at 4x rather than 'MAX'. If possible, try looking for a firmware update for the drive on the website of whoever made your PC. If all else fails (and I'd actually recommend you do this anyway), switch to some better DL discs. Verbatim 2.4x DVD+R DL (MKM-001-00 dye) are the ones to go for. -
creating audio cd from flac with embedded cue file
LIGHTNING UK! replied to soylentgreen's topic in ImgBurn Support
Auto doesn't really exist in the way you think it does... 'AUTO' just means that the program uses whatever speed you've configured in the 'Automatic Write Speed' feature. There's a guide to explain what it does and how to use it. -
You've already made your mind up so lets just leave it at that. Stick to using a different program if ImgBurn doesn't work on your system. It's free so it's not as if you've lost anything.