o
我正试图制作一个应用程序(仅适用于我自己),它会恰当地发出奇怪(幻想)的名字。 我找到了Chrome的TTS api和W3C的SpeechSynthesis API,但是在看到剩下的文字之前,Chrome似乎会删除所有SSML标签:
<?xml version="1.0"?>
<speak version="1.0" xmlns="http://www.w3.org/2001/10/synthesis"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2001/10/synthesis
http://www.w3.org/TR/speech-synthesis/synthesis.xsd"
xml:lang="en-US">
<!-- Phoneme representation is cut short to exaggerate problem -->
<phoneme alphabet="ipa" ph="təmei̥"> tomato </phoneme>
</speak>
如何让JSFiddle中的SSML在Chrome中正确发音?
仅供参考我正在运行Windows,因此我无法使用特定于mac的发音标记。
提前致谢!