Go Back   Club CDFreaks - Knowledge is Power > International Chat: Software related > Nero SDK Discussion Forum


Commercial message



Nero SDK Discussion Forum Discuss, Multisession DVD at International Chat: Software related forum; I am just finishing Backup on CDs and now i would like to do it on DVD. Can some one pleas give some general instructions how to burn multisession DVD, and what are the difrences in compare with mulltisession CD. I am using NeroCOM


Reply
 
Thread Tools
Old 17-03-2005   #1 (permalink)
CD Freaks Junior Member
 
Join Date: Jan 2005
Posts: 73
Multisession DVD

I am just finishing Backup on CDs and now i would like to do it on DVD.

Can some one pleas give some general instructions how to burn multisession DVD, and what are the difrences in compare with mulltisession CD.

I am using NeroCOM
gapilazo is offline   Reply With Quote
Old 17-03-2005   #2 (permalink)
CD Freaks Junior Member
 
Join Date: Jan 2005
Posts: 73
Re: Multisession DVD

I downloaded Nero Burning ROM 6.6.0.8 but is demo.

I dont get no CDInfo2 function.
and CDInfo object does not have MediumFlags property.

What version do i need to burn multisession DVD.
gapilazo is offline   Reply With Quote
Old 17-03-2005   #3 (permalink)
Nero Developer
 
Join Date: Oct 2003
Posts: 605
There is neither a CDInfo2 function nor a CDInfo object. You have got things mixed up. You call a CDInfo fuction and wait for a OnDoneCDInfo event. The event handler provides you with a INeroCDInfo interface pointer which gives you access to NeroCDInfo object. If you got the proper library version (Nero version), you will also be able to access INeroCDInfo2 interface pointer which allows you access to the properties you seek.

If using a higher level language such as C# or VB, this should happen automatically and transparently as you normally never work with interface pointers directly.
alexp is offline   Reply With Quote
Old 18-03-2005   #4 (permalink)
CD Freaks Junior Member
 
Join Date: Jan 2005
Posts: 73
Re: Multisession DVD

Thenx alexp

I wulld still like to ask about the version.
I downloaded Nero Burning ROM 6.6.0.8 but is demo.
Is theat ok?

I cant access INeroCDInfo2. Maybe i dont have the right version or i do not know how?
gapilazo is offline   Reply With Quote
Old 18-03-2005   #5 (permalink)
Nero Developer
 
Join Date: Oct 2003
Posts: 605
Nero being a demo does not hurt your ability to use NeroCOM.

In what way can't you access INeroCDInfo2? Do you get any run-time error or what? You should have NeroCOM file version 1.3.1.2. If you have it, something else must be wrong.
alexp is offline   Reply With Quote
Old 18-03-2005   #6 (permalink)
CD Freaks Junior Member
 
Join Date: Jan 2005
Posts: 73
Re: Multisession DVD

if i change
private void drive_OnDoneCDInfo(INeroCDInfo pCDInfo)
to
private void drive_OnDoneCDInfo(INeroCDInfo2 pCDInfo)

i get next error
Method 'MDocBeckup.fBackupNaCD.drive_OnDoneCDInfo(NEROLib.INeroCDInfo2)' does not match delegate 'void NEROLib._INeroDriveEvents_OnDoneCDInfoEventHandler(NEROLib.INeroCDInfo)'

if i change allso
drive.OnDoneCDInfo+=new _INeroDriveEvents_OnDoneCDInfoEventHandler(drive_OnDoneCDInfo);

to

drive.OnDoneCDInfo+=new _INeroDriveEvents_OnDoneCDInfoEventHandler(drive_OnDoneCDInfo2);


i get next error
The name 'drive_OnDoneCDInfo2' does not exist in the class or namespace 'MDocBeckup.fBackupNaCD'

i am using c#
gapilazo is offline   Reply With Quote
Old 18-03-2005   #7 (permalink)
Nero Developer
 
Join Date: Oct 2003
Posts: 605
Quote:
if i change
private void drive_OnDoneCDInfo(INeroCDInfo pCDInfo)
to
private void drive_OnDoneCDInfo(INeroCDInfo2 pCDInfo)
Why change the event declaration? This hasn't changed. You should leave everything as before but change the body of the event handler instead.

For instance, you could have the following code at the beginning of the handler:
Code:
NeroCDInfo cdInfo = (NeroCDInfo) pCDInfo;
In the code that follows, just use cdInfo in place of pCDInfo. This way you transparently access all interface pointer extensions, including INeroCDInfo2 in this particular case.

Quote:
drive.OnDoneCDInfo+=new _INeroDriveEvents_OnDoneCDInfoEventHandler(drive_OnDoneCDInfo2);
You can't do this either. There is no OnDoneCDInfo2 event!
alexp is offline   Reply With Quote
Old 05-04-2005   #8 (permalink)
CD Freaks Junior Member
 
Join Date: Jan 2005
Posts: 73
Re: Multisession DVD

I found this in some other thread.

Quote:
There is a MediumFlags property on NeroCDInfo object. You should see if flag NCDIMF_VIRTUALMULTISESSION is set. If so, you can use GetVMSInfo() method on NeroDrive object. This will give you a NeroVMSInfo object which you can query for VMS sessions. If you now want to import a VMS session, you should call ImportIsoTrack() on a NeroDrive but be sure to include NERO_IMPORT_VMS_SESSION flag as TrackNumber will then be interpreted as a VMS session.
I now call cdInfo end get NeroCDInfo object.
i set cdInfo.MediumFlags.
i get NeroVMSInfo object with GetVMSInfo() method .

Now i don't know what exactly to do with NeroVMSInfo object
Some healp pleas
gapilazo is offline   Reply With Quote
Old 05-04-2005   #9 (permalink)
Nero Developer
 
Join Date: Oct 2003
Posts: 605
NeroVMSInfo object provides you with info about possible virtual sessions of a DVD+-RW disc. If you want to write a multisession disc, you must examine this object and choose which session you would like to import, if any. If you decide to import, make sure to use NERO_IMPORT_VMS_SESSION flag. This changes the meaning of TrackNumber to be a sequence number of a VMS session.
alexp is offline   Reply With Quote
Old 06-04-2005   #10 (permalink)
CD Freaks Junior Member
 
Join Date: Jan 2005
Posts: 73
Re: Multisession DVD

What dou you meen with
This changes the meaning of TrackNumber to be a sequence number of a VMS session?

what should i use for TrackNumber?
NeroVMSInfoObject.count() this maybe?
gapilazo is offline   Reply With Quote
Old 06-04-2005   #11 (permalink)
Nero Developer
 
Join Date: Oct 2003
Posts: 605
When the flag NERO_IMPORT_VMS_SESSION is present, the track number is treated as a virtual multisession number. To make it even simpler... if you omit it, the track number should be a sequence number of tracks as returned by GetCDInfo(). If the flag is present, it should be a sequence number of the tracks as returned by GetVMSInfo().
alexp is offline   Reply With Quote
Old 06-04-2005   #12 (permalink)
CD Freaks Junior Member
 
Join Date: Jan 2005
Posts: 73
Re: Multisession DVD

I corected the mistakes but it still dosn't work for multisession.
It works for first session but not for secend.
i get NERO_WAITCD_EMPTYCD error.
Disc is not empty error?

my cdInfo.MediumFlags is set on NCDIMF_VIRTUALMULTISESSION

then i call

NeroVMSInfo v = drive.GetVMSInfo();
drive.ImportIsoTrack(v.Count-1,NERO_IMPORT_ISO_TRACK_FLAGS.NERO_IMPORT_VMS_SESSION);

and before burning seems like all is OK but then i get error.
maybe i have some wrong flags or something.
Here i will upload my code if you could pleas hellp me.
it's short.

I start burning on method
private void button2_Click(object sender, System.EventArgs e)
Attached Files
File Type: txt DVDBurn.txt (7.1 KB, 73 views)
gapilazo is offline   Reply With Quote
Old 11-04-2005   #13 (permalink)
CD Freaks Junior Member
 
Join Date: Jan 2005
Posts: 73
Re: Multisession DVD

anyone

Pleas !!!
gapilazo is offline   Reply With Quote
Old 13-04-2005   #14 (permalink)
CD Freaks Junior Member
 
Join Date: Jan 2005
Posts: 73
Re: Multisession DVD

I found the trick by the help of the thread posted by Randolpho.

it seems theat If you want to burn multisession DVDs you have to pass CDStamp allso
in secend and higher sessions.
gapilazo is offline   Reply With Quote
Old 05-08-2005   #15 (permalink)
New on Forum
 
Join Date: Aug 2005
Posts: 1
Re: Multisession DVD

Sorry to bother you folks.
But where did this MS discussion start? I am sooo interested in doing multisession dvd's but I'm a newbie. What are the steps in Nero Burning to create a MS DVD? And to continue a MS DVD? Is there somebody who can explain this in plain and simple English?
effie2 is offline   Reply With Quote
 
Reply


If you can't find where you are looking for, then become a member and get an answer fast! We have thousands of people online every moment of the day to help you! Click here



Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
dvd multisession help please julietech Burning Software 7 06-03-2008 09:49
can't burn a multisession dvd unkle stu Nero & InCD 0 22-09-2005 06:51
multisession DVD romgohan General Software 1 15-01-2005 12:19
DVD and Multisession dolfin97 Nero SDK Discussion Forum 0 21-05-2004 15:08
multisession dvd bozampa Video Edit Software 1 03-04-2002 02:32


All times are GMT +2. The time now is 20:25.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0