eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

phonemes 23KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225
  1. // This is the master phoneme file.
  2. // These are fixed phoneme code numbers, which can be used
  3. // directly within the program.
  4. phonemenumber 1 <
  5. phonemenumber 2 %%
  6. phonemenumber 3 %
  7. phonemenumber 4 ,
  8. phonemenumber 5 ,,
  9. phonemenumber 6 '
  10. phonemenumber 7 ''
  11. phonemenumber 8 = // stress previous syllable
  12. phonemenumber 9 _: // pause
  13. phonemenumber 10 _ // short pause
  14. phonemenumber 11 _! // short pause, no link
  15. phonemenumber 12 :
  16. phonemenumber 13 @
  17. phonemenumber 14 @-
  18. phonemenumber 15 ||
  19. phonemenumber 16 (r)
  20. phonemenumber 17 1 // (numeral 1) default tone (for tone language)
  21. phonemenumber 18 (X1) // capital letter indication
  22. phonemenumber 19 ? // glottal stop
  23. phonemenumber 20 - // syllabic consonant
  24. phonemenumber 21 _^_ // Change language
  25. phonemenumber 22 _X1 // a language specific action
  26. phonemenumber 23 _| // very short pause
  27. // The base phoneme table contains the utility phonemes, the consonants,
  28. // and a schwa. The vowels are defined in the language specific phoneme
  29. // tables, which can also redefine consonants if they wish.
  30. //*******************************************************************
  31. // UTILITY PHONEMES
  32. //*******************************************************************
  33. phoneme < // Start of control string
  34. pause
  35. length 0
  36. lengthmod 1
  37. endphoneme
  38. phoneme %% // Unstressed
  39. stress
  40. length 0
  41. endphoneme
  42. phoneme % // Diminished stress
  43. stress
  44. length 1
  45. endphoneme
  46. phoneme , // Secondary stress
  47. stress
  48. length 2
  49. endphoneme
  50. phoneme ,, // Secondary stress
  51. stress
  52. length 3
  53. endphoneme
  54. phoneme ' // Primary stress
  55. stress
  56. length 4
  57. endphoneme
  58. phoneme '' // Primary stress (priority)
  59. stress
  60. length 5
  61. endphoneme
  62. phoneme = // Place stress on previous vowel
  63. stress
  64. length 2
  65. endphoneme
  66. phoneme || // End Word
  67. pause
  68. length 0
  69. lengthmod 1
  70. endphoneme
  71. phoneme _ // Short pause
  72. pause
  73. formants NULL
  74. starttype _ endtype _
  75. length 25
  76. lengthmod 1
  77. endphoneme
  78. phoneme _! // Short pause, don't replace by linking
  79. pause
  80. formants NULL
  81. starttype _ endtype _
  82. length 25
  83. lengthmod 1
  84. nolink
  85. endphoneme
  86. phoneme _| // Very short pause
  87. pause
  88. formants NULL
  89. starttype _ endtype _
  90. length 1
  91. lengthmod 1
  92. endphoneme
  93. phoneme _: // Standard pause
  94. pause
  95. formants NULL
  96. starttype _ endtype _
  97. length 75
  98. lengthmod 1
  99. endphoneme
  100. phoneme _:: // Long pause
  101. pause
  102. formants NULL
  103. starttype _ endtype _
  104. length 150
  105. lengthmod 1
  106. endphoneme
  107. phoneme _^_ // Change dictionary (followed by language-code in ascii
  108. pause
  109. starttype _ endtype _
  110. length 10
  111. lengthmod 1
  112. endphoneme
  113. phoneme _X1 // a language specific action
  114. pause
  115. starttype _ endtype _
  116. length 10
  117. lengthmod 1
  118. endphoneme
  119. phoneme ? // glottal stop
  120. pause
  121. vowelin glstop
  122. vowelout glstop
  123. formants NULL
  124. starttype _ endtype _
  125. length 45
  126. lengthmod 5 // ??
  127. nolink
  128. endphoneme
  129. phoneme : // Lengthen previous vowel by "length"
  130. virtual
  131. length 60
  132. endphoneme
  133. phoneme - // Indicates the previous phoneme is a syllabic consonant
  134. virtual
  135. length 0
  136. endphoneme
  137. phoneme @ // Schwa
  138. vowel starttype (@) endtype (@)
  139. formants vowel/@
  140. unstressed
  141. length 140
  142. endphoneme
  143. phoneme @- // very short schwa
  144. vowel
  145. starttype (@) endtype (@)
  146. formants vowel/@-
  147. unstressed
  148. length 50
  149. endphoneme
  150. //*******************************************************************
  151. // Other sounds
  152. //*******************************************************************
  153. phoneme (X1) // click, use for indicating capital letters
  154. vls alv frc sibilant
  155. lengthmod 3
  156. wave ustop/percus10
  157. endphoneme
  158. //*******************************************************************
  159. // VIRTUAL - referred to in vowels' vowel starttype and endtype
  160. // These each apply to a class of vowels
  161. //*******************************************************************
  162. phoneme (@) virtual
  163. after j j/j@
  164. after ; j2/j2@
  165. after w w/w@
  166. after l l/l@
  167. after L l/l@
  168. after l^ l^/j2@
  169. after #r r/r@-15
  170. after r- r2/r2@
  171. after m m/m@
  172. after n n/n@
  173. after N nn/nn@
  174. after n^ n^/n^@
  175. before l/ DFT-60+l/L1_@L
  176. before l/2 DFT-60+l/L2_@L
  177. before l DFT-50+l/xl
  178. before w DFT-30+w/xw
  179. before j DFT-30+j/xj
  180. before #r DFT-50+r/xr
  181. before r- DFT-60+r/xr
  182. before r/ DFT+r3/r_@
  183. endphoneme
  184. phoneme (a) virtual
  185. after j j/ja
  186. after ; j2/j2a
  187. after w w/wa
  188. after l l/la
  189. after L l/la
  190. after l^ l^/j2a
  191. after #r r/ra-15
  192. after r- r2/r2a
  193. after m m/ma
  194. after n n/na
  195. after N nn/nna
  196. after n^ n^/n^a
  197. before l/ DFT-40+l/L1_aL
  198. before l/2 DFT-40+l/L2_aL
  199. before l DFT-40+l/xl
  200. before w DFT-30+w/xw
  201. before j DFT-30+j/xj
  202. before #r DFT-50+r/xr
  203. before r- DFT-60+r/xr
  204. before r/ DFT+r3/r_a
  205. endphoneme
  206. phoneme (e) virtual
  207. after j j/je
  208. after ; j2/j2e
  209. after w w/we
  210. after l l/le
  211. after L l/le
  212. after l^ l^/j2e
  213. after #r r/re-15
  214. after r- r2/r2e
  215. after m m/me
  216. after n n/ne
  217. after N nn/nne
  218. after n^ n^/n^e
  219. before l/ DFT-30+l/L1_eL
  220. before l/2 DFT-40+l/L2_eL
  221. before l DFT-40+l/xl
  222. before w DFT-30+w/xw
  223. before j DFT-30+j/xj
  224. before #r DFT-50+r/xr
  225. before r- DFT-60+r/xr
  226. before r/ DFT+r3/r_e
  227. endphoneme
  228. phoneme (i) virtual
  229. after j j/ji
  230. after ; j2/j2i
  231. after w w/wi
  232. after l l/li-10
  233. after L l/li
  234. after l^ l^/j2i
  235. after #r r/ri-15
  236. after r- r2/r2i
  237. after m m/mi
  238. after n n/ni
  239. after N nn/nni
  240. after n^ n^/n^i
  241. before l/ DFT-30+l/L1_iL
  242. before l/2 DFT-30+l/L2_iL
  243. before N DFT-40+nn/inn
  244. before ; DFT-40+j2/xj2
  245. before l DFT-40+l/xl
  246. before j DFT-30+j/xj
  247. before r- DFT-60+r/xr
  248. before r/ DFT+r3/r_i
  249. endphoneme
  250. phoneme (o) virtual
  251. after j j/jo
  252. after ; j2/j2o
  253. after w w/wo
  254. after l l/lo
  255. after L l/lo
  256. after l^ l^/j2o
  257. after r r/ro-15
  258. after r- r2/r2o
  259. after m m/mo
  260. after n n/no
  261. after N nn/nno
  262. after n^ n^/n^o
  263. before l/ DFT-40+l/L1_oL
  264. before l/2 DFT-40+l/L2_oL
  265. before l DFT-40+l/xl
  266. before w DFT-30+w/xw
  267. before j DFT-30+j/xj
  268. before #r DFT-50+r/xr
  269. before r- DFT-60+r/xr
  270. before r/ DFT+r3/r_o
  271. endphoneme
  272. phoneme (u) virtual
  273. after j j/ju
  274. after ; j2/j2u
  275. after w w/wu
  276. after l l/lu
  277. after L l/lu
  278. after l^ l^/j2u
  279. after r r/ru-15
  280. after r- r2/r2u
  281. after m m/mu
  282. after n n/nu
  283. after N nn/nnu
  284. after n^ n^/n^u
  285. before l/ DFT-40+l/L1_uL
  286. before l/2 DFT-40+l/L2_uL
  287. before l DFT-40+l/xl
  288. before w DFT-30+w/xw
  289. before j DFT-30+j/xj
  290. before #r DFT-50+r/xr
  291. before r- DFT-60+r/xr
  292. before r/ DFT+r3/r_u
  293. endphoneme
  294. phoneme (r) virtual
  295. // use to mean general sonorant
  296. endphoneme
  297. phoneme #r virtual
  298. // use for English r in virtual phonemes
  299. endphoneme
  300. //*******************************************************************
  301. // SONORANTS
  302. //*******************************************************************
  303. phoneme r
  304. liquid starttype #r endtype #r
  305. length 100
  306. lengthmod 7
  307. beforenotvowel r/
  308. formants r/r
  309. after _ r/_r
  310. after t r/tr
  311. after p r/tr
  312. after k r/tr
  313. before _ r/r_
  314. endphoneme
  315. phoneme r/ // used for [r] when not preceding a vowel
  316. liquid
  317. length 100
  318. lengthmod 2 //
  319. formants r3/r_+r3/rx
  320. before n r3/r_n+r3/rx
  321. after _ r/rr
  322. after t r/trr
  323. after p r/trr
  324. after k r/trr
  325. endphoneme
  326. phoneme r- // linking r, used between certain vowels and a following vowel
  327. liquid
  328. length 100
  329. lengthmod 0
  330. formants r/r
  331. after _ r2/_r2
  332. endphoneme
  333. phoneme R
  334. liquid
  335. vowelin f1=0 f2=1600 -300 300 f3=-200 80
  336. vowelout f1=2 f2=1600 -300 300 f3=-200 80 brk
  337. formants r3/r_trill2+r3/r_trill2.wav%65
  338. trill
  339. lengthmod 6
  340. endphoneme
  341. phoneme R2 // this is [R] from Slovak/Czech
  342. liquid
  343. vowelin f1=0 f2=1700 -300 300 f3=-300 80
  344. vowelout f1=2 f2=1700 -300 300 f3=-300 80 brk
  345. formants r3/r_trill+r3/r_trill.wav%50
  346. trill
  347. lengthmod 6
  348. endphoneme
  349. phoneme R3 // Afrikaans
  350. liquid
  351. length 60
  352. vowelin f1=2 f2=2700 -300 -200 f3=-1300 80
  353. vowelout f1=2 f2=1700 -300 -200 f3=-1300 80
  354. formants r3/r_trill+r3/r_trill3.wav%99
  355. before _ r3/r_trill+r3/r_trill3.wav%99
  356. trill
  357. lengthmod 6
  358. endphoneme
  359. phoneme l
  360. liquid
  361. length 100
  362. lengthmod 7
  363. beforenotvowel l/
  364. formants l/l
  365. after _ l/_l
  366. after t l/tl
  367. after l/ l/l_long // double l, make it longer
  368. endphoneme
  369. phoneme l/ // used for [l] when not before a vowel
  370. liquid
  371. length 100
  372. lengthmod 7
  373. formants l/l_
  374. before (r) l/_l
  375. beforevowel l
  376. endphoneme
  377. phoneme l/2 // 'dark' [l] after a vowel
  378. liquid
  379. length 100
  380. lengthmod 7
  381. beforevowel l
  382. endphoneme
  383. phoneme l^ // palatal l
  384. vowelout len=60 lenadd rate
  385. liquid
  386. formants l^/l^
  387. after _ l^/_l^
  388. lengthmod 7
  389. endphoneme
  390. phoneme w
  391. liquid
  392. length 100
  393. beforenotvowel w/
  394. lengthmod 7
  395. formants w/w
  396. after _ w/_w
  397. endphoneme
  398. phoneme w/ // used for [w] when not before a vowel
  399. liquid
  400. vowelout len=50
  401. length 100
  402. formants w/w_
  403. lengthmod 7
  404. beforevowel w
  405. endphoneme
  406. phoneme j
  407. liquid
  408. palatal
  409. length 100
  410. beforenotvowel j/
  411. formants NULL
  412. after _ j/_j
  413. lengthmod 7
  414. endphoneme
  415. phoneme j/ // used for [j] when not before a vowel
  416. liquid
  417. palatal
  418. vowelout len=70
  419. length 100
  420. formants j/j_
  421. lengthmod 7
  422. beforevowel j
  423. endphoneme
  424. phoneme ; // linking j, (formerly [j-]) used between (i) vowels
  425. // and a following vowel
  426. // also to palatalize consonants
  427. liquid
  428. palatal
  429. length 100
  430. lengthmod 0
  431. formants NULL
  432. beforenotvowel NULL // this is to ignore this phoneme if not before a vowel
  433. after _ j2/_j2
  434. endphoneme
  435. phoneme m
  436. vcd blb nasal
  437. vowelout f1=2 f2=1000 -500 -350 f3=-200 80 brk
  438. length 100
  439. lengthmod 4
  440. formants NULL
  441. after _ m/_m
  442. before _ m/m_
  443. before (r) m/mj
  444. endphoneme
  445. phoneme n
  446. vcd alv nasal
  447. vowelout f1=2 f2=1700 -300 250 f3=-100 80 rms=20 brk
  448. length 100
  449. lengthmod 4
  450. formants NULL
  451. after _ n/_n
  452. after n n/_n // lengthen [nn]
  453. before _ n/n_
  454. before (r) n/nj
  455. endphoneme
  456. phoneme n.
  457. vcd rfx nasal
  458. starttype n endtype n
  459. vowelout f1=2 f2=1700 -300 250 f3=-400 80 rms=20 brk colr=2
  460. length 100
  461. lengthmod 4
  462. formants NULL
  463. after _ n/_n
  464. after n n/_n // lengthen [nn]
  465. before _ n/n_
  466. before (r) n/nj
  467. endphoneme
  468. phoneme n^
  469. vcd pal nasal palatal
  470. vowelout f1=3 f2=2500 300 500 f3=100 80 len=45 brk rate
  471. length 100
  472. lengthmod 4
  473. formants NULL
  474. after _ n^/_n^
  475. before _ n^/n^_
  476. before (r) n/nj
  477. endphoneme
  478. phoneme N
  479. vcd vel nasal
  480. // vowelout brk
  481. vowelout f1=3 f2=2300 300 400 f3=-200 80 len=40 rms=20 brk
  482. length 100
  483. formants NULL
  484. after _ nn/_nn
  485. before _ nn/nn_
  486. before (r) nn/nnj
  487. lengthmod 8 // longer than 'n'
  488. endphoneme
  489. phoneme ** // TEST flap after consonant
  490. liquid alv
  491. vowelout f1=3 f2=1700 -300 300 f3=-300 80 rms=35 len=15
  492. vowelin f1=0 f2=1700 -300 300 f3=-300 80 rms=20
  493. formants r3/@tap+r3/rx
  494. vowelin f1=0 f2=1700 -300 300 f3=-400 80 rms=20
  495. before (i) r3/@tap_i+r3/rx
  496. before (e) r3/@tap_i+r3/rx
  497. vowelin f1=2 f2=1700 -300 300 f3=-300 80 rms=20
  498. before (a) r3/@tap+r3/rx
  499. endphoneme
  500. //*******************************************************************
  501. // VOICED STOPS
  502. //*******************************************************************
  503. phoneme b
  504. vcd blb stop
  505. vowelout f1=2 f2=1000 -500 -300 f3=-300 80 brk
  506. formants b/b+x/b
  507. before _ b/b_+x/b_
  508. before (a) b/ba+x/b
  509. before (@) b/b@+x/b
  510. before (e) b/be+x/b
  511. before (i) b/bi+x/b
  512. before (o) b/bo+x/b
  513. before (u) b/bu+x/b
  514. before @- b/b@2+x/b
  515. after _ NULL
  516. after @ b/xb
  517. lengthmod 5
  518. switchvoicing p
  519. endphoneme
  520. phoneme d
  521. vcd alv stop
  522. vowelin f1=2 f2=1700 -300 300 f3=-100 80
  523. vowelout f1=2 f2=1700 -300 300 f3=-100 80
  524. formants d/d+x/d
  525. before _ d/d_+x/d_
  526. before r d/dr+x/d
  527. after _ NULL
  528. after @ d/xd
  529. lengthmod 5
  530. switchvoicing t
  531. endphoneme
  532. phoneme d[
  533. vcd dnt stop
  534. vowelin f1=2 f2=1500 -300 300 f3=-150 80
  535. vowelout f1=2 f2=1500 -300 300 f3=-150 80
  536. formants d/d+x/d_dnt%110
  537. before _ d/d_+x/d_
  538. before r d/dr+x/d_dnt%110
  539. after _ NULL
  540. after @ d/xd
  541. lengthmod 5
  542. switchvoicing t[
  543. endphoneme
  544. phoneme * // flap
  545. vcd alv flp
  546. vowelout f1=3 f2=1500 -400 300 f3=-200 80 rms=35 len=50
  547. vowelin f1=0 f2=1500 -300 300 f3=-200 80 rms=20
  548. formants d/tap3+r3/rx%200
  549. vowelin f1=0 f2=1500 -300 300 f3=-200 80 rms=20
  550. before (i) d/tap1+r3/rx%150
  551. before (e) d/tap1+r3/rx%150
  552. vowelin f1=2 f2=1500 -300 300 f3=-200 80 rms=20
  553. before (a) d/tap3+r3/rx%200
  554. before r d/dr
  555. lengthmod 3
  556. endphoneme
  557. phoneme *2 // TEST flap
  558. vcd alv flp
  559. vowelout f1=2 f2=1700 -300 200 f3=-300 60 len=15 brk
  560. vowelin f1=2 f2=1700 -300 150 f3=-200 80
  561. formants d/tap2+x/d_dnt%30
  562. after _ NULL
  563. after @ d/x_tap
  564. vowelin f1=1 f2=1700 -300 150 f3=-200 80
  565. before (i) d/tap2+x/d_dnt%30
  566. lengthmod 3
  567. switchvoicing t
  568. endphoneme
  569. phoneme dZ
  570. vcd pla afr sibilant
  571. vowelin f1=2 f2=2300 200 400 f3=100 80
  572. vowelout f1=2 f2=2300 250 300 f3=100 80 brk
  573. formants dzh/dzh+x/dzh
  574. before _ dzh/dzh_+x/dzh_
  575. after _ NULL
  576. after @ dzh/xdzh
  577. lengthmod 5
  578. switchvoicing tS
  579. endphoneme
  580. phoneme dz; // this should be different from dZ;
  581. vcd pla afr sibilant palatal
  582. vowelin f1=2 f2=2700 400 600 f3=300 80 rate len=70
  583. formants dzh/dzh+x/dz_pzd
  584. before _ dzh/dzh_+x/dzh_
  585. after _ NULL
  586. after @ dzh/xdzh
  587. lengthmod 5
  588. switchvoicing ts;
  589. endphoneme
  590. phoneme dZ;
  591. vcd pla afr sibilant palatal
  592. vowelin f1=2 f2=2700 400 600 f3=300 80 rate len=70
  593. formants dzh/dzh+x/dz_pzd
  594. before _ dzh/dzh_+x/dzh_
  595. after _ NULL
  596. after @ dzh/xdzh
  597. lengthmod 5
  598. switchvoicing tS;
  599. endphoneme
  600. phoneme J
  601. vcd pla afr sibilant
  602. vowelin f1=2 f2=2700 400 600 f3=300 80 rate len=70
  603. vowelout f1=2 f2=2700 400 600 f3=300 80 colr=1
  604. formants dzh/dz_pzd+x/dzh%40
  605. before _ dzh/dz_pzd_+x/dzh%35
  606. after _ NULL
  607. after @ dzh/xdz_pzd
  608. lengthmod 5
  609. switchvoicing c
  610. endphoneme
  611. phoneme g
  612. vcd vel stop
  613. vowelin f1=2 f2=2300 200 300 f3=-300 80
  614. vowelout f1=2 f2=2300 250 300 f3=-300 80 brk
  615. // formants g/g+x/g
  616. formants g/g+x/g2%150
  617. before _ g/g_+x/g_
  618. after _ NULL
  619. after @ g/xg
  620. lengthmod 5
  621. switchvoicing k
  622. endphoneme
  623. phoneme g- // linking g, used between N and a vowel
  624. vcd vel stop
  625. vowelin f1=2 f2=2300 200 400 f3=-100 80
  626. vowelout f1=2 f2=2300 250 300 f3=-300 80 brk
  627. formants g2/g+x/g2_
  628. before _ g2/g_+x/g2_
  629. after _ NULL
  630. after @ g2/xg
  631. lengthmod 5
  632. endphoneme
  633. //*******************************************************************
  634. // VOICED fricatives
  635. //*******************************************************************
  636. phoneme B
  637. vcd blb frc
  638. vowelin f1=2 f2=1000 -300 -200 f3=-100 100
  639. vowelout f1=2 f2=1000 -500 -300 f3=-100 60 len=50
  640. lengthmod 6
  641. formants voc/bh+vocw/v
  642. before _ voc/v_+vocw/v
  643. switchvoicing f
  644. endphoneme
  645. phoneme v
  646. vcd lbd frc
  647. vowelin f1=0 f2=1000 -300 -200 f3=-300 100
  648. vowelout f1=0 f2=1000 -500 -300 f3=-300 60 len=50
  649. lengthmod 6
  650. formants voc/v+vocw/v
  651. before _ voc/v_+vocw/v
  652. switchvoicing f
  653. endphoneme
  654. phoneme D
  655. vcd dnt frc
  656. vowelout f1=0 f2=1700 -300 300 f3=-100 60 len=50
  657. formants voc/dh+vocw/dh
  658. before _ voc/dh_+vocw/dh
  659. lengthmod 6
  660. switchvoicing T
  661. endphoneme
  662. phoneme z
  663. vcd alv frc sibilant
  664. vowelout f1=0 f2=1700 -300 300 f3=-100 60 len=50
  665. formants voc/z+ufric/s_
  666. before _ voc/z_+ufric/s_%80
  667. lengthmod 6
  668. switchvoicing s
  669. endphoneme
  670. phoneme Z
  671. vcd pla frc sibilant
  672. vowelin f1=0 f2=2000 0 300 f3=-200 80
  673. vowelout f1=2 f2=2000 0 300 f3=-200 80 brk
  674. formants voc/zh+vocw/zh
  675. before _ voc/zh_+vocw/zh
  676. lengthmod 6
  677. switchvoicing S
  678. endphoneme
  679. phoneme z.
  680. vcd pla frc sibilant
  681. vowelin f1=0 f2=1800 -100 300 f3=-300 80
  682. vowelout f1=2 f2=1800 -100 300 f3=-300 80 brk
  683. formants voc/zh+vocw/zh_rfx
  684. before _ voc/zh_+vocw/zh_rfx
  685. lengthmod 6
  686. switchvoicing s.
  687. endphoneme
  688. phoneme z;
  689. vcd pal frc sibilant palatal
  690. vowelin f1=2 f2=2700 400 600 f3=300 80 rate len=70
  691. vowelout f1=2 f2=2300 250 300 f3=-300 80 brk
  692. formants voc/z_pzd+ufric/s_pzd%80
  693. before _ voc/z_pzd_+ufric/s_pzd_%80
  694. lengthmod 6
  695. switchvoicing s;
  696. endphoneme
  697. phoneme Z;
  698. vcd pal frc sibilant palatal
  699. vowelin f1=2 f2=2700 400 600 f3=300 80 rate len=70
  700. vowelout f1=2 f2=2300 250 300 f3=-300 80 brk
  701. formants voc/z_pzd+ufric/sh_pzd_
  702. before _ voc/z_pzd_+ufric/sh_pzd_
  703. lengthmod 6
  704. switchvoicing Z;
  705. endphoneme
  706. phoneme Q
  707. vcd vel frc
  708. vowelin f1=2 f2=2300 200 400 f3=-100 80
  709. vowelout f1=2 f2=2300 250 300 f3=-300 80 brk
  710. lengthmod 6
  711. formants voc/Q+vocw/Q
  712. before _ voc/Q_+vocw/Q_
  713. switchvoicing x
  714. endphoneme
  715. phoneme Q^
  716. vcd vel frc
  717. vowelin f1=2 f2=2700 400 600 f3=200 80
  718. vowelout f1=2 f2=2700 40 600 f3=200 80 brk
  719. lengthmod 6
  720. formants voc/Q+vocw/Q
  721. before _ voc/Q_+vocw/Q_
  722. switchvoicing x
  723. endphoneme
  724. //*******************************************************************
  725. // UNVOICED STOPS
  726. //*******************************************************************
  727. phoneme p
  728. vls blb stop
  729. // vowelin f1=0 f2=1000 -50 -50 f3=-200 80
  730. // vowelout f1=0 f2=1000 -500 -350 f3=-200 80
  731. vowelin f1=0 f2=1000 -50 -100 f3=-200 80 rms=30
  732. vowelout f1=0 f2=1000 -500 -350 f3=-300 80 rms=22
  733. lengthmod 2
  734. wave ustop/p
  735. before _ ustop/p_
  736. before r ustop/pr
  737. before R ustop/pr
  738. before @- ustop/p_unasp
  739. before l ustop/pl
  740. switchvoicing b
  741. endphoneme
  742. phoneme t
  743. vls alv stop
  744. vowelin f1=0 f2=1700 -300 300 f3=-100 80
  745. vowelout f1=0 f2=1700 -300 250 f3=-100 80 rms=20
  746. lengthmod 2
  747. wave ustop/t
  748. before _ ustop/t_
  749. before @- ustop/t_dnt%50
  750. before r ustop/tr
  751. before R ustop/tr
  752. switchvoicing d
  753. endphoneme
  754. phoneme t[ // dental variant of /t/
  755. vls dnt stop
  756. vowelin f1=0 f2=1600 -300 300 f3=-100 80
  757. vowelout f1=0 f2=1600 -300 250 f3=-100 80 rms=20
  758. lengthmod 2
  759. wave ustop/t_dnt%50
  760. before _ ustop/t_dnt%25
  761. before r ustop/tr
  762. switchvoicing d[
  763. endphoneme
  764. phoneme tS
  765. vls pla afr sibilant
  766. vowelin f1=0 f2=2300 200 400 f3=-100 80
  767. lengthmod 2
  768. wave ustop/tsh
  769. before _ ustop/tsh_
  770. switchvoicing dZ
  771. endphoneme
  772. phoneme ts; // this should be different from tS;
  773. vls pal afr sibilant palatal
  774. vowelin f1=0 f2=2700 400 600 f3=300 80 rate len=70
  775. lengthmod 2
  776. wave ustop/ts_pzd
  777. before _ ustop/ts_pzd
  778. switchvoicing dz;
  779. endphoneme
  780. phoneme tS;
  781. vls pal afr sibilant palatal
  782. vowelin f1=0 f2=2700 400 600 f3=300 80 rate len=70
  783. lengthmod 2
  784. wave ustop/ts_pzd
  785. before _ ustop/ts_pzd
  786. switchvoicing dZ;
  787. endphoneme
  788. phoneme c
  789. vls pal stop
  790. vowelin f1=0 f2=2700 200 500 f3=500 80 rate len=80
  791. vowelout f1=0 f2=2700 300 500 f3=300 80
  792. lengthmod 2
  793. wave ustop/c%130
  794. before _ ustop/ki%80
  795. endphoneme
  796. phoneme k
  797. vls vel stop
  798. vowelin f1=0 f2=2300 200 300 f3=-200 80
  799. vowelout f1=0 f2=2300 300 400 f3=-200 80 rms=20
  800. lengthmod 2
  801. wave ustop/k
  802. before _ ustop/k_
  803. before r ustop/kr
  804. before R ustop/kr
  805. before @- ustop/k_unasp%70
  806. before l ustop/kl
  807. before (i) ustop/ki
  808. switchvoicing g
  809. endphoneme
  810. phoneme q
  811. vls uvl stop
  812. vowelin f1=1 f2=1700 0 200 f3=-300 80 f4 paus rms=35
  813. vowelout f1=1 f2=1700 0 200 f3=-300 80 f4 rms=30
  814. lengthmod 2
  815. wave ustop/k_unasp%60
  816. before _ ustop/k_unasp%50
  817. endphoneme
  818. //*******************************************************************
  819. // UNVOICED fricatives
  820. //*******************************************************************
  821. phoneme f
  822. vls lbd frc
  823. vowelout f1=0 f2=1000 -500 -350 f3=-200 80
  824. lengthmod 3
  825. wave ufric/f
  826. before _ ufric/f_
  827. switchvoicing v
  828. endphoneme
  829. phoneme T
  830. vls dnt frc
  831. vowelin f1=0 f2=1700 -300 300 f3=-100 80
  832. vowelout f1=0 f2=1700 -300 250 f3=-100 80 rms=20
  833. lengthmod 3
  834. wave ufric/th
  835. before _ ufric/th_
  836. switchvoicing D
  837. endphoneme
  838. phoneme s
  839. vls alv frc sibilant
  840. vowelin f1=0 f2=1700 -300 300 f3=-100 80
  841. vowelout f1=0 f2=1700 -300 250 f3=-100 80 rms=20
  842. lengthmod 3
  843. wave ufric/s
  844. before _ ufric/s_
  845. before p ufric/s!
  846. before t ufric/s!
  847. before k ufric/s!
  848. switchvoicing z
  849. endphoneme
  850. phoneme S
  851. vls pla frc sibilant
  852. vowelin f1=0 f2=2100 100 300 f3=-100 80
  853. vowelout f1=0 f2=2100 100 300 f3=-100 80
  854. length 100
  855. lengthmod 3
  856. wave ufric/sh
  857. before _ ufric/sh_
  858. switchvoicing Z
  859. endphoneme
  860. phoneme s;
  861. vls pal frc sibilant palatal
  862. vowelin f1=1 f2=2700 400 600 f3=200 70 rate len=70
  863. vowelout f1=1 f2=2700 400 600 f3=200 70 rate len=70
  864. length 100
  865. lengthmod 3
  866. wave ufric/s_pzd
  867. before _ ufric/s_pzd_
  868. switchvoicing z;
  869. endphoneme
  870. phoneme s.
  871. vls pla frc sibilant
  872. vowelin f1=0 f2=1800 -100 300 f3=-300 80
  873. vowelout f1=0 f2=1800 -100 300 f3=-300 80
  874. length 100
  875. lengthmod 3
  876. wave ufric/sh_rfx%90
  877. before _ ufric/sh_rfx%60
  878. switchvoicing z.
  879. endphoneme
  880. phoneme S;
  881. vls pal frc sibilant palatal
  882. vowelin f1=1 f2=2700 400 600 f3=200 70 rate len=70
  883. vowelout f1=1 f2=2700 400 600 f3=200 70 rate
  884. length 100
  885. lengthmod 3
  886. wave ufric/sh_pzd
  887. before _ ufric/sh_pzd_
  888. switchvoicing Z;
  889. endphoneme
  890. phoneme L // Welsh "ll"
  891. vls alv frc
  892. length 100
  893. lengthmod 3
  894. wave ufric/ll%80
  895. // before _ ufric/ll_
  896. endphoneme
  897. phoneme C
  898. vls pal frc palatal
  899. vowelin f1=0 f2=2700 400 600 f3=200 70
  900. vowelout f1=0 f2=2700 400 600 f3=200 70 rms=20
  901. length 100
  902. lengthmod 3
  903. wave ufric/ch
  904. endphoneme
  905. phoneme x
  906. vls vel frc
  907. vowelin f1=0 f2=2300 200 400 f3=-100 80
  908. vowelout f1=0 f2=2300 300 400 f3=-100 80 rms=20
  909. length 100
  910. lengthmod 3
  911. wave ufric/x
  912. switchvoicing Q
  913. endphoneme
  914. phoneme h
  915. vls glt apr
  916. length 100
  917. lengthmod 3
  918. wave ufric/h_%70 // no vowel following
  919. before (@) ufric/h@
  920. before (a) ufric/ha
  921. before (e) ufric/he
  922. before (i) ufric/hi
  923. before (o) ufric/ho
  924. before (u) ufric/hu
  925. endphoneme
  926. //*******************************************************************
  927. // ADDITIONAL PHONEME TABLES
  928. //*******************************************************************
  929. phonemetable en base
  930. include ph_english
  931. phonemetable en_n en
  932. include ph_english_n
  933. phonemetable en_us en
  934. include ph_english_us
  935. phonemetable en_sc en
  936. include ph_english_sc
  937. phonemetable en_rp en
  938. include ph_english_rp
  939. phonemetable en_wm en
  940. include ph_english_wm
  941. phonemetable af base
  942. include ph_af
  943. phonemetable cy base
  944. include ph_welsh
  945. phonemetable de base
  946. include ph_german
  947. phonemetable eo base
  948. include ph_esperanto
  949. phonemetable fi base
  950. include ph_finnish
  951. phonemetable fr base
  952. include ph_french
  953. phonemetable fr_ca fr
  954. include ph_french_ca
  955. phonemetable hi base
  956. include ph_hindi
  957. phonemetable hu base
  958. include ph_hungarian
  959. phonemetable nl base
  960. include ph_dutch
  961. phonemetable pl base
  962. include ph_polish
  963. phonemetable sk pl
  964. include ph_slovak
  965. phonemetable cs sk
  966. include ph_czech
  967. phonemetable hr sk
  968. include ph_croatian
  969. phonemetable ru base
  970. include ph_russian
  971. phonemetable it base
  972. include ph_italian
  973. phonemetable es it
  974. include ph_spanish
  975. phonemetable pt it
  976. include ph_pt_brazil
  977. phonemetable pt_pt pt
  978. include ph_portugual
  979. phonemetable ro it
  980. include ph_romanian
  981. phonemetable el it
  982. include ph_greek
  983. phonemetable sv base
  984. include ph_swedish
  985. phonemetable no base
  986. include ph_norwegian
  987. phonemetable is base
  988. include ph_icelandic
  989. phonemetable vi base
  990. include ph_vi
  991. phonemetable zh_yue base
  992. include ph_zh_yue
  993. phonemetable sw base
  994. include ph_swahili