No. By it's nature Track-At-Once process one track at a time. So you just need to call burning function in the loop. Something like this:
for ( int i = 0; i < 10; i++ )
{
StarBurn_CdvdBurnerGrabber_TrackAtOnceFromFile( file[ i ], ... );
}
You can burn not only ISO file but WAV (or any supported sound file) in this mode. Just make sure last call to the burning function closes the session (quite a lot of stand-alone hardware players would refuse to play opened disc).
Thanks!
abs wrote:
Can TrackAtOnceFromFile burn audio cd from a list of difference files(not a file tree )
like mp3/wav per time?
If it is possible plz give me example about Parameter:
IN PCHAR p__PCHAR__ISOSoundImagePathAndFileName
I see your example just burn a iso file to CD/DVD
thank you.