Hi,
We support a custom audio format in our software and sometimes we would like to allow to burn an Audio CD.
So, today, we convert each track and once done we burn all the tracks on the CD.
It is expensive in Hard Disc because we have up to 20 tracks of 7 MB = 140 Mb ! Yes, 140 Mb of hard disc is required today.
So, I would like to know if it is possible to do something like this, to progressively burn the tracks.
_audioBurner.Tracks.Clear();
_audioBurner.StartBurning();
foreach(Song song in songs)
{
CDA cda = ConvertToCDA(song);
_audioBurner.BurnFile(cda.Path);
File.Delete(cda.Path);
}
_audioBurner.EndBurning();
Thanks for your help
|