| 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 | |