在Windows应用商店应用中播放Google TTS

时间:2013-06-12 19:34:07

标签: c# windows-8 text-to-speech

我正在使用C#为Windows 8做一个应用程序。在那个应用程序中,我有一个文本到语音部分。我目前正在使用bing翻译api,但我发现Google TTS api效率很高。我正在使用此代码

<MediaElement x:Name="medEle" AudioCategory="BackgroundCapableMedia"  Height="100" Width="100"/>

private void speakword(object sender, RoutedEventArgs e)
{
   prgrsRing_Copy.IsActive = true;

   string path = "http://translate.google.com/translate_tts?tl=en&q=Windows";
   medEle.Source = new Uri(path,UriKind.RelativeOrAbsolute);
   medEle.Play();
  prgrsRing_Copy.IsActive = false;
}

但这不起作用。请帮我这样做。

0 个答案:

没有答案