speech recognition - How to recognize arabic cultutre in c# -
i developing software recognize arabic language application not able recognize arabic. using following code recognize cultures installed in system, it’s giving 'en-us' , 'en-gb', although have installed arabic language in windows 7
thread.currentthread.currentculture = new cultureinfo("ar-sa"); foreach (recognizerinfo config in speechrecognitionengine.installedrecognizers()) { if (config.culture.tostring() == preferredculture) { speechrecognitionengine = new speechrecognitionengine(config); break; } }
my question how add arabic culture in application without changing windows language english arabic; want retain windows language english commonly understood.
microsoft doesn't ship arabic sr engine any windows release. far know, there no sapi-compatible arabic sr engine available. sorry.
Comments
Post a Comment