I don't know about sectors but the following snippet shows you how you can play selected tracks from a CD Audio disk. This uses the native DBPro commands and no plug-ins.
The demo code plays tracks starting with Track 3. I'm sure you can tweak it if necessary.
I couldn't get the Enhanced Audio plug-in to work in the same way.
byte42 as byte
byte43 as byte
nTracks = get number of cd tracks()
for i = 3 to nTracks
track$ = "D:track"+space$(2-len(str$(i)))+str$(i)+".cda"
if mid$(track$, 8)=" " then track$ = left$(track$, 7)+"0"+right$(track$, 5)
print "trying to open file ", track$
open to read 1, track$
skip bytes 1, 41
read byte 1, byte42
read byte 1, byte43
close file 1
duration = 1000 * (byte42 + 60 * byte43) + 100 ` milliseconds plus a bit just in case
load cdmusic i, 1
play music 1
timeNext = timer() + duration ` stop in duration milliseconds
while timer() < timeNext
set cursor 20, 20
print "playing track ", i, " duration = ", byte43, " minutes,", byte42, " seconds"
endwhile
stop music 1
delete music 1
wait 100
cls
next i
end
Thanks for raising this question - I've learnt something useful by working on it.