Custom sound mixing

Monkey Forums/Monkey Programming/Custom sound mixing

DomDom(Posted 2015) [#1]
Hi,

Is there a way to do a custom sound mixing (without modifying monkey/mojo source code) ? For example to create a mod or midi player.

Thanks

Dom


Derron(Posted 2015) [#2]
If you want to stay crossplatform and want to allow playback of mp3/ogg/longer sounds you need to modify the source code as you need the MediaPlayer for Android.

To allow crossfading I had to exchange an sfx channel with a music player one --- better would it be to add a "stream"-flag and the engine using the correct "playback tool" then.


bye
Ron


DomDom(Posted 2015) [#3]
Thx for the info.