Tagged Questions
6
votes
2answers
141 views
CD Burning within an XBAP
Hi
I have an XBAP that needs to be able to burn cd's. When running from inside Visual Studio, everything works okay. However when running from a browser, the IMAPI dll reports that the environment is ...
4
votes
2answers
2k views
How to burn video DVD from c#?
I need to burn video dvd from my web cam in C# application?
What is the right way to do it?
What are required steps?
I guess I must create image with right folder structure and MPEG2 video and then ...
2
votes
1answer
362 views
How to detect media type in a CD/DVD drive without IMAPI in a C# application?
I can easily get the media type of an inserted writable medium by using IMAPI methods in C#. Unfortunately, these methods do not work when I have a readonly medium. I would like to learn a way to ...
1
vote
1answer
163 views
IMAPI2 Error on Windows XP
We have developed application for CD/DVD burning. The Application uses microsoft IMAPI2. It works without any problem on Windows 7.
On XP, We rebuilt the application on Windows XP and we received ...
1
vote
0answers
172 views
Writing DVD-RAM disks with IMAPI 2.0 on XP
I have an application that writes to CD/DVD. On Windows 7, everything works fine. However, on XP I have an issue writing to Dual Layer. It looks like it writes and closes fine, but when I open the DVD ...
1
vote
0answers
180 views
Is it possible to choose cd-writing mode in IMAPI interface?
I am using IMAPIv2 to burn CD/DVDs in my C# project. I realized that the interface burns in XA-format (Mode 2). I believe XA-format is mainly used for ISOs. A lot of examples about IMAPIv2 on the web ...
1
vote
2answers
113 views
CD burning…Debug works,Published doesnt
I am working on a program to burn a CD. Its located on a server but to my knowledge when it is ran it is pulled to that users computer, then ran.
My problem is it runs in debug and after I publish ...
1
vote
1answer
680 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
...
0
votes
1answer
81 views
IMAPI2 How to burn an already created iso
I have read hackchina and codeproject examples but it seems i can not figure out how to burn an existing .iso file. The examples above show ways of making an .iso from a folder and then burning it. i ...
0
votes
1answer
34 views
IMAPI2 How to to associate the UniqueID with the drive letter
I have the following code:
foreach (string uniqueRecorderID in discMaster)
{
MsftDiscRecorder2 discRecorder2 = new MsftDiscRecorder2();
...
0
votes
0answers
87 views
Using IMAPI to Burn CD-TEXT Audio CDs (Dotnet)
I was struggling for a long time to attend this objective.
This article http://www.codeproject.com/KB/audio-video/audio_cd.aspx was very helpful helping me understand what IMAPI can do.
I want to be ...
0
votes
1answer
354 views
MsftDiscFormat2Data Event Handler
I have successfully integrated IMAPI2 using Interop.cs into my application. I can burn CD/DVDs without any problem. However, the event handler for MsftDiscFormat2Data update does not work, so I can't ...