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

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