Hi
In my application I burn DVD-Video discs.
Everything works fine, except the writting Lead-Out take a lot of time (2-5 minutes).
Is there a way reducing this time?
Here is the code: (C#):
NeroFileSystemDescContainer DiskFileSystem=new NeroFileSystemDescContainer();
DiskFileSystem.BurnOptions=NERO_BURN_OPTIONS.NERO_BURN_OPTION_CREATE_UDF_FS|
NERO_BURN_OPTIONS.NERO_BURN_OPTION_CREATE_ISO_FS|NERO_BURN_OPTIONS.NERO_BURN_OPTION_RELAX_JOLIET|NERO_BURN_OPTIONS.NERO_BURN_OPTION_DVDVIDEO_CMPT;
CurrentDrive.BurnFileSystemContent(DiskFileSystem,NERO_BURN_FLAGS.NERO_BURN_FLAG_WRITE,0,NERO_MEDIA_TYPE.NERO_MEDIA_DVD_ANY);
Thanks in advance
Guy