我正在使用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;
}
但这不起作用。请帮我这样做。