Changes between Version 4 and Version 5 of ProsodySpecificationSupport


Ignore:
Timestamp:
09/01/10 17:35:48 (14 years ago)
Author:
sach01
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ProsodySpecificationSupport

    v4 v5  
    5454 </maryxml> 
    5555 }}} 
     56 
     57 
     58 '''1. Adjusting Pitch level''' 
     59 
     60 Example 1:  
     61  
     62  {{{ 
     63 <?xml version="1.0" encoding="UTF-8" ?> 
     64 <maryxml version="0.4" 
     65  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     66  xmlns=" http://mary.dfki.de/2002/MaryXML" 
     67  xml:lang="en-US"> 
     68   <p> 
     69    <prosody pitch="low"> 
     70      I am now speaking with 3/4 pitch. 
     71    </prosody> 
     72   </p> 
     73 </maryxml> 
     74 }}} 
     75 
     76 Example 2: 
     77 
     78  {{{ 
     79 <?xml version="1.0" encoding="UTF-8" ?> 
     80 <maryxml version="0.4" 
     81  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     82  xmlns=" http://mary.dfki.de/2002/MaryXML" 
     83  xml:lang="en-US"> 
     84   <p> 
     85    <prosody pitch="-5st"> 
     86     This is five semitones lower. 
     87    </prosody> 
     88   </p> 
     89 </maryxml> 
     90 }}} 
     91