Forum Replies Created
-
AuthorPosts
-
June 25, 2019 at 9:19 am in reply to: App is Crashing after adding a new OpenEars framework #1032856SaatyagiParticipant
Hi Halle Winkler,
Thanks for the quick reply.
I have cross check the bundle ID for the new framework, both are same.
Is there any other solution I can try?
SaatyagiParticipantnp thanks for response.
SaatyagiParticipantand it’s for same application ..
SaatyagiParticipantHi,
I’ve purchased RapidEars licence for bundle id and now we’ve to change that bundle id for security reasons.
Can you help me understand if if can be changed from old to new one ?
SaatyagiParticipantand it’s not about callback
I want to change words array on the fly which is not happening right nowSaatyagiParticipantHey Thanks for the reply
but I already have that implemented :-class OpenEarsHelper: NSObject, OEEventsObserverDelegate, OEEventsObserverRapidEarsDelegate {
SaatyagiParticipantOpenEarsHelper.openEarsHelper.changeLanguageModel(wordsArray: RapidEarsCMDArrays.phoneticCommands, dictionaryName: RapidEarsCMDArrays.phoneticCmdDict)
Above is my calling method and
// Commands used on Fuel intent's Review Order Page static let phoneticCmdDict: String = "PhoneticCmdDict" static let phoneticCommands: [String] = ["Alpha", "Beta", "Charlie", "Delta", "Echo", "Foxtrot", "Golf", "Hotel", "India", "Juliett", "Kilo", "Lima", "Mike", "November", "Oscar", "Papa", "Quebec", "Romeo", "Sierra", "Tango", "Uniform", "Victor", "Whiskey", "X-ray", "Yankee","Zulu"]
is my dictionary and words array.
- This reply was modified 4 years, 9 months ago by Saatyagi.
November 20, 2018 at 12:45 pm in reply to: programatically start and stop openEars/RapidEars swift #1032597SaatyagiParticipantChange from one language model to another. This lets you change which words you are listening for depending on the context in your app. If you have already started the recognition loop and you want to switch to a different language model, you can use this and the model will be changed at the earliest opportunity. Will not have any effect unless recognition is already in progress. It isn’t possible to change acoustic models in the middle of an already-started listening loop, just language model and dictionary.
Swift 3: changeLanguageModel(toFile: String!, withDictionary: String!)This is what I got from Documentation. but I don’t see where to change set of words array in that.
November 20, 2018 at 10:01 am in reply to: programatically start and stop openEars/RapidEars swift #1032595SaatyagiParticipantIt worked. Thanks you.
Can you point me to the tutorial where you’ve shown how to change dictionary on the fly ?
for eg on landing page I’ve different dictionary and after navigation I need other one. how can I achieve that ?November 20, 2018 at 9:55 am in reply to: programatically start and stop openEars/RapidEars swift #1032594SaatyagiParticipantfunc stopOpenEars() { OEPocketsphinxController.sharedInstance()?.stopListening() }
I’ve tried above as well but it always starts again.
-
AuthorPosts