cddvd

How can I burn CD/DVD from delphi2007 win32

匆匆过客 提交于 2019-11-30 13:14:44
Is there any good lib to enable me to burn CD/DVD from Delphi 2007 win32 ? Thanks I know of a couple: Bayden's Delphi CD Burning Library Dance Mammal's Free Delphi CD Burning Library Zyl Burner for Delphi (Needs Nero to be installed). We are using Magic CD/DVD Burner VCL and are quite happy with it. Binary Magic is also making a bunch of related products (Bluray burning, .NET version, audio burning ...) so be sure to check out their products page. EDIT: My fellow codeveloper informed me that we have problems with Magic CD/DVD Burner and newer DVD writers and that it's impossible to get any

How can I burn CD/DVD from delphi2007 win32

 ̄綄美尐妖づ 提交于 2019-11-29 18:45:43
问题 Is there any good lib to enable me to burn CD/DVD from Delphi 2007 win32 ? Thanks 回答1: I know of a couple: Bayden's Delphi CD Burning Library Dance Mammal's Free Delphi CD Burning Library Zyl Burner for Delphi (Needs Nero to be installed). 回答2: We are using Magic CD/DVD Burner VCL and are quite happy with it. Binary Magic is also making a bunch of related products (Bluray burning, .NET version, audio burning ...) so be sure to check out their products page. EDIT: My fellow codeveloper

Reading and Writing to a DVD/CD - Java [closed]

孤街醉人 提交于 2019-11-28 09:19:07
I'm working on a application called LMCT(Let Me Copy That) and it is programed in Java, I just need to know how to burn to a DVD/CD from java. any example, API or link is welcome. I've done this using COM4J and IMAPI (works on Windows only). This sample code burns an ISO file using the first CD recording device in the system: File isoFile = new File("myimage.iso"); IDiscMaster2 dm = ClassFactory.createMsftDiscMaster2(); int count = dm.count(); //Pick the first recorder on the system String recorderUniqueId = null; for (int i = 0; i < count; i++) { String cur = dm.item(i); recorderUniqueId =

Reading and Writing to a DVD/CD - Java [closed]

情到浓时终转凉″ 提交于 2019-11-27 02:49:47
问题 I'm working on a application called LMCT(Let Me Copy That) and it is programed in Java, I just need to know how to burn to a DVD/CD from java. any example, API or link is welcome. 回答1: I've done this using COM4J and IMAPI (works on Windows only). This sample code burns an ISO file using the first CD recording device in the system: File isoFile = new File("myimage.iso"); IDiscMaster2 dm = ClassFactory.createMsftDiscMaster2(); int count = dm.count(); //Pick the first recorder on the system