使用SAPI进行LoadDictation

时间:2010-03-19 06:31:43

标签: speech-recognition sapi

我可以使用听写资源工具包或here给出的指示来创建备用听写语法。我无法用c ++加载新的听写主题。我试图修改sapi5.1 sdk提供的simpledict示例。以下不起作用。

 std::wstring stemp = s2ws("grammar:dictation#Genre");  
    LPCWSTR mygrammar = stemp.c_str();
    hr = m_cpDictationGrammar->LoadDictation(mygrammar, SPLO_STATIC);

1 个答案:

答案 0 :(得分:1)

假设您的新听写语言模型被命名为“Genre”,

hr = m_cpDictationGrammar->LoadDictation(L"Genre", SPLO_STATIC);

应该这样做。