#1 Burning Software

It is currently Fri Dec 20, 2024 10:19 am

All times are UTC




Post new topic Reply to topic  [ 15 posts ] 
Author Message
 Post subject: Addition of many files are extremely slow
PostPosted: Tue Oct 28, 2008 9:18 pm 
Offline

Joined: Thu Sep 18, 2008 6:21 pm
Posts: 8
We need to burn many files (10-20 ths) in one folder on a cd. It borrows a lot of time - after 2 hrs we kill the burner application. Addition is realized with IDataFolder.AddFile.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Oct 29, 2008 12:18 pm 
Offline

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

Yes,this is the known problem, we are trying now to improve this process!!


Regards,

Dmitry


Top
 Profile  
 
 Post subject:
PostPosted: Wed Oct 29, 2008 1:56 pm 
Offline

Joined: Thu Sep 18, 2008 6:21 pm
Posts: 8
Ok, for a time we will use some workarounds. Thank you for the answer.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Oct 29, 2008 2:03 pm 
Offline

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

1) We plan to release the new version of StarBurnX in the mid of the november.

2) I suppose that UDFDataBurner will add files quickly.

Regards,

Dmitry


Top
 Profile  
 
 Post subject:
PostPosted: Wed Oct 29, 2008 4:04 pm 
Offline

Joined: Thu Sep 18, 2008 6:21 pm
Posts: 8
We have changed burber to UDFDataBurner. It's not usefull for us, because UDF can't create multisession.

Waiting for fix...


Top
 Profile  
 
 Post subject:
PostPosted: Wed Oct 29, 2008 5:14 pm 
Offline
Site Admin

Joined: Fri Jun 18, 2004 12:03 am
Posts: 4089
Location: British Virgin Islands
It can now. Wait for V10.5 to be released or drop us a message to support@rocketdivision.com and we'll give you access to new binaries. They are already gold and we don't plan to change them before release.

Dm Bel wrote:
We have changed burber to UDFDataBurner. It's not usefull for us, because UDF can't create multisession.

Waiting for fix...


Top
 Profile  
 
 Post subject:
PostPosted: Mon Dec 29, 2008 3:30 pm 
Offline

Joined: Thu Sep 18, 2008 6:21 pm
Posts: 8
We have made some new tests with the StarBurn SDK V10.5 Tomahawk.

Library: StarburnX V10.5.
Media: DVD-R.
Number of files to write: 15500.
Waiting time: 1.5h. After 1.5 hour we have killed the application.
CPU usage: about 100% of one of two hted cores.

Code which we use for the files adding:

Code:
   TmpFile := DataFolder.AddFile(DataFile.SourceFile);
   if (DataFile.DestFileName <> '') and
    (UpperCase(TmpFile.Name) <> UpperCase(DataFile.DestFileName)) then
    TmpFile.Name := DataFile.DestFileName;


All files are added into the one folder - DataFolder: IDataFolder.

At time no any visible progress with speed up of the files adding.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Dec 29, 2008 3:44 pm 
Offline

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

Hmm ... ok, we will test it!!

Thanx

Dmitry Bortsov

Rocket Division Software


Top
 Profile  
 
 Post subject:
PostPosted: Mon Dec 29, 2008 6:11 pm 
Offline
Site Admin

Joined: Fri Jun 18, 2004 12:03 am
Posts: 4089
Location: British Virgin Islands
This means collisions were not turned OFF. If there's no progress...


Top
 Profile  
 
 Post subject:
PostPosted: Tue Dec 30, 2008 10:12 am 
Offline

Joined: Thu Sep 18, 2008 6:21 pm
Posts: 8
Thank you Anton for your quick answer.

How we can turn off the name collision detection in StarBurnX? There is no any mention in documentation and samples about this.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 05, 2009 10:39 am 
Offline

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

1) If you want to add the existing folder you don't need to manually add all nested files/folders :). DataBurner don't raise event OnProgress when you add the single file!!!! The OnProgress event will be raised in case when you add the existing folder!!!

2) You can't turn off the name collision detection in current version of StarBurnX. You should handle the OnCollision event in order to skip the conflicted file/folder.

3) Are you still using the DadaBurner? We have added the ImportTrack function into UDFDataBurner.

Regards,

Dmitry Bortsov

Rocket Division Software


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 05, 2009 12:07 pm 
Offline

Joined: Thu Sep 18, 2008 6:21 pm
Posts: 8
>If you want to add the existing folder you don't need to manually add all nested files/folders.

I know that, and use in some other cases. In the case where I have issue, files have to be burned on dvd from many folders. And name of the files have to be changed from original names on hard disk.

>You can't turn off the name collision detection in current version of StarBurnX. You should handle the OnCollision event in order to skip the conflicted file/folder.

OK, I will try to handle the OnCollision event.

>Are you still using the DadaBurner? We have added the ImportTrack function into UDFDataBurner.

Yes, I use the DadaBurner now. I will try to use UDFDataBurner again.

Thank you for answer.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jan 07, 2009 11:09 am 
Offline
Site Admin

Joined: Fri Jun 18, 2004 12:03 am
Posts: 4089
Location: British Virgin Islands
Yes, please keep us updated. Thank you!


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jan 08, 2009 6:05 pm 
Offline

Joined: Thu Sep 18, 2008 6:21 pm
Posts: 8
I have try to handle the OnCollision event. It's no any collisions.
And try of using the UDFDataBurner instead of the DadaBurner. The UDFDataBurner successfully imported previous UDF session but have no seccues with ISO session.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jan 08, 2009 7:23 pm 
Offline
Site Admin

Joined: Fri Jun 18, 2004 12:03 am
Posts: 4089
Location: British Virgin Islands
OF COURSE

It's UDF file system so it should not import ISO9660/Joliet disc.

Dm Bel wrote:
I have try to handle the OnCollision event. It's no any collisions.
And try of using the UDFDataBurner instead of the DadaBurner. The UDFDataBurner successfully imported previous UDF session but have no seccues with ISO session.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 15 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 17 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:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group