Tagged Questions
The cd-burning tag has no wiki summary.
7
votes
6answers
4k views
Windows CD Burning API
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 ...
2
votes
2answers
481 views
Bluray Burner in Java - Where to start?
Like the subject of this post suggests, I am looking at developing a suite like nero which helps burn bluray discs. I am kind of clueless as to where to start. Is there anything in Java API that lets ...
1
vote
1answer
139 views
Reading and Writing to a DVD/CD - Java
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
vote
0answers
47 views
C# wrting/burning large wav file on Audio CD
I used this article to write Audio CD
Creating Audio CDs using IMAPI2
Following this article i can write Audio CD, but with smaller wav files (upto 30 min audio file)
And OutOfMemoryException is ...
1
vote
1answer
675 views
IMAPI2 in VB 2008 progress bar
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 ...
1
vote
1answer
519 views
Suggestions on how to burn cds programmatically [closed]
Possible Duplicate:
Write to a CD from .Net
I am writing an application in C# in which I need to burn a cd programmatically. I am on a bit of a time crunch and haven't had any luck finding ...
1
vote
1answer
630 views
Simple .NET CD/DVD burning component
There's a number of postings about IMAPI in .NET, including these:
http://www.codeproject.com/KB/miscctrl/imapi2.aspx
http://www.vbaccelerator.com/home/net/code/libraries/writing_cds/imapi/article.asp
...
1
vote
2answers
297 views
Creating a CD-burning feature for a music player based on Java
I'm trying to create a CD-burning feature for a Java-based music player for my school project. Since I'm new to real-life programming (I've only learned to write codes on AP Computer Science A level), ...
1
vote
1answer
234 views
Burning a CD programatically
How can I write something onto a CD using ANSI C working under Windows?
1
vote
1answer
466 views
Detect IMAPI 2.0
Is there a way to detect what version of IMAPI is installed on an XP or Vista machine? I'm starting to try to burn CDs from an application I'm writing and I'm just kinda lost. I understand that in ...
1
vote
5answers
156 views
Is it possible to write to a CD with .NET?
Possible Duplicate : Write to CD from .net
I have a data file in f:\ drive named 'cd.txt'.
I want to write this file to a CD i.e E:\.
String source ="F:\\cd.txt";
String destination="E:\\cd.txt";
...
1
vote
3answers
364 views
Write to a CD from .Net
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?
0
votes
1answer
17 views
storing linux files on DVDs
please let me know what the best CD / DVD filesystem to use for storing linux files
to clarify, i intend to:
retain permissions (especially execute permissions)
retain case sensitivity on filenames
...
0
votes
0answers
69 views
Cd/DVD Burner Application [closed]
I plan to write one CD/DVD burner by myself but I need to know how it really works. I found some open source DVDStyler which I can look into as how it works. But what would you suggest and Where can I ...
0
votes
1answer
44 views
How do I call ICDBurn::GetRecorderDriveLetter() in VS2008 C++? (Solving XP CD write to root)
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 ...
0
votes
1answer
475 views
Open Source CD Burning Software for Java : Need to create a plugin
Is there any Java open-source CD Writer software that also supports creation of custom plugins ? I need to create an application where before a CD is burnt, some validations are done on the Files that ...
0
votes
1answer
284 views
Burn setup project to CD
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 ...
0
votes
1answer
77 views
Options for CD burning libraries?
I'm looking to create a program that will burn an audio CD. Before diving in I was hoping to see a selection of libraries that will make writing the code to burn the audio easy to write. I don't care ...
0
votes
1answer
393 views
How would I write a virtual CD/DVD burner that would allow programs that burn to write to ISO?
I want to write an app that will allow a program like iTunes which normally will recognize a DVD/CD burner to recognize a virtual one and then write to it creating an ISO. I would guess to use ...
0
votes
1answer
428 views
Is there a cross-platform CD/DVD burning library or command-line app?
I'm looking for a cross-platform CD & DVD burning library. I'm not too particular about the language or framework a long as there are minimal dependencies and they are easily installable ...
0
votes
1answer
82 views
Handling HAL implementation: storage.cdrom.write_speeds
device.get('storage.cdrom.write_speeds')
This returns HAL list of ints, like:
[4284, 2342, 1202, 800]
How should these be handled, to recieve writing speed? Or better, how does one retrieve ...
0
votes
4answers
1k views
Handle leaking in WinAPI CreateFile?
CreateFile allocates 2(!!) handles and CloseHandle closes only one handle when trying to get the low-level access to cd-rom device. OS Windows XP SP3, 5 of 7 tested computers works the same.
When ...