home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Multimed / Multimed.zip / fest-141.zip / festival / lib / mrpa_durs.scm < prev    next >
Text File  |  1999-05-30  |  4KB  |  137 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. ;;;  mrpa average phoneme durations from gsw 450
  35. ;;;
  36. (set! phoneme_durations 
  37. '(
  38. (u 0.067)
  39. (i@ 0.146)
  40. (h 0.067)
  41. (uu 0.105)
  42. (uh 0.090)
  43. (v 0.053)
  44. (oo 0.145)
  45. (i 0.060)
  46. (jh 0.097)
  47. (ii 0.095)
  48. (w 0.066)
  49. (k 0.088)
  50. (+ 0.036)
  51. (y 0.051)
  52. (l 0.067)
  53. (zh 0.080)
  54. (ng 0.072)
  55. (m 0.070)
  56. (z 0.079)
  57. (## 0.256)
  58. (au 0.162)
  59. (a 0.118)
  60. (n 0.065)
  61. (o 0.102)
  62. (ai 0.156)
  63. (b 0.071)
  64. (ou 0.129)
  65. (ch 0.119)
  66. (p 0.094)
  67. (oi 0.165)
  68. (# 0.040)
  69. (e@ 0.131)
  70. (d 0.052)
  71. (dh 0.032)
  72. (e 0.091)
  73. (r 0.062)
  74. (sh 0.101)
  75. (@@ 0.149)
  76. (ei 0.131)
  77. (f 0.091)
  78. (s 0.093)
  79. (g 0.066)
  80. (u@ 0.120)
  81. (aa 0.173)
  82. (t 0.073)
  83. (th 0.080)
  84. (@ 0.054)
  85. ))
  86.  
  87. (set! gsw_durs
  88. '(
  89. (#    0.200 0.100)
  90. (h    0.061 0.028)
  91. (i@   0.141 0.061)
  92. (u    0.067 0.024)
  93. (uu   0.107 0.044)
  94. (uh   0.087 0.025)
  95. (v    0.051 0.019)
  96. (oo   0.138 0.046)
  97. (i    0.058 0.023)
  98. (ii   0.092 0.035)
  99. (w    0.054 0.023)
  100. (jh   0.094 0.024)
  101. (k    0.089 0.034)
  102. (y    0.048 0.025)
  103. (l    0.056 0.026)
  104. (zh   0.077 0.030)
  105. (ng   0.064 0.024)
  106. (m    0.063 0.021)
  107. (z    0.072 0.029)
  108. (a    0.120 0.036)
  109. (au   0.171 0.046)
  110. (n    0.059 0.025)
  111. (ou   0.134 0.039)
  112. (b    0.073 0.021)
  113. (o    0.094 0.037)
  114. (ai   0.137 0.047)
  115. (ch   0.128 0.039)
  116. (oi   0.183 0.050)
  117. (p    0.101 0.032)
  118. (e@   0.144 0.061)
  119. (d    0.048 0.021)
  120. (dh   0.031 0.016)
  121. (e    0.092 0.035)
  122. (r    0.053 0.025)
  123. (sh   0.108 0.031)
  124. (f    0.095 0.033)
  125. (@@   0.147 0.035)
  126. (ei   0.130 0.042)
  127. (s    0.102 0.037)
  128. (u@   0.140 0.057)
  129. (th   0.093 0.050)
  130. (g    0.064 0.021)
  131. (aa   0.155 0.045)
  132. (t    0.070 0.034)
  133. (@    0.046 0.020)
  134. ))
  135.  
  136. (provide 'mrpa_durs)
  137.