Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 iphone 应用程序使用文本到语音转换 API。
当我传递文本时,它会响应播放相同文本的音频数据。
这适用于英语。
但是当我尝试发送一个法语单词时。它以重复相同单词 3 到 4 次的音频响应。
有什么问题?
这是我发送到服务器的数据的编码问题。
实际上法语有一些字符需要编码。所以用 UTF8Encoding 对这些字符串进行编码就可以了。
希望这可以帮助某人。:)