Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
137 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
2answers
153 views

Create ISO image using PowerShell: how to save IStream to file?

I want to create an ISO image, so a .iso file, on Windows. This is possible to do using COM component IMAPI2FS.MsftFileSystemImage, and I found instructions on how to do this using PowerShell in an ...
2
votes
1answer
350 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
37 views

PowerShell: how to convert a COM object to an .NET interop type?

As described in my question Create ISO image using PowerShell: how to save IStream to file?, in PowerShell I create an IStream object as follows: $is = (New-Object -ComObject ...
1
vote
0answers
83 views

Detect emptiness of DVD-RAM media on Windows 7 x64

I'm trying to detect if a DVD-RAM media is empty or not, with C++ on Windows. The simplest choice is to use IMAPI (version 2) - boilerplate code omitted: IMAPI_FORMAT2_DATA_MEDIA_STATE state; HRESULT ...
1
vote
1answer
140 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
1answer
197 views

VB.NET Mount ISO

I am looking for an API or something with the .NET Framework that would allow me to mount an ISO through code. Do you know of an API or any managed code that would allow me to mount an ISO?
1
vote
0answers
160 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
169 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
106 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
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
631 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
48 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
23 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
1answer
49 views

How can I write to a DVD with imapi2?

I want to make my application burn some data on DVD on Windows XP SP2. I'm trying to work with imapi2.dll and imapi2.h, but without success. I'm using C++ Builder 6.
0
votes
0answers
38 views

Directshow FileWriter save to DVD for Burning

I'm wondering what the process is to use the directshow filewriter to write to a dvd disk instead of the hard drive. I'm currently using IMAPI2 in .net to burn content however I'd like to now record ...
0
votes
1answer
109 views

IMAPI2 MsftFileSystemImage in .NET not releasing files when creating ISO

I succesfully create the iso image, but I get 'file in use' IO errors trying to delete files in the rootFolderPath after returning from calling this Create method. Am I missing a ...
0
votes
0answers
66 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
74 views

Disabling Message Box for IMAPI Components from INNO Setup

I am trying to install IMAPI components(KB932716) and also MS Feature Pack Two. I am trying to add these in a single package and build the installer using Inno Setup. When I run the set up. IMAPI ...
0
votes
1answer
117 views

setting the progressbar values for-loop a burning tools

I am implementing a CD/DVD burning tool by using IMAPI (Image Mastering API by Microsoft). I need to put a ProgressBar into the main screen to indicate user about the progress of writting process. I ...
0
votes
1answer
333 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 ...
0
votes
1answer
80 views

DVD writer sample needed in VC++

I am developing a new application which have to write data to DVD. Is it possible to do with IMAPI2. I read some help from MSDN but didnt get any startup material. Can u provide some nice sample or ...
0
votes
1answer
441 views

How to instantiate MsftRawCDImageCreator?

I'm trying to write a program in C++ that is able to burn an Audio CD without gaps between the tracks. From what I found, this has only recently been made possible using IMAPI, but should be possible ...
0
votes
1answer
222 views

Can IMAPI2 burn files with the size > 4Gb?

IMAPI2 interface IFileSystem uses COM IStream interfaces to represent file data. There is AddTree method that adds specified directory contents to IFileSystem. So AddTree must create IStream's in the ...