Google Text To Speech API 返回某些语言的重复数据
我正在使用 iPhone 应用程序的文本到语音转换 API。
当我传递文本时,它会响应播放相同文本的音频数据。
这对于英语来说效果很好。
但是当我尝试发送一个法语单词作为请求时。它以音频响应,重复相同的单词 3 到 4 次。
可能出什么问题了?
I am using text to speech conversion API for iphone app.
When I pass on a text it responds with the audio data which plays the same text.
This works fine for english language.
But when I try and send a french word in request. It responds with an audio which repeats the same word 3 to 4 times.
What could be wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我发送到服务器的数据编码的问题。
实际上法语有一些需要编码的字符。因此,使用 UTF8Encoding 对这些字符串进行编码就可以了。
希望这对某人有帮助。 :)
It was an issue with the encoding of the data that I sent to the server.
Actually french language had some characters which needed to be encoded. So encoding those strings with UTF8Encoding did the trick.
Hope this helps someone. :)