Reputation: 10172
I have implemented voice recognition in my application for voice to text conversion using Nuance Dragon SDK. I have also tried Open Ears but couldn't get it to work properly. Once conversion is completed I use that text as command to trigger action in my application.
I am wondering if using Sirikit we can do it within application. I was not able to understand it while checking the WWDC16 Sirikit Introduction. May be my interpretation of the intent is not clear but as for as I understood, there's no custom intent to trigger some action inside the application.
Plus is sirikit available for objective C as well or just Swift?
Upvotes: 1
Views: 3177
Reputation: 20237
SiriKit is for integrating with Siri outside of the context of your application. However, Apple did releases a Speech Recognition API for iOS 10 as well that sounds more like what you want. You can learn more about it here: https://developer.apple.com/videos/play/wwdc2016/509/
All Apple Frameworks are usable by Objective-C and Swift.
Upvotes: 4