Hi,
You could convert the music into a raw format like 22050hz 16-bit stereo and then stream it manually.
Open the file from nitrofs and create a stream:
file = fopen("somesong.raw","rb");
mm_stream mystream;
mystream.buffer_length = 1024;
mystream.callback = stream;
mystream.timerÂÂ=...