#1 Burning Software

It is currently Sun Apr 28, 2024 6:38 pm

All times are UTC




Post new topic Reply to topic  [ 18 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: starburnX and multisession with UDF
PostPosted: Mon Mar 09, 2009 11:53 am 
Offline

Joined: Thu Jan 25, 2007 11:16 pm
Posts: 44
hi,
is it possible di burn a multisession UDF disc with starburnX v10.5 ?
I tried to make a test program. The UDFDataBurner class has the "ImportTrack" method, but when I call it I get the following error:

"UDF failed::StarBurnUDF2_ImpVolumeImport (..,..)", status 1117 (0x45d)

if not, is it possible to burn a multisession UDF disc with the C api (starburn.dll v10.0.0.4640)?

thanks in advance,
Massimo.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 09, 2009 2:06 pm 
Offline
Site Admin

Joined: Fri Jun 18, 2004 12:03 am
Posts: 4089
Location: British Virgin Islands
We'd love to see the log b/c this is I/O read error and it should not happen in general...

UDF append was represented after V10 was released.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 09, 2009 5:18 pm 
Offline

Joined: Thu Jan 25, 2007 11:16 pm
Posts: 44
Hi,
I've just sent an email with the logs to the support.

thanks,
Massimo


Top
 Profile  
 
 Post subject:
PostPosted: Wed Mar 11, 2009 7:55 am 
Offline

Joined: Thu Jan 25, 2007 11:16 pm
Posts: 44
Any news?

I'd like to know if (in general) it is possible to burn multisession UDF discs (blue-ray) with SBX 10.5 or if I have to wait for v11.

thanks


Top
 Profile  
 
 Post subject:
PostPosted: Thu Mar 12, 2009 5:29 pm 
Offline

Joined: Thu Dec 13, 2007 8:44 am
Posts: 609
Hello,

Massimo,

Yes, it is possible to burn a multisession UDF disc with StarBurnX v.10.5!!

You may download the latest version of StarBurnX.dll from our ftp site:

link was removed

Regards,

Dmitry Bortsov

Rocket Division Software


Top
 Profile  
 
 Post subject:
PostPosted: Sun Mar 29, 2009 10:03 am 
Offline

Joined: Thu Jan 25, 2007 11:16 pm
Posts: 44
This is my test code (I'm using starburnX 02202009_v11_Experimental):
I want to burn 3 different files in 3 different sessions.

Code:
        StarBurnX m_starBurnX = null;
        UDFDataBurner UDFBurn = null;

            try
            {               
                m_starBurnX = new StarBurnX();
                m_starBurnX.Initialize(string.Empty);

                UDFBurn = new UDFDataBurner();

                UDFBurn.NextSessionAllowed = true;
                UDFBurn.AddFile("d:\\e.mp3"); // then f.mp3, then g.mp3

                UDFBurn.Drive = m_starBurnX.Drives[0];

                while (UDFBurn.Drive.State != STARBURN_DRIVE_STATE.STARBURN_DRIVE_STATE_READY)
                    System.Threading.Thread.Sleep(1000);

                UDFBurn.Mode = STARBURN_WRITE_MODE.STARBURN_WRITE_MODE_AUTO;

                UDFBurn.WriteSpeed = UDFBurn.Drive.DriveInfo.MaxWriteSpeed;

                int sessionCount = UDFBurn.Drive.DiscInfo.Sessions.Count;

                if (sessionCount > 0)
                    UDFBurn.ImportTrack(-1);

                UDFBurn.Burn(false, "text");

                //UDFBurn.Verify();

                UDFBurn.Drive.Eject();
                System.Threading.Thread.Sleep(100);
                UDFBurn.Drive.Load();
            }
            catch (COMException ex)
            {
                MessageBox.Show(UDFBurn.LastError + Environment.NewLine +
                                m_starBurnX.LastError + Environment.NewLine +
                                ex.ToString());
            }
            finally
            {
                m_starBurnX.Uninitialize();
            }


the line:
Code:
       UDFBurn.ImportTrack(-1);

never works!

This works for 2 sessions only:
Code:
                if (sessionCount > 0)
                    UDFBurn.ImportTrack(sessionCount);


but when I add the third file I get only the first and the last file on the disc. And so on...only the first and the last burned.

Can you tell me what's wrong and suggest some code?

Thanks,
Massimo.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 30, 2009 7:44 am 
Offline

Joined: Thu Dec 13, 2007 8:44 am
Posts: 609
Hello,

Massimo, we will check it! Thanx!


Regards,

Dmitry Bortsov

Rocket Division Software


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 06, 2009 6:52 am 
Offline

Joined: Thu Jan 25, 2007 11:16 pm
Posts: 44
news?


Top
 Profile  
 
 Post subject:
PostPosted: Tue Apr 07, 2009 6:02 am 
Offline

Joined: Thu Dec 13, 2007 8:44 am
Posts: 609
Hello,

Massimo, this problem is not fixed yet ....

Regards,

Dmitry


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 29, 2009 5:29 pm 
Offline

Joined: Thu Dec 13, 2007 8:44 am
Posts: 609
Hello,

Massimo,

You can download new build of StarBurnX from our ftp:
link was removed

Note: we have splitted StarBurnX.dll to two files - StarBurnX.dll & StarBurn.dll. So ... now you should distribute these two files with your product. Only StarBurnX.dll should be registered!

Regards,

Dmitry Bortsov

Rocket Division Software


Top
 Profile  
 
 Post subject: Re: starburnX and multisession with UDF
PostPosted: Fri May 01, 2009 9:24 am 
Offline

Joined: Thu Jan 25, 2007 11:16 pm
Posts: 44
Great!
I made a quick test and it worked!

thanks,
Massimo


Top
 Profile  
 
 Post subject: Re: starburnX and multisession with UDF
PostPosted: Sun May 03, 2009 8:30 pm 
Offline
Site Admin

Joined: Fri Jun 18, 2004 12:03 am
Posts: 4089
Location: British Virgin Islands
Thank you for keeping us updated. Great it works for you :)


Top
 Profile  
 
 Post subject: Re: starburnX and multisession with UDF
PostPosted: Tue May 05, 2009 10:37 am 
Offline

Joined: Thu Jan 25, 2007 11:16 pm
Posts: 44
hello,
now some questions about StarBurnX internals:

1. Is buffer underrun protection always enabled if available?
2. When I set write speed, is automatically called OPC?
3. How big is default cache size?

Thanks,
Massimo


Top
 Profile  
 
 Post subject: Re: starburnX and multisession with UDF
PostPosted: Tue May 05, 2009 11:38 am 
Offline

Joined: Thu Dec 13, 2007 8:44 am
Posts: 609
Hello,

Massimo

1) Yes

2) Yes

3) Aprox 160 mb

Regards,

Dmitry Bortsov

Rocket Division Software


Top
 Profile  
 
 Post subject: Re: starburnX and multisession with UDF
PostPosted: Wed May 06, 2009 3:37 pm 
Offline

Joined: Thu Jan 25, 2007 11:16 pm
Posts: 44
hello,
I have some new questions:

1. For an empty disc, is LB size always 2048 bytes?

2. For a disc with data inside, can LB size change between sessions?

3. I've noticed that UDFDataBurner can burn sessions with 0 files. Does it create a session with an empty track or a session without tracks?

4. What does IDiscInfo.Refresh() do exactly? Does it dismount volume?

thanks,
Massimo


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 18 posts ]  Go to page 1, 2  Next

All times are UTC


Who is online

Users browsing this forum: No registered users and 20 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group