home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Multimed / Multimed.zip / fest-141.zip / festival / lib / radio_phones.scm < prev    next >
Text File  |  1999-05-30  |  5KB  |  123 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 radio phone set used in the BU RADIO FM
  35. ;;;  corpus, some people call this the darpa set.  This one
  36. ;;;  has the closures removed
  37. ;;;
  38.  
  39. (defPhoneSet
  40.   radio
  41.   ;;;  Phone Features
  42.   (;; vowel or consonant
  43.    (vc + -)  
  44.    ;; vowel length: short long dipthong schwa
  45.    (vlng s l d a 0)
  46.    ;; vowel height: high mid low
  47.    (vheight 1 2 3 0)
  48.    ;; vowel frontness: front mid back
  49.    (vfront 1 2 3 0)
  50.    ;; lip rounding
  51.    (vrnd + - 0)
  52.    ;; consonant type: stop fricative affricate nasal lateral approximant
  53.    (ctype s f a n l r 0)
  54.    ;; place of articulation: labial alveolar palatal labio-dental
  55.    ;;                         dental velar glottal
  56.    (cplace l a p b d v g 0)
  57.    ;; consonant voicing
  58.    (cvox + - 0)
  59.    )
  60.   ;; Phone set members
  61.   (
  62.    ;; Note these features were set by awb so they are wrong !!!
  63.    (aa  +   l   3   3   -   0   0   0) ;; father
  64.    (ae  +   s   3   1   -   0   0   0) ;; fat
  65.    (ah  +   s   2   2   -   0   0   0) ;; but
  66.    (ao  +   l   3   3   +   0   0   0) ;; lawn
  67.    (aw  +   d   3   2   -   0   0   0) ;; how
  68.    (ax  +   a   2   2   -   0   0   0) ;; about
  69.    (axr +   a   2   2   -   r   a   +)
  70.    (ay  +   d   3   2   -   0   0   0) ;; hide
  71.    (b   -   0   0   0   0   s   l   +)
  72.    (ch  -   0   0   0   0   a   p   -)
  73.    (d   -   0   0   0   0   s   a   +)
  74.    (dh  -   0   0   0   0   f   d   +)
  75.    (dx  -   a   0   0   0   s   a   +) ;; ??
  76.    (eh  +   s   2   1   -   0   0   0) ;; get
  77.    (el  +   s   0   0   0   l   a   +)
  78.    (em  +   s   0   0   0   n   l   +)
  79.    (en  +   s   0   0   0   n   a   +)
  80.    (er  +   a   2   2   -   r   0   0) ;; always followed by r (er-r == axr)
  81.    (ey  +   d   2   1   -   0   0   0) ;; gate
  82.    (f   -   0   0   0   0   f   b   -)
  83.    (g   -   0   0   0   0   s   v   +)
  84.    (hh  -   0   0   0   0   f   g   -)
  85.    (hv  -   0   0   0   0   f   g   +)
  86.    (ih  +   s   1   1   -   0   0   0) ;; bit
  87.    (iy  +   l   1   1   -   0   0   0) ;; beet
  88.    (jh  -   0   0   0   0   a   p   +)
  89.    (k   -   0   0   0   0   s   v   -)
  90.    (l   -   0   0   0   0   l   a   +)
  91.    (m   -   0   0   0   0   n   l   +)
  92.    (n   -   0   0   0   0   n   a   +)
  93.    (nx  -   0   0   0   0   n   d   +) ;; ???
  94.    (ng  -   0   0   0   0   n   v   +)
  95.    (ow  +   d   2   3   +   0   0   0) ;; lone
  96.    (oy  +   d   2   3   +   0   0   0) ;; toy
  97.    (p   -   0   0   0   0   s   l   -)
  98.    (r   -   0   0   0   0   r   a   +)
  99.    (s   -   0   0   0   0   f   a   -)
  100.    (sh  -   0   0   0   0   f   p   -)
  101.    (t   -   0   0   0   0   s   a   -)
  102.    (th  -   0   0   0   0   f   d   -)
  103.    (uh  +   s   1   3   +   0   0   0) ;; full
  104.    (uw  +   l   1   3   +   0   0   0) ;; fool
  105.    (v   -   0   0   0   0   f   b   +)
  106.    (w   -   0   0   0   0   r   l   +)
  107.    (y   -   0   0   0   0   r   p   +)
  108.    (z   -   0   0   0   0   f   a   +)
  109.    (zh  -   0   0   0   0   f   p   +)
  110.    (pau -   0   0   0   0   0   0   -)
  111.    (h#  -   0   0   0   0   0   0   -)
  112.    (brth -   0   0   0   0   0   0   -)
  113.   )
  114. )
  115.  
  116. (PhoneSet.silences '(pau h# brth))
  117.  
  118. (provide 'radio_phones)
  119.  
  120.  
  121.   
  122.  
  123.