是否可以使用 SAPI 忽略Microsoft文本到语音转换中的单词



我正在使用Microsoft SAPI开发一个文本到语音转换应用程序。ISpVoice::Speak效果很好,但是一些特殊字符被大声说出来,不应该。这些口语字符是 (/, * _(

我发现可以创建规则,但只能使用语音识别(来源(。我想知道是否有可能在文本到语音转换中实现它。如果有帮助,这里有一些代码。

int ttsSpeak( const char* text ) //Text to Speech speaking function
{
   if( SUCCEEDED(hr) )
   {
      hr = SpEnumTokens( SPCAT_VOICES, NULL, NULL, &cpEnum );
      cpEnum->Item( saveVoice, &cpVoiceToken ); //get saveVoice token defined at line 136
      cpVoice->SetVoice( cpVoiceToken ); //Initialization of the voice
      int wchars_num = MultiByteToWideChar( CP_ACP, 0, text, -1, NULL, 0 );
      wchar_t* wstr = new wchar_t[ wchars_num ];
      MultiByteToWideChar( CP_ACP, 0, text, -1, wstr, wchars_num );
      //skip characters ( /, *, _ )
      printf( "Text To Speech processingn" );
      hr = cpVoice->Speak( wstr, SPF_DEFAULT, NULL );
      saveText = text;
      cpEnum.Release();
      cpVoiceToken.Release();
      delete new wchar_t[ wchars_num ];
   }
   else
   {
      printf( "Could not speak entered textn" );
   }
   return true;
}

是否可以跳过大声说出的字符?例如,我创建了一个 XML 文件,我可以在其中定义引擎可以说什么和不能说什么。

由于埃里克的评论,我设法解决了我的问题。如果在引擎朗读文本之前修改文本,则可以删除所需的字符。这是允许预处理文本的代码

  string strText( text ); //transform the const char* text into string
  string specialChars = "/*_"; //define the characters you want to skip
  string::iterator it; //declare iterator
  for( it = strText.begin(); it < strText.end(); it++ ) //loop through the sentence
  {
     bool found = specialChars.find( *it ) != string::npos;
     if( found )
     {
        *it = ' ';
     }
  }

相关内容

  • 没有找到相关文章

最新更新