Reply To: Delay pocketsphinxDidDetectSpeech

Home Forums OpenEars Delay pocketsphinxDidDetectSpeech Reply To: Delay pocketsphinxDidDetectSpeech

#15084
kelvin
Participant

I’ve added #import to my view controller.

And when i input this
[AudioSessionManager sharedAudioSessionManager].soundMixing = TRUE;

the error shows
Property ‘soundMixing’ not found on object of type ‘id’

so i did this instead
[[AudioSessionManager sharedAudioSessionManager]setSoundMixing:YES];

and added this for vibration
AudioServicesPlayAlertSound(kSystemSoundID_Vibrate);
to – (void) fliteDidFinishSpeaking

but it didn’t vibrate on the device.