How to use Speech Recognition inside the iOS SDK? [closed]

There are many libraries availble. You can use any of them. openears // This is the best library VocalKit (Deprecated for open ears) TTS ispeech (Not free) Hope it helps you. NOTE: if you download openears (which contains a sample project called “OpenEarsSampleApp”) @efimovD mentions this Check the code in view controller and you will … Read more

iOS Text To Speech Api

Since iOS 7 you have a new TTS Api. In Objective C AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer alloc]init]; AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:@”Some text”]; [utterance setRate:0.2f]; [synthesizer speakUtterance:utterance]; In Swift let synthesizer = AVSpeechSynthesizer() let utterance = AVSpeechUtterance(string: “Some text”) utterance.rate = 0.2 synthesizer.speak(utterance) You can also change the voice like this : utterance.voice = AVSpeechSynthesisVoice(language: … Read more