Fmod isPlaying Questions!!!Please Help!!!

Get answers to all your basic programming questions. No Ogre questions, please!
Post Reply
anthony091527
Gnoblar
Posts: 3
Joined: Fri May 23, 2014 3:53 am

Fmod isPlaying Questions!!!Please Help!!!

Post 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'.
User avatar
c6burns
Beholder
Posts: 1512
Joined: Fri Feb 22, 2013 4:44 am
Location: Deep behind enemy lines
x 138

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

Post by c6burns »

Sounds like an fmod problem, not an ogre one :D
anthony091527
Gnoblar
Posts: 3
Joined: Fri May 23, 2014 3:53 am

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

Post 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.
User avatar
c6burns
Beholder
Posts: 1512
Joined: Fri Feb 22, 2013 4:44 am
Location: Deep behind enemy lines
x 138

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

Post by c6burns »

There's probably a few people who've used it hanging out here:
http://www.fmod.org/forum/
anthony091527
Gnoblar
Posts: 3
Joined: Fri May 23, 2014 3:53 am

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

Post by anthony091527 »

Thank you very much!
Post Reply