Changes between Version 2 and Version 3 of VocalizationSynthesis


Ignore:
Timestamp:
09/01/10 16:34:23 (14 years ago)
Author:
sach01
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VocalizationSynthesis

    v2 v3  
    11 
    22== Synthesis of vocalizations using MARY TTS == 
     3 
     4   MARY supports synthesis of vocalizations with following MARYXML requests 
     5 
     6 
     7 '''1. Synthesis using a 'variant'''' 
     8 
     9 
     10 Example:  
     11 
     12  {{{ 
     13 <?xml version="1.0" encoding="UTF-8" ?> 
     14 <maryxml version="0.5" 
     15 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns=" http://mary.dfki.de/2002/MaryXML" xml:lang="en-GB"> 
     16 <voice name="dfki-poppy"> 
     17 <p> 
     18 <vocalization variant="13"/> 
     19 </p> 
     20 </voice> 
     21 </maryxml> 
     22  }}} 
     23 
     24 '''2. Synthesize a vocalization which fits better for given target'''  
     25 
     26 
     27 Example: 
     28 
     29  {{{ 
     30 <?xml version="1.0" encoding="UTF-8" ?> 
     31 <maryxml version="0.5" 
     32 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns=" http://mary.dfki.de/2002/MaryXML" xml:lang="en-GB"> 
     33 <voice name="dfki-poppy"> 
     34 <p> 
     35 <vocalization name="yeah" meaning="agreeing" intonation="falling" voicequality="breathy"/> 
     36 </p> 
     37 </voice> 
     38 </maryxml> 
     39  }}} 
     40 
     41