I see alot of people complaining about the gap that becomes between the loops of a mp3 file in DBP (and DBC i think).
The wave files is far to big to hold music, especially if it's more than a few minuttes.
But recently I found a work around with very little loss of quality:
a) Take you music and convert it to wave.
b) Open the wave file in the Sound Recorder (sndrec32.exe).
c) Double the sound speed with 100%.
d) "Save As..." a new filename with the following parameters:
44kHz
16bit
Mono
e) Then open DBPro and use the following code:
Sync On
Sync Rate 0
Load Sound "Whatever.wav",1
Set Sound Speed 22050
REM Sound Speed must be half of original sound speed (44100Hz)
Repeat
If Sound Playing(1)=0 Then Play Sound 1
Text 0,0,Str$(Screen FPS())
Sync
Until SpaceKey()=1
End
This should then slow down the wave file to normal speed, almost without any quality loss. Hope that helped some poor souls out there.