Hey there!
For a couple of time, I am trying to write a small program that does nothing than playing three .ogg files 100 % synchronized. Since it seems it is not possible, I wonder if I can use a multichannel ogg ( three active channels ), and change the volume of the channels to fade between the actual songs?
I want to use this to make it possible to fade in / out additional instrument tracks.
I tried the following simple code :
music1.OpenFromFile("mansion-present-hihat.ogg");
music2.OpenFromFile("mansion-present-hihat.ogg");
music3.OpenFromFile("mansion-present-hihat.ogg");
music1.Play();
music2.Play();
music3.Play();
I also tried to add the folowing :
music1.SetPlayingOffset(0);
music2.SetPlayingOffset(music1.GetPlayingOffset());
music3.SetPlayingOffset(music2.GetPlayingOffset());
Any Ideas?
Sincerly,
Spellbreaker.
[/code]