Page 1 of 1

Fmod isPlaying Questions!!!Please Help!!!

Posted: Fri May 23, 2014 4:00 am
by anthony091527
Hello everyone!I use Fmod in the Ogre. And I want to judge the sound file is finished playing! So i use the function named 'isPlaying' in the Fmod Library.But the function always return 'FMOD_ERR_INVALID_HANDLE'.Please help me! Thank you! I have the following code in step:

Code: Select all

int channelIndexTemp;
bool isPlaying;
FMOD_RESULT result;
FMOD::Channel *channel;
if (Channelndex)
    channelIndexTemp = *Channelndex;
float tempTime = GetSoundLength(channelIndexTemp);
result = system->getChannel(channelIndexTemp, &channel);
if (result == FMOD_OK)
    result = channel->isPlaying(&isPlaying);
The 'isPlaying' value is always 'false'.

Re: Fmod isPlaying Questions!!!Please Help!!!

Posted: Fri May 23, 2014 4:25 am
by c6burns
Sounds like an fmod problem, not an ogre one :D

Re: Fmod isPlaying Questions!!!Please Help!!!

Posted: Fri May 23, 2014 4:37 am
by anthony091527
c6burns wrote:Sounds like an fmod problem, not an ogre one :D
Yeah, i want to ask for someboby who used it for help.

Re: Fmod isPlaying Questions!!!Please Help!!!

Posted: Fri May 23, 2014 5:08 am
by c6burns
There's probably a few people who've used it hanging out here:
http://www.fmod.org/forum/

Re: Fmod isPlaying Questions!!!Please Help!!!

Posted: Fri May 23, 2014 6:34 am
by anthony091527
Thank you very much!