cd-burning

What are some common C libraries in Linux to use a CD burning device? [closed]

随声附和 提交于 2020-05-14 11:27:51
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I am interested in creating software that uses a CD burning device. I will be writing this code in C under Linux and compiling using GCC. 回答1: libburn as the name suggests ;) (and other friend-libraries from the same site). It's used in brasero (GNOME), xfburn (xfce) and cdw. And well,

What are some common C libraries in Linux to use a CD burning device? [closed]

你。 提交于 2020-05-14 11:26:22
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I am interested in creating software that uses a CD burning device. I will be writing this code in C under Linux and compiling using GCC. 回答1: libburn as the name suggests ;) (and other friend-libraries from the same site). It's used in brasero (GNOME), xfburn (xfce) and cdw. And well,

How do I call ICDBurn::GetRecorderDriveLetter() in VS2008 C++? (Solving XP CD write to root)

萝らか妹 提交于 2019-12-25 03:16:01
问题 I am trying to implement the solution given in GetSaveFileName() not returning path of CD burning staging area on XP I'm trying to implement this in VS2008 C++. The ICDBurn::GetRecorderDriveLetter() method is not static and thus cannot be called as written ( ICDBurn::GetRecorderDriveLetter ) in the above answer. ICDBurn can't be instantiated because it's an abstract class. How do I call ICDBurn::GetRecorderDriveLetter() from C++? 回答1: You need to create the COM object first. ICDBurn* pICDBurn

IMAPI2 in VB 2008 progress bar

假装没事ソ 提交于 2019-12-24 11:44:37
问题 I start making program that will burn CD/DVDs, and everything is okay. I found way to burn with IMAPI2 API, but now I have problem: I can't get progress bar of that burning. Here is code: Dim CDD1 As New IMAPI2.MsftDiscMaster2 Dim CDD2 As New IMAPI2.MsftDiscRecorder2 Dim FSI As New IMAPI2FS.MsftFileSystemImage Dim CDD3 As New IMAPI2.MsftDiscFormat2Data Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim Index = 0 Dim UniqueID = ""

Write to a CD from .Net [closed]

浪子不回头ぞ 提交于 2019-12-18 09:28:13
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . Is there an easy way to write to a CD from .Net? How about creating a multisession CD that autoruns an executable that writes to itself? 回答1: You can do this via the ICDBurn interface. See this article for details. 回答2: IMAPI is what you want. There are .net wrappers, but I've never used any of them. 回答3: IMAPI2

Burn setup project to CD

筅森魡賤 提交于 2019-12-11 06:16:10
问题 I've never burnt a visual studio program to a CD before. I've made a setup project with all my program files, and it works fine. Do I simply need to burn the following installer files onto the CD and give it to someone? The installer is a folder containing: -DotNetFX35 (Folder): Contains .net requirements for my program. -WIndowsInstaller3_1 (Folder): WindowsInstaller-KB893803-v2-x86.exe -setup.exe -My Installer.msi Sorry for the seemingly easy question. I'm double checking as I have one CD

Burn files to CD using c#

青春壹個敷衍的年華 提交于 2019-12-01 17:46:27
问题 I am writing a program that downloads images to the hard drive and then I want to burn the folders that those are all divided up into, on a cd. I don't want to create and image to burn, I just want to take all those folders and files and burn them to disc just like they are on the hard drive. Anyone know of a way to do this in C#? I am using Windows 7 and Visual Studio 2008. 回答1: IMAPI2 - version 2 of the IMAPI API - is native to Windows 7 and is the preferred interface. http://msdn.microsoft

Write to a CD from .Net [closed]

我们两清 提交于 2019-11-29 16:47:23
Is there an easy way to write to a CD from .Net? How about creating a multisession CD that autoruns an executable that writes to itself? You can do this via the ICDBurn interface . See this article for details . IMAPI is what you want. There are .net wrappers , but I've never used any of them . IMAPI2. In short, no, there is no easy way to write to a CD from within .NET. Burning and Erasing CD/DVD/Blu-ray Media with C# and IMAPI2 @ codeproject.com 来源: https://stackoverflow.com/questions/799867/write-to-a-cd-from-net

Windows CD Burning API

戏子无情 提交于 2019-11-29 01:48:12
We need to programatically burn files to CD in a C\C++ Windows XP/Vista application we are developing using Borlands Turbo C++. What is the simplest and best way to do this? We would prefer a native windows API (that doesnt rely on MFC) so as not to rely on any third party software/drivers if one is available. We used the following: Store files in the directory returned by GetBurnPath, then write using Burn. GetCDRecordableInfo is used to check when the CD is ready. #include <stdio.h> #include <imapi.h> #include <windows.h> struct MEDIAINFO { BYTE nSessions; BYTE nLastTrack; ULONG

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 =