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

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;;;                                                                       ;;
  3. ;;;                Centre for Speech Technology Research                  ;;
  4. ;;;                     University of Edinburgh, UK                       ;;
  5. ;;;                         Copyright (c) 1999                            ;;
  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. ;;;                         Author: Alan W Black
  34. ;;;                         Date:   April 1999
  35. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  36. ;;;  
  37. ;;;  (yet another) darpa definition
  38. ;;;
  39.  
  40. (require 'phoneset)
  41.  
  42. (set! darpa_fs (cadr
  43. (defPhoneSet
  44.   darpa
  45.   (Features
  46.    (vowel (syllabic + -)
  47.       (length long short diphthong schwa)
  48.       (height high mid low)
  49.       (front front mid back)
  50.       (round + -))
  51.    (consonant
  52.     (syllabic + -)
  53.     (manner stop affricate fricative approximant nasal)
  54.     (place alveolar dental labial palatal velar)
  55.     (voicing + -))
  56.    (silence
  57.     (syllabic -)))
  58.   (Phones
  59.    ;;  type syl length  height front round
  60.    (aa  vowel + long      low   back    -)
  61.    (ae  vowel + short     low   front   -)
  62.    (ah  vowel + short     mid   mid     -)
  63.    (ao  vowel + long      low   front   +)
  64.    (aw  vowel + diphthong low   mid     -)
  65.    (ax  vowel + schwa     mid   mid     -)
  66.    (axr vowel + schwa     mid   mid     -)
  67.    (ay  vowel + diphthong low   mid     -)
  68.    (eh  vowel + short     mid   front   -)
  69.    (ey  vowel + diphthong mid   front   -)
  70.    (ih  vowel + short     high  front   -)
  71.    (iy  vowel + long      high  front   -)
  72.    (ow  vowel + diphthong mid   back    +)
  73.    (oy  vowel + diphthong mid   back    +)
  74.    (uh  vowel + short     high  back    +)
  75.    (uw  vowel + long      high  back    +)
  76.    ;;   type     syl manner     place   voicing
  77.    (b   consonant -   stop      labial     +)
  78.    (ch  consonant - affricate   alveolar   -)
  79.    (d   consonant -   stop      alveolar   +)
  80.    (dh  consonant - fricative   dental     +)
  81.    (dx  consonant -   stop      alveolar   +)
  82.    (el  consonant + approximant alveolar   +)
  83.    (em  consonant +   nasal     labial     +)
  84.    (en  consonant +   stop      alveolar   +)
  85.    (er  consonant + approximant alveolar   +)
  86.    (f   consonant - fricative   labial     -)
  87.    (g   consonant -   stop      velar      +)
  88.    (hh  consonant - fricative   velar      -)
  89.    (jh  consonant - affricate   alveolar   +)
  90.    (k   consonant -   stop      velar      -)
  91.    (l   consonant - approximant alveolar   +)
  92.    (m   consonant -   nasal     labial     +)
  93.    (n   consonant -   nasal     alveolar   +)
  94.    (nx  consonant -   nasal     alveolar   +)
  95.    (ng  consonant -   nasal     velar      +)
  96.    (p   consonant -   stop      labial     -)
  97.    (r   consonant - approximant alveolar   +) 
  98.    (s   consonant - fricative   alveolar   -)
  99.    (sh  consonant - fricative   palatal    -)
  100.    (t   consonant -   stop      alveolar   -)
  101.    (th  consonant - fricative   dental     -) 
  102.    (v   consonant - fricative   labial     +)
  103.    (w   consonant - approximant velar      +)
  104.    (y   consonant - approximant palatal    +)
  105.    (z   consonant - fricative   alveolar   +)
  106.    (zh  consonant - fricative   palatal    +)
  107.    (pau silence   -)
  108. ;   (sil silence   -)
  109.    ))))
  110.  
  111. (provide 'darpa_phones)
  112.  
  113.  
  114.  
  115.  
  116.