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

前端 未结 1 492
孤街浪徒
孤街浪徒 2021-01-27 13:12

More or less what the title says. I wish to create a lexicon of greek text to speech so I can make my language for SpeechSynthesizer. Where can I find a template of some kind??

相关标签:
1条回答
  • 2021-01-27 14:03

    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)

    0 讨论(0)
提交回复
热议问题