dvd-burning

How to burn video DVD from c#? [closed]

醉酒当歌 提交于 2019-12-29 08:02:14
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 6 years ago . 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 burn it to DVD

SDK for writing DVD's [closed]

无人久伴 提交于 2019-12-06 12:48:05
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I need to add DVD writing functionality to an application I'm working on. However it needs to be able to write out files that are being grabbed "live" from a camera, over a long period of time. I can't wait until all the files are captured before I start writing them to the DVD, I need to write them out in chunks

SDK for writing DVD's [closed]

寵の児 提交于 2019-12-04 22:01:48
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I need to add DVD writing functionality to an application I'm working on. However it needs to be able to write out files that are being grabbed "live" from a camera, over a long period of time. I can't wait until all the files are captured before I start writing them to the DVD, I need to write them out in chunks as I go along. I've looked at IMAPI v2 , but the main problems seems to be that you need to point it

How to burn video DVD from c#? [closed]

淺唱寂寞╮ 提交于 2019-11-29 11:48:22
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 burn it to DVD? IMAPI2? SharpRecorder is a library for burning CDs and DVDs with C#. http://code.google.com/p/sharprecorder/ im looking for a library too, but so far going to the IMAPI is the best thing so far, bwgburn is an application, there is also LetitBurn, wich uses the libburn library wich is for C++ 来源: https://stackoverflow.com/questions/1441227/how-to-burn-video-dvd-from-c

Reading and Writing to a DVD/CD - Java [closed]

孤街醉人 提交于 2019-11-28 09:19:07
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. I've done this using COM4J and IMAPI (works on Windows only). This sample code burns an ISO file using the first CD recording device in the system: File isoFile = new File("myimage.iso"); IDiscMaster2 dm = ClassFactory.createMsftDiscMaster2(); int count = dm.count(); //Pick the first recorder on the system String recorderUniqueId = null; for (int i = 0; i < count; i++) { String cur = dm.item(i); recorderUniqueId =

Reading and Writing to a DVD/CD - Java [closed]

情到浓时终转凉″ 提交于 2019-11-27 02:49:47
问题 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: I've done this using COM4J and IMAPI (works on Windows only). This sample code burns an ISO file using the first CD recording device in the system: File isoFile = new File("myimage.iso"); IDiscMaster2 dm = ClassFactory.createMsftDiscMaster2(); int count = dm.count(); //Pick the first recorder on the system