Google翻訳mp3をサイトからダウンロードするにはどうすればよい"http://translate.google.com/translate_tts?tl=en&q=hello+world"
ですか?
私は次のコードを使用しています:
WebClient wc = new WebClient();
wc.Encoding = Encoding.UTF8;
wc.AllowReadStreamBuffering = true;
wc.OpenReadCompleted += WcOpenReadCompleted;
wc.OpenReadAsync(new Uri("http://translate.google.com/translate_tts?tl=en&q=hello+world", UriKind.Absolute));
void WcOpenReadCompleted(object sender, OpenReadCompletedEventArgs e)
{
}
読み取り完了で、私は取得してSystem.Net.WebException
います。
そのページからmp3ファイルを読み取るにはどうすればよいですか?
またはそのmp3ファイルを再生する方法はありますか?