home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Multimed / Multimed.zip / fest-141.zip / festival / lib / mrpa_phones.scm < prev    next >
Text File  |  1999-05-30  |  5KB  |  115 lines

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;;                                                                       ;;
  3. ;;                Centre for Speech Technology Research                  ;;
  4. ;;                     University of Edinburgh, UK                       ;;
  5. ;;                       Copyright (c) 1996,1997                         ;;
  6. ;;                        All Rights Reserved.                           ;;
  7. ;;                                                                       ;;
  8. ;;  Permission is hereby granted, free of charge, to use and distribute  ;;
  9. ;;  this software and its documentation without restriction, including   ;;
  10. ;;  without limitation the rights to use, copy, modify, merge, publish,  ;;
  11. ;;  distribute, sublicense, and/or sell copies of this work, and to      ;;
  12. ;;  permit persons to whom this work is furnished to do so, subject to   ;;
  13. ;;  the following conditions:                                            ;;
  14. ;;   1. The code must retain the above copyright notice, this list of    ;;
  15. ;;      conditions and the following disclaimer.                         ;;
  16. ;;   2. Any modifications must be clearly marked as such.                ;;
  17. ;;   3. Original authors' names are not deleted.                         ;;
  18. ;;   4. The authors' names are not used to endorse or promote products   ;;
  19. ;;      derived from this software without specific prior written        ;;
  20. ;;      permission.                                                      ;;
  21. ;;                                                                       ;;
  22. ;;  THE UNIVERSITY OF EDINBURGH AND THE CONTRIBUTORS TO THIS WORK        ;;
  23. ;;  DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING      ;;
  24. ;;  ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT   ;;
  25. ;;  SHALL THE UNIVERSITY OF EDINBURGH NOR THE CONTRIBUTORS BE LIABLE     ;;
  26. ;;  FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES    ;;
  27. ;;  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN   ;;
  28. ;;  AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,          ;;
  29. ;;  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF       ;;
  30. ;;  THIS SOFTWARE.                                                       ;;
  31. ;;                                                                       ;;
  32. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  33. ;;
  34. ;;  A definition of the mrpa phone set 
  35. ;;
  36.  
  37. (defPhoneSet
  38.   mrpa
  39.   ;;;  Phone Features
  40.   (;; vowel or consonant
  41.    (vc + -)  
  42.    ;; vowel length: short long dipthong schwa
  43.    (vlng s l d a 0)
  44.    ;; vowel height: high mid low
  45.    (vheight 1 2 3 0)
  46.    ;; vowel frontness: front mid back
  47.    (vfront 1 2 3 0)
  48.    ;; lip rounding
  49.    (vrnd + - 0)
  50.    ;; consonant type: stop fricative affricate nasal lateral approximant
  51.    (ctype s f a n l r 0)
  52.    ;; place of articulation: labial alveolar palatal labio-dental
  53.    ;;                         dental velar glottal
  54.    (cplace l a p b d v g 0)
  55.    ;; consonant voicing
  56.    (cvox + - 0)
  57.    )
  58.   ;; Phone set members
  59.   (
  60.    (uh  +   s   2   3   -   0   0   0)
  61.    (e   +   s   2   1   -   0   0   0)
  62.    (a   +   s   3   1   -   0   0   0)
  63.    (o   +   s   2   3   +   0   0   0)
  64.    (i   +   s   1   1   -   0   0   0)
  65.    (u   +   s   1   3   +   0   0   0)
  66.    (ii  +   l   1   1   -   0   0   0)
  67.    (uu  +   l   1   3   +   0   0   0)
  68.    (oo  +   l   3   3   +   0   0   0)
  69.    (aa  +   l   3   3   -   0   0   0)
  70.    (@@  +   l   2   2   -   0   0   0)
  71.    (ai  +   d   3   2   -   0   0   0)
  72.    (ei  +   d   2   1   -   0   0   0)
  73.    (oi  +   d   3   3   +   0   0   0)
  74.    (au  +   d   3   2   +   0   0   0)
  75.    (ou  +   d   2   2   -   0   0   0)
  76.    (e@  +   d   2   1   -   0   0   0)
  77.    (i@  +   d   1   1   -   0   0   0)
  78.    (u@  +   d   3   1   +   0   0   0)
  79.    (@   +   a   2   2   -   0   0   0)
  80.    (p   -   0   0   0   0   s   l   -)
  81.    (t   -   0   0   0   0   s   a   -)
  82.    (k   -   0   0   0   0   s   v   -)
  83.    (b   -   0   0   0   0   s   l   +)
  84.    (d   -   0   0   0   0   s   a   +)
  85.    (g   -   0   0   0   0   s   v   +)
  86.    (s   -   0   0   0   0   f   a   -)
  87.    (z   -   0   0   0   0   f   a   +)
  88.    (sh  -   0   0   0   0   f   p   -)
  89.    (zh  -   0   0   0   0   f   p   +)
  90.    (f   -   0   0   0   0   f   b   -)
  91.    (v   -   0   0   0   0   f   b   +)
  92.    (th  -   0   0   0   0   f   d   -)
  93.    (dh  -   0   0   0   0   f   d   +)
  94.    (ch  -   0   0   0   0   a   p   -)
  95.    (jh  -   0   0   0   0   a   p   +)
  96.    (h   -   0   0   0   0   f   g   -)
  97.    (m   -   0   0   0   0   n   l   +)
  98.    (n   -   0   0   0   0   n   a   +)
  99.    (ng  -   0   0   0   0   n   v   +)
  100.    (l   -   0   0   0   0   l   a   +)
  101.    (y   -   0   0   0   0   r   p   +)
  102.    (r   -   0   0   0   0   r   a   +)
  103.    (w   -   0   0   0   0   r   l   +)
  104.    (#   -   0   0   0   0   0   0   -)
  105.    )
  106.   )
  107.  
  108. (PhoneSet.silences '(#))
  109.  
  110. (provide 'mrpa_phones)
  111.  
  112.  
  113.  
  114.  
  115.