What is a good dvd burning component for Windows or .Net?

前端 未结 4 528
闹比i
闹比i 2021-02-09 05:46

I\'d like to add dvd burning functionality to my .Net app (running on Windows Server 2003), are there any good components available? I\'ve used the NeroCOM sdk that used to com

4条回答
  •  长情又很酷
    2021-02-09 06:18

    My cdrecord method did support dvd burning, I just looked over the code, and boy did I forget how much time and effort I put into that class.

    cdrecord has no problem burning just about any type of media you throw at it, but since it is a stand alone application, I had to do a lot of parsing to get useful information. I can dig up the flags and different calls I used if you are interested, but unfortunately I cannot share the source as it was developed for a commercial project.

    While looking over the code I was also reminded that I switched form cdrecord (cdrtools) to wodim (cdrkit). wodim is a branch of cdrecord made a few years ago by the debian team because cdrecord dropped the GPL license.

    Like I said before this was released as part of a commercial application, our interpretation of the GPL was that you can call external binaries from your program without a problem as long as your program can run without the external binaries (if cdrecord wasn't found we popped up a dialog informing the user that burning capabilities were not available) and we also had to host the source for cdrkit and cygwin and include a copy of the GPL with our distributed program. So basically we would not make "derivative works", we would compile the cdrkit code exactly as it was, and then use the produced binaries.

    As far as StarBurn SDK, I demoed it, but I didn't use it for a shipped product so I can't really give a recommendation or say much more than it does work

提交回复
热议问题