I need help creating a lexicon for SpeechSynthesizer. A template of some kind so i can know how to create one

独自空忆成欢 提交于 2019-12-02 08:27:40

Here is a sample with only 1 word (blue).

<?xml version="1.0" encoding="UTF-8"?>

<lexicon version="1.0" 
      xmlns="http://www.w3.org/2005/01/pronunciation-lexicon"
      alphabet="x-microsoft-ups" xml:lang="en-US">


  <lexeme>
    <grapheme> blue </grapheme>
    <phoneme> B L I P </phoneme>
  </lexeme>

</lexicon>

this was taken from: MSDN - Click here for the full article. I would also suggesr reading Pronunciation Lexicon Reference (Microsoft.Speech)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!