Amazon Web Services PollyおよびAWS SDK for C#を使用してテキストを音声変換しようとしています。Amazon Pollyテキストから音声への変換時にゼロバイトオーディオストリームを受信
何が欠けています:私は、オーディオストリームが空であるしかしHTTP 200 OK
応答(例外がスローされません)を受信
AmazonPollyClient client = new AmazonPollyClient("secret", "secret", Amazon.RegionEndpoint.USEast1);
Amazon.Polly.Model.SynthesizeSpeechRequest request = new SynthesizeSpeechRequest();
request.OutputFormat = OutputFormat.Mp3;
request.Text = "This is my first conversion";
request.TextType = TextType.Text;
request.VoiceId = VoiceId.Nicole;
Amazon.Polly.Model.SynthesizeSpeechResponse response = client.SynthesizeSpeech(request);
:私は非常に基本的な変換をしようとしましたか?