CD/DVD burning component

D

dmeglio

Hello,

I'm wondering if anyone out there is aware of any .NET CD/DVD burning
component. I'm really just interested in burning files to CD/DVD do I
don't care about MP3/MPEG-2 support or anything like that. What I
basically need is the ability to put files and folders onto the CD/
DVD. Ideally it would work on IOStreams so that I could do it all in
memory with MemoryStream's.

Some of the things I would like but are not necessary:
1.) The ability to set the disc's volume name
2.) HD DVD/BluRay support
3.) The ability to erase a CD-RW or DVD+/-RW
4.) The ability to get progress as the burn process progresses (so I
can use progress bars and such)

My price point for this component is roughlyy $200-$250

Thanks!
 
N

Nicholas Paldino [.NET/C# MVP]

dmeglio,

If you are willing to do some work, you can save yourself the $200-$500
dollars. You can access the IMAPI interfaces in Windows XP and above (and
Windows Server 2003 and above) through the COM interop layer.

You will have to do some work to get your bytes in the MemoryStream
pushed out through an IStorage COM interface, but I don't see why it isn't
possible.

Here is the reference for IMAPI

http://msdn2.microsoft.com/en-us/library/aa366450.aspx

vbAccelerator.com even has a managed wrapper for the IMAPI interface
already which you can use:

http://www.vbaccelerator.com/home/NET/Code/Libraries/Writing_CDs/IMAPI/article.asp
 
D

dmeglio

IMAPI only supports CD, not DVD. Furthermore, I tried using it, it
seems broken. My CD-RW was detected as a CD-R (the drive, not the
disc). Therefore, Erase would not work. Windows itself recognizes that
I have a CD-RW, but not the IMAPI stuff...

In response to the other poster about StarBurn, their site confuses me
with the "shareware" limitation. It says to read the EULA for the
restrictions. When I look at the EULA it says "contact us for the
restrictions" I don't want to agree to a license that basically says
"it doesn't have to be in writing we can say whatever we want." Just
seems a bit shady to me....

dmeglio,

If you are willing to do some work, you can save yourself the $200-$500
dollars. You can access the IMAPI interfaces in Windows XP and above (and
Windows Server 2003 and above) through the COM interop layer.

You will have to do some work to get your bytes in the MemoryStream
pushed out through an IStorage COM interface, but I don't see why it isn't
possible.

Here is the reference for IMAPI

http://msdn2.microsoft.com/en-us/library/aa366450.aspx

vbAccelerator.com even has a managed wrapper for the IMAPI interface
already which you can use:

http://www.vbaccelerator.com/home/NET/Code/Libraries/Writing_CDs/IMAP...

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)




I'm wondering if anyone out there is aware of any .NET CD/DVD burning
component. I'm really just interested in burning files to CD/DVD do I
don't care about MP3/MPEG-2 support or anything like that. What I
basically need is the ability to put files and folders onto the CD/
DVD. Ideally it would work on IOStreams so that I could do it all in
memory with MemoryStream's.
Some of the things I would like but are not necessary:
1.) The ability to set the disc's volume name
2.) HD DVD/BluRay support
3.) The ability to erase a CD-RW or DVD+/-RW
4.) The ability to get progress as the burn process progresses (so I
can use progress bars and such)
My price point for this component is roughlyy $200-$250
Thanks!- Hide quoted text -

- Show quoted text -
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

XP Burning BD and HD DVD's 2
Windows XP troubles with burning cd and dvd 2
CD-R Burn 1
DVD/CD drive reads but won't burn. 5
DVD+R vs DVD+RW 3
cant burn cd or dvd in vista home premium 3
Problem burning CD-R 7
Burning ISOs with C# 1

Top