#1 Burning Software

It is currently Thu Dec 19, 2024 9:43 am

All times are UTC




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: Writing to DVD-RW, DVD+R problems
PostPosted: Thu Jul 05, 2007 10:48 am 
Offline

Joined: Fri Jun 22, 2007 9:48 am
Posts: 7
Hello,

1. I write data to non empty DVD-RW with OCX IDevice.TrackAtOnceFromFileSystemHandle() method. Burning is done sucessfuly, but after it i can read from disc only last written data.

I try to import data by executing IDevice.ImportTrack(jolietImage, true, discInfo.TrackNumber - 1), but it takes no effect. [(discInfo.TrackNumber - 1) equals 0, because DWD-RW disc has 1 track always]

What should i do to save previous disc data?

2. I write data to DVD+R with iDevice.TrackAtOnceFromFileSystemHandle() method(previous track imported in case IDiscInfo.Track number more than 1). Burning completed, than disk ejected and loaded agian. But i can't read any data from disc. It looks like empty disc. Only after second disc ejecting and loading i can read data from disc.
Is it problem of my burning device?
(I have Optiarc DVD RW AD-7173A)

Thanks You,
Alexey


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jul 05, 2007 11:06 am 
Offline

Joined: Fri Jun 22, 2007 9:48 am
Posts: 7
2. I forgot that it happens if i set NextSessionAllowed to false.


Top
 Profile  
 
 Post subject: Re: Writing to DVD-RW, DVD+R problems
PostPosted: Fri Jul 06, 2007 11:58 am 
Offline

Joined: Fri Jan 26, 2007 4:31 pm
Posts: 452
Alexey wrote:
Hello,

1. I write data to non empty DVD-RW with OCX IDevice.TrackAtOnceFromFileSystemHandle() method. Burning is done sucessfuly, but after it i can read from disc only last written data.

I try to import data by executing IDevice.ImportTrack(jolietImage, true, discInfo.TrackNumber - 1), but it takes no effect. [(discInfo.TrackNumber - 1) equals 0, because DWD-RW disc has 1 track always]

What should i do to save previous disc data?

2. I write data to DVD+R with iDevice.TrackAtOnceFromFileSystemHandle() method(previous track imported in case IDiscInfo.Track number more than 1). Burning completed, than disk ejected and loaded agian. But i can't read any data from disc. It looks like empty disc. Only after second disc ejecting and loading i can read data from disc.
Is it problem of my burning device?
(I have Optiarc DVD RW AD-7173A)

Thanks You,
Alexey


Hi Alexey,

You are right DVD-RW media type have one data track, but begin tracks numerate from 1.

For import last track try to use code something like that:

Code:
//
// Import track
//            
if(DiscInfo.TrackNumber > 0)             
{                
   Device.ImportTrack(
                                 JolietImage,
                                 true,
                                 (ushort)(DiscInfo.TrackNumber)
                                );   
}

//
//Adding new files in to joliet tree
//   
//...

//
//Build image
//
JolietImage.Build((uint)DiscInfo.NextWritableAddress, "Test", "");


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 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