help --- mod files instead of midi ?

Started by
1 comment, last by mojtaba_e 18 years, 4 months ago
dear friends, I wanna know that if i wanna change the tempo of the sound file during the game,if its possible,let me know if there is any music format in high quality that could be used in such a situation, thank you so much ,Mojtaba [Edited by - mojtaba_e on December 19, 2005 9:21:45 AM]
--Mojtaba--
Advertisement
I think thats possible for midi. What are you using to play it? If you are using the Windows Multimedia then try using midiStreamProperty() to set the tempo

MMRESULT void SetTempo(DWORD newTemp){   MIDIPROPTEMPO PropertyData;   PropertyData.cbStruct = sizeof(MIDIPROPTEMPO);   PropertyData.dwTempo = newTempo;   return midiStreamProperty(midiStream, &PropertyData, MIDIPROP_SET | MIDIPROP_TEMPO);}


I just made this up, isn't compiled so I don't know if there is any errors. If you are using directX i'm sorry but I havn't worked with it enough to know what to do. I assumed you were using C++.
Thanks SuperNerd,
I hope that i can use this code for my game.
--Mojtaba--

This topic is closed to new replies.

Advertisement