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 31KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806
  1. // This is the master phoneme file.
  2. //*******************************************************************
  3. // Stress Phonemes
  4. //*******************************************************************
  5. phoneme % // Unstressed
  6. stress
  7. stress_type 1
  8. endphoneme
  9. phoneme %% // Diminished stress
  10. stress
  11. stress_type 0
  12. endphoneme
  13. phoneme \, // [,] Secondary stress
  14. stress
  15. stress_type 2
  16. endphoneme
  17. phoneme \,\, // [,,] Secondary stress
  18. stress
  19. stress_type 3
  20. endphoneme
  21. phoneme ' // Primary stress
  22. stress
  23. stress_type 4
  24. endphoneme
  25. phoneme '' // Primary stress (priority)
  26. stress
  27. stress_type 5
  28. endphoneme
  29. phoneme '! // Primary stress (emphasized)
  30. stress
  31. stress_type 6
  32. endphoneme
  33. phoneme = // Place stress on previous vowel
  34. stress
  35. stress_type 2
  36. endphoneme
  37. //*******************************************************************
  38. // IPA Phonemes
  39. //*******************************************************************
  40. phonemetable ipa base
  41. include ph_ipa
  42. phonemetable base1 base
  43. // The base phoneme table contains the utility phonemes, the consonants,
  44. // and a schwa. The vowels are defined in the language specific phoneme
  45. // tables, which can also redefine consonants if they wish.
  46. //*******************************************************************
  47. // UTILITY PHONEMES
  48. //*******************************************************************
  49. phoneme || // End Word
  50. pause
  51. lengthmod 9 // no effect
  52. endphoneme
  53. phoneme _ // Short pause
  54. pause
  55. starttype _ endtype _
  56. lengthmod 1
  57. length 25
  58. endphoneme
  59. phoneme _! // Short pause, don't replace by linking
  60. pause
  61. starttype _ endtype _
  62. lengthmod 1
  63. nolink
  64. length 35
  65. endphoneme
  66. phoneme _| // Very short pause
  67. pause
  68. starttype _ endtype _
  69. lengthmod 5
  70. length 1
  71. endphoneme
  72. phoneme _: // Standard pause
  73. pause
  74. starttype _ endtype _
  75. lengthmod 1
  76. length 75
  77. endphoneme
  78. phoneme _:: // Long pause
  79. pause
  80. starttype _ endtype _
  81. lengthmod 1
  82. length 150
  83. endphoneme
  84. phoneme _;_ // clause pause
  85. pause
  86. starttype _ endtype _
  87. lengthmod 1
  88. length 200
  89. endphoneme
  90. phoneme _^_ // Change dictionary (followed by language-code in ascii
  91. pause
  92. starttype _ endtype _
  93. lengthmod 1
  94. length 10
  95. endphoneme
  96. phoneme _X1 // a language specific action
  97. pause
  98. starttype _ endtype _
  99. lengthmod 1
  100. length 10
  101. endphoneme
  102. phoneme ? // glottal stp
  103. vls glt stp
  104. lengthmod 3 // ??
  105. nolink
  106. Vowelin glstop
  107. Vowelout glstop
  108. WAV(ustop/null)
  109. endphoneme
  110. phoneme : // lengthen previous vowel by "length"
  111. virtual
  112. length 70
  113. endphoneme
  114. phoneme - // Indicates the previous phoneme is a syllabic consonant
  115. virtual
  116. endphoneme
  117. // Some default vowel definitions
  118. phoneme @ // Schwa, e.g. alph**a**
  119. vwl starttype #@ endtype #@
  120. unstressed
  121. length 140
  122. FMT(vowel/@)
  123. endphoneme
  124. phoneme @- // very short schwa
  125. vwl starttype #@ endtype #@
  126. unstressed nsy
  127. ipa ə
  128. IF nextPhW(*) OR nextPhW(r) THEN
  129. ipa NULL // @-* is used to make 'r'
  130. ENDIF
  131. length 50
  132. FMT(vowel/@-)
  133. endphoneme
  134. phoneme a // tr**a**p
  135. vwl starttype #a endtype #a
  136. length 180
  137. FMT(vowel/a)
  138. endphoneme
  139. phoneme e // German **eh**, French **é**
  140. vwl starttype #e endtype #e
  141. length 170
  142. FMT(vowel/e)
  143. endphoneme
  144. phoneme i
  145. vwl starttype #i endtype #i
  146. length 170
  147. IfNextVowelAppend(;)
  148. FMT(vowel/i)
  149. endphoneme
  150. phoneme o // German **oo**, French **o**
  151. vwl starttype #o endtype #o
  152. length 170
  153. FMT(vowel/oo)
  154. endphoneme
  155. phoneme u
  156. vwl starttype #u endtype #u
  157. length 170
  158. FMT(vowel/u)
  159. endphoneme
  160. // Syllablic consonants
  161. //=====================
  162. phoneme m-
  163. vwl starttype #@ endtype #@
  164. ipa mU+0329
  165. lengthmod 4
  166. length 170
  167. IF thisPh(isWordStart) THEN
  168. length 190
  169. ENDIF
  170. IF KlattSynth THEN
  171. FMT(klatt/m-syl)
  172. ENDIF
  173. FMT(m/m-syl)
  174. endphoneme
  175. phoneme n-
  176. vwl starttype #@ endtype #@
  177. ipa nU+0329
  178. lengthmod 4
  179. length 170
  180. IF thisPh(isWordStart) THEN
  181. length 190
  182. ENDIF
  183. IF KlattSynth THEN
  184. FMT(klatt/n-syl)
  185. ENDIF
  186. FMT(n/n-syl)
  187. endphoneme
  188. phoneme N-
  189. vwl starttype #e endtype #e
  190. ipa ŋU+0329
  191. lengthmod 4
  192. length 190
  193. FMT(nn/nn-syl)
  194. endphoneme
  195. //*******************************************************************
  196. // Other sounds
  197. //*******************************************************************
  198. phoneme #X1 // click, use for indicating capital letters
  199. vls alv frc sib
  200. lengthmod 3
  201. WAV(ustop/percus10, 60)
  202. endphoneme
  203. //*******************************************************************
  204. // VIRTUAL - referred to in vowels' vwl starttype and endtype
  205. // These each apply to a class of vowels
  206. //*******************************************************************
  207. phoneme #@ virtual
  208. endphoneme
  209. phoneme #a virtual
  210. endphoneme
  211. phoneme #e virtual
  212. endphoneme
  213. phoneme #i virtual
  214. endphoneme
  215. phoneme #o virtual
  216. endphoneme
  217. phoneme #u virtual
  218. endphoneme
  219. //*******************************************************************
  220. // SONORANTS
  221. //*******************************************************************
  222. phoneme r- // syllabic r
  223. vwl starttype #@ endtype #@
  224. ipa rU+0329
  225. unstressed
  226. length 220
  227. FMT(vowelr/r-voc)
  228. endphoneme
  229. phoneme l- // syllabic l
  230. vwl starttype #@ endtype #@
  231. ipa lU+0329
  232. unstressed
  233. length 200
  234. FMT(vwl_hi/l-voc)
  235. endphoneme
  236. phoneme r // **r**ed (Omitted if not immediately followed by a vowel)
  237. import_phoneme ipa/r\\
  238. endphoneme
  239. phoneme r/ // used for [r] when not preceding a vowel
  240. import_phoneme ipa/r\\
  241. endphoneme
  242. phoneme R
  243. liquid trl
  244. lengthmod 6
  245. ipa r
  246. IF nextPhW(R2) THEN
  247. ipa NULL
  248. ENDIF
  249. Vowelin f1=0 f2=1600 -300 300 f3=-200 80
  250. Vowelout f1=2 f2=1600 -300 300 f3=-200 80 brk
  251. FMT(r3/r_trill2) addWav(r3/r_trill2.wav, 65)
  252. endphoneme
  253. phoneme R2 // this is [R] from Slovak/Czech
  254. liquid trl
  255. lengthmod 6
  256. ipa r
  257. Vowelin f1=0 f2=1700 -300 300 f3=-300 80
  258. Vowelout f1=2 f2=1700 -300 300 f3=-300 80 brk
  259. FMT(r3/r_trill) addWav(r3/r_trill.wav, 50)
  260. endphoneme
  261. phoneme R3 // Afrikaans
  262. liquid trl
  263. lengthmod 6
  264. length 60
  265. ipa r
  266. Vowelin f1=2 f2=2700 -300 -200 f3=-1300 80
  267. Vowelout f1=2 f2=1700 -300 -200 f3=-1300 80
  268. // vowel modifier is the same as for [r]
  269. NextVowelStarts
  270. VowelStart(r/r@, -15)
  271. VowelStart(r/ra, -15)
  272. VowelStart(r/re, -15)
  273. VowelStart(r/ri, -15)
  274. VowelStart(r/ro, -15)
  275. VowelStart(r/ru, -15)
  276. EndSwitch
  277. IF prevPh(isVowel) THEN
  278. VowelEnding(r/xr, -50)
  279. ENDIF
  280. FMT(r3/r_trill) addWav(r3/r_trill3.wav)
  281. endphoneme
  282. phoneme r" // uvular trill
  283. vcd uvl frc
  284. ipa ʀ
  285. lengthmod 6
  286. IF nextPh(isNotVowel) THEN
  287. FMT(r3/r_uvl) addWav(r3/r_uvl.wav, 50)
  288. ENDIF
  289. FMT(r3/r_uvl) addWav(r3/r_uvl.wav, 75)
  290. endphoneme
  291. procedure vowelstart_l
  292. NextVowelStarts
  293. VowelStart(l/l@)
  294. VowelStart(l/la)
  295. VowelStart(l/le)
  296. VowelStart(l/li, -10)
  297. VowelStart(l/lo)
  298. VowelStart(l/lu)
  299. EndSwitch
  300. endprocedure
  301. phoneme l
  302. liquid
  303. lengthmod 7
  304. IF nextPh(isNotVowel) THEN
  305. ChangePhoneme(l/)
  306. ENDIF
  307. IF nextPh(isNotVowel) THEN
  308. // in case the next phoneme is no longer a vowel, in pass=2
  309. PrevVowelEndings
  310. VowelEnding(l/L1_@L, -60)
  311. VowelEnding(l/L1_aL, -40)
  312. VowelEnding(l/L1_eL, -30)
  313. VowelEnding(l/L1_iL, -30)
  314. VowelEnding(l/L1_oL, -40)
  315. VowelEnding(l/L1_uL, -40)
  316. EndSwitch
  317. FMT(l/l_)
  318. RETURN
  319. ENDIF
  320. CALL vowelstart_l
  321. IF prevPh(#@) THEN
  322. VowelEnding(l/xl, -50)
  323. ELIF prevPh(isVowel) THEN
  324. VowelEnding(l/xl, -40)
  325. ENDIF
  326. IF prevPh(isPause) THEN
  327. FMT(l/_l)
  328. ENDIF
  329. IF prevPh(t) THEN
  330. FMT(l/tl)
  331. ENDIF
  332. IF prevPh(l/) THEN
  333. FMT(l/l_long) // double l, make it longer
  334. ENDIF
  335. FMT(l/l)
  336. endphoneme
  337. phoneme l/ // used for [l] when not before a vowel
  338. liquid
  339. lengthmod 7
  340. IF nextPh(isVowel) THEN
  341. ChangePhoneme(l)
  342. ENDIF
  343. PrevVowelEndings
  344. VowelEnding(l/L1_@L, -60)
  345. VowelEnding(l/L1_aL, -40)
  346. VowelEnding(l/L1_eL, -30)
  347. VowelEnding(l/L1_iL, -30)
  348. VowelEnding(l/L1_oL, -40)
  349. VowelEnding(l/L1_uL, -40)
  350. EndSwitch
  351. // we need to replace these with new FMT sequeces for jl and wl
  352. IF prevPhW(j) THEN
  353. FMT(l/L1_eL)
  354. ENDIF
  355. IF prevPhW(w) THEN
  356. FMT(l/L1_eL)
  357. ENDIF
  358. FMT(l/l_)
  359. endphoneme
  360. phoneme l/2 // 'dark' [l] after a vowel
  361. liquid
  362. lengthmod 7
  363. IF nextPh(isVowel) THEN
  364. ChangePhoneme(l)
  365. ENDIF
  366. CALL vowelstart_l
  367. IF prevPhW(j) THEN
  368. FMT(l/L2_eL)
  369. ENDIF
  370. IF prevPhW(w) THEN
  371. FMT(l/L2_uL)
  372. ENDIF
  373. PrevVowelEndings
  374. VowelEnding(l/L2_@L, -60)
  375. VowelEnding(l/L2_aL, -50)
  376. VowelEnding(l/L2_eL, -40)
  377. VowelEnding(l/L2_iL, -30)
  378. VowelEnding(l/L2_oL, -50)
  379. VowelEnding(l/L2_uL, -40)
  380. EndSwitch
  381. endphoneme
  382. phoneme l/3 // Replacement for [l/]
  383. liquid
  384. lengthmod 7
  385. IF nextPh(isVowel) THEN
  386. ChangePhoneme(l)
  387. ENDIF
  388. PrevVowelEndings
  389. VowelEnding(l/l_@)
  390. VowelEnding(l/l_a)
  391. VowelEnding(l/l_e)
  392. VowelEnding(l/l_i)
  393. VowelEnding(l/l_o)
  394. VowelEnding(l/l_u, -20)
  395. EndSwitch
  396. // IF nextPh(isLiquid) THEN
  397. // FMT(l/_l)
  398. // ENDIF
  399. FMT(l/l_)
  400. endphoneme
  401. phoneme l^ // palatal l, e.g. Italian **g**li
  402. liquid
  403. ipa ʎ
  404. lengthmod 7
  405. Vowelout len=60 lenadd rate
  406. length 100
  407. NextVowelStarts
  408. VowelStart(l^/j2@)
  409. VowelStart(l^/j2a)
  410. VowelStart(l^/j2e)
  411. VowelStart(l^/j2i)
  412. VowelStart(l^/j2o)
  413. VowelStart(l^/j2u)
  414. EndSwitch
  415. IF prevPh(isPause) THEN
  416. FMT(l^/_l^)
  417. ENDIF
  418. FMT(l^/l^)
  419. endphoneme
  420. phoneme l.
  421. liquid rfx
  422. ipa ɭ
  423. lengthmod 7
  424. FMT(l^/l_rfx)
  425. endphoneme
  426. phoneme L/
  427. import_phoneme base1/l/2
  428. endphoneme
  429. phoneme L // velar L
  430. liquid
  431. lengthmod 7
  432. IF nextPh(isNotVowel) THEN
  433. ChangePhoneme(L/) // use 'dark' [l] after a vowel
  434. ENDIF
  435. VowelEnding(ll/xll, -40)
  436. IF prevPh(isPause) THEN
  437. FMT(ll/_ll)
  438. ENDIF
  439. FMT(ll/ll)
  440. endphoneme
  441. phoneme w
  442. liquid
  443. lengthmod 7
  444. starttype #u
  445. IF nextPh(isVowel) THEN
  446. NextVowelStarts
  447. VowelStart(w/w@)
  448. VowelStart(w/wa)
  449. VowelStart(w/we)
  450. VowelStart(w/wi)
  451. VowelStart(w/wo)
  452. VowelStart(w/wu)
  453. EndSwitch
  454. VowelEnding(w/xw, -30)
  455. IF prevPhW(isNasal) THEN
  456. FMT(w/w)
  457. ELSEIF prevPhW(h) THEN
  458. // none, [hw]
  459. ELSE
  460. FMT(w/_w)
  461. ENDIF
  462. ELSE
  463. // no vowel follows
  464. Vowelout len=50
  465. IF prevPh(#i) THEN
  466. FMT(w/iw_)
  467. ENDIF
  468. FMT(w/w_)
  469. ENDIF
  470. endphoneme
  471. phoneme j // **y**es
  472. liquid pal starttype #i
  473. lengthmod 7
  474. IF nextPhW(isVowel) THEN
  475. NextVowelStarts
  476. VowelStart(j/j@)
  477. VowelStart(j/ja)
  478. VowelStart(j/je)
  479. VowelStart(j/ji)
  480. VowelStart(j/jo)
  481. VowelStart(j/ju)
  482. EndSwitch
  483. VowelEnding(j/xj, -30)
  484. IF prevPh(isPause) THEN
  485. FMT(j/_j)
  486. ENDIF
  487. ELSE
  488. // no vowel follows
  489. Vowelout len=70
  490. FMT(j/j_)
  491. ENDIF
  492. endphoneme
  493. phoneme ; // linking j, used between (i) vowels and a following vowel
  494. // also to palatalize consonants
  495. liquid pzd
  496. lengthmod 0
  497. IF prevPh(#i) THEN
  498. ipa NULL // linking after i vowel, don't show in ipa
  499. ENDIF
  500. IF nextPh(isNotVowel) THEN
  501. ChangePhoneme(NULL) // this is to ignore this phoneme if not before a vowel
  502. ENDIF
  503. NextVowelStarts
  504. VowelStart(j2/j2@)
  505. VowelStart(j2/j2a)
  506. VowelStart(j2/j2e)
  507. VowelStart(j2/j2i)
  508. VowelStart(j2/j2o)
  509. VowelStart(j2/j2u)
  510. EndSwitch
  511. IF prevPh(#i) THEN
  512. VowelEnding(j2/xj2, -40)
  513. ENDIF
  514. IF prevPh(isPause) THEN
  515. FMT(j2/_j2)
  516. ENDIF
  517. endphoneme
  518. //*******************************************************************
  519. // NASAL CONSONANTS
  520. //*******************************************************************
  521. phoneme m
  522. import_phoneme ipa/m
  523. endphoneme
  524. phoneme n
  525. import_phoneme ipa/n
  526. endphoneme
  527. phoneme n.
  528. import_phoneme ipa/n`
  529. endphoneme
  530. phoneme n^ // Spanish **ñ**
  531. import_phoneme ipa/J
  532. endphoneme
  533. phoneme N // si**ng**
  534. import_phoneme ipa/N
  535. endphoneme
  536. phoneme ** // TEST flap
  537. liquid alv rhotic
  538. ipa ɾ
  539. lengthmod 3
  540. Vowelout f1=3 f2=1600 -300 300 f3=-300 80 rms=35 len=15
  541. Vowelin f1=2 f2=1600 -300 300 f3=-100 80 len=20
  542. IF prevPh(#i) OR prevPh(#e) THEN
  543. FMT(r3/@tap2)
  544. ENDIF
  545. FMT(r3/@tap)
  546. endphoneme
  547. phoneme * // flap
  548. vcd alv flp rhotic
  549. brkafter
  550. ipa ɾ
  551. lengthmod 3
  552. IF prevPhW(@-) THEN
  553. ipa r // @-* sequence for [r]
  554. ENDIF
  555. IF nextPh(#e) OR nextPh(#i) THEN
  556. Vowelin f1=0 f2=1500 -300 300 f3=-200 80
  557. FMT(d/tap1) addWav(r3/rx, 150)
  558. FMT(d/tap1) addWav(r3/rx, 150)
  559. ENDIF
  560. Vowelin f1=2 f2=1500 -300 300 f3=-200 80
  561. IF nextPh(#a) THEN
  562. FMT(d/tap3) addWav(r3/rx, 200)
  563. ENDIF
  564. IF nextPh(r) THEN
  565. FMT(d/dr)
  566. ENDIF
  567. Vowelout f1=3 f2=1500 -400 300 f3=-200 80 rms=35 len=50
  568. Vowelin f1=0 f2=1500 -300 300 f3=-200 80
  569. FMT(d/tap3) addWav(r3/rx, 200)
  570. endphoneme
  571. phoneme r. // retroflex
  572. liquid rfx
  573. lengthmod 3
  574. Vowelout f1=3 f2=1400 -400 300 f3=-400 80 rms=35 len=15 colr=2
  575. Vowelin f1=2 f2=1400 -400 300 f3=-400 80 len=20
  576. IF nextPh(isNotVowel) THEN
  577. FMT(r3/@tap_rfx_)
  578. ENDIF
  579. FMT(r3/@tap_rfx)
  580. endphoneme
  581. //*******************************************************************
  582. // VOICED STOPS
  583. //*******************************************************************
  584. phoneme b
  585. vcd blb stp
  586. voicingswitch p
  587. Vowelout f1=2 f2=1000 -500 -300 f3=-300 80 brk
  588. lengthmod 5
  589. IF PreVoicing THEN
  590. FMT(b/xb)
  591. ENDIF
  592. IF KlattSynth THEN
  593. Vowelin f1=1 f2=1000 -500 -300 f3=-300 80
  594. IF nextPh(isPause2) THEN
  595. FMT(klatt/b) addWav(x/b_)
  596. ENDIF
  597. FMT(klatt/b) addWav(x/b)
  598. ENDIF
  599. IF nextPh(isPause2) THEN
  600. FMT(b/b_) addWav(x/b_)
  601. ELIF nextPh(@-) THEN
  602. FMT(b/b@2) addWav(x/b)
  603. ELIF nextPh(#@) THEN
  604. FMT(b/b@) addWav(x/b)
  605. ELIF nextPh(#a) THEN
  606. FMT(b/ba) addWav(x/b)
  607. ELIF nextPh(#e) THEN
  608. FMT(b/be) addWav(x/b)
  609. ELIF nextPh(#i) THEN
  610. FMT(b/bi) addWav(x/b)
  611. ELIF nextPh(#o) THEN
  612. FMT(b/bo) addWav(x/b)
  613. ELIF nextPh(#u) THEN
  614. FMT(b/bu) addWav(x/b)
  615. ENDIF
  616. FMT(b/b) addWav(x/b)
  617. endphoneme
  618. phoneme d
  619. vcd alv stp
  620. voicingswitch t
  621. lengthmod 5
  622. Vowelin f1=1 f2=1700 -300 300 f3=-100 80
  623. Vowelout f1=2 f2=1700 -300 300 f3=-100 80 brk
  624. IF PreVoicing THEN
  625. FMT(d/xd)
  626. ENDIF
  627. IF nextPh(isPause2) THEN
  628. FMT(d/d_) addWav(x/d_)
  629. // ELIF nextPh(r) THEN
  630. // FMT(d/dr) addWav(x/d)
  631. ENDIF
  632. FMT(d/d) addWav(x/d)
  633. endphoneme
  634. phoneme d[
  635. vcd dnt stp
  636. voicingswitch t[
  637. lengthmod 5
  638. Vowelin f1=2 f2=1500 -300 300 f3=-150 80
  639. Vowelout f1=2 f2=1500 -300 300 f3=-150 80
  640. IF PreVoicing THEN
  641. FMT(d/xd)
  642. ENDIF
  643. IF nextPh(isPause2) THEN
  644. FMT(d/d_) addWav(x/d_)
  645. ELIF nextPh(r) THEN
  646. FMT(d/dr) addWav(x/d_dnt, 100)
  647. ENDIF
  648. FMT(d/d) addWav(x/d_dnt, 100)
  649. endphoneme
  650. phoneme dZ // **j**udge
  651. vcd pla afr sib
  652. voicingswitch tS
  653. lengthmod 5
  654. Vowelin f1=2 f2=2300 200 400 f3=100 80
  655. Vowelout f1=2 f2=2300 250 300 f3=100 80 brk
  656. IF PreVoicing THEN
  657. FMT(dzh/xdzh)
  658. ENDIF
  659. IF nextPh(isPause2) THEN
  660. FMT(dzh/dzh_) addWav(x/dzh_)
  661. ENDIF
  662. FMT(dzh/dzh) addWav(x/dzh)
  663. endphoneme
  664. phoneme dZ;
  665. vcd alp sib afr
  666. voicingswitch tS;
  667. ipa dʑ
  668. lengthmod 5
  669. Vowelin f1=2 f2=2700 400 600 f3=300 80 rate len=70
  670. Vowelout f1=2 f2=2700 400 600 f3=300 80
  671. IF PreVoicing THEN
  672. FMT(dzh/xdzh)
  673. ENDIF
  674. IF KlattSynth THEN
  675. IF nextPh(isPause2) THEN
  676. FMT(dzh/dzh_) addWav(x/dzh_)
  677. ENDIF
  678. FMT(dzh/dzh) addWav(x/dz_pzd)
  679. ENDIF
  680. IF nextPh(isPause2) THEN
  681. FMT(dzh/dzh_) addWav(x/dzh_)
  682. ENDIF
  683. FMT(dzh/dzh) addWav(x/dz_pzd)
  684. endphoneme
  685. phoneme J
  686. vcd pal afr sib pzd
  687. voicingswitch c
  688. lengthmod 5
  689. Vowelin f1=2 f2=2700 400 600 f3=300 80 rate len=70
  690. Vowelout f1=2 f2=2700 400 600 f3=300 80 colr=1
  691. IF PreVoicing THEN
  692. FMT(dzh/xdz_pzd)
  693. ENDIF
  694. IF KlattSynth THEN
  695. IF nextPh(isPause2) THEN
  696. FMT(klatt/dz_pzd_) addWav(x/dzh, 35)
  697. ENDIF
  698. FMT(klatt/dz_pzd) addWav(x/dzh, 45)
  699. ENDIF
  700. IF nextPh(isPause2) THEN
  701. FMT(dzh/dz_pzd_) addWav(x/dzh, 35)
  702. ENDIF
  703. FMT(dzh/dz_pzd) addWav(x/dzh, 45)
  704. endphoneme
  705. phoneme g
  706. vcd vel stp
  707. voicingswitch k
  708. lengthmod 5
  709. Vowelin f1=2 f2=2300 200 300 f3=-300 80
  710. Vowelout f1=2 f2=2300 250 300 f3=-300 80 brk
  711. IF PreVoicing THEN
  712. FMT(g/xg)
  713. ENDIF
  714. IF nextPh(isPause2) THEN
  715. FMT(g/g_) addWav(x/g_)
  716. ENDIF
  717. FMT(g/g) addWav(x/g2, 150)
  718. endphoneme
  719. //*******************************************************************
  720. // VOICED fricatives
  721. //*******************************************************************
  722. phoneme B
  723. vcd blb frc
  724. voicingswitch f
  725. lengthmod 6
  726. Vowelin f1=2 f2=1000 -300 -200 f3=-100 100
  727. Vowelout f1=2 f2=1000 -500 -300 f3=-100 60 len=50
  728. IF KlattSynth THEN
  729. IF nextPh(isPause2) THEN
  730. FMT(klatt/v_) addWav(vocw/v)
  731. ENDIF
  732. FMT(klatt/bh) addWav(vocw/v)
  733. ENDIF
  734. IF nextPh(isPause2) THEN
  735. FMT(voc/v_) addWav(vocw/v)
  736. ENDIF
  737. FMT(voc/bh) addWav(vocw/v)
  738. endphoneme
  739. phoneme v
  740. vcd lbd frc
  741. voicingswitch f
  742. lengthmod 6
  743. Vowelin f1=0 f2=1000 -300 -200 f3=-300 100
  744. Vowelout f1=0 f2=1000 -500 -300 f3=-300 60 len=50
  745. IF KlattSynth THEN
  746. Vowelout f1=1 f2=1000 -500 -300 f3=-300 60 len=50 brk
  747. IF nextPh(isPause2) THEN
  748. FMT(klatt/v_) addWav(vocw/v)
  749. ENDIF
  750. FMT(klatt/v) addWav(vocw/v, 150)
  751. ENDIF
  752. IF nextPh(isPause2) THEN
  753. FMT(voc/v_) addWav(vocw/v)
  754. ENDIF
  755. IF thisPh(isWordStart) AND nextPhW(isLiquid) THEN
  756. length 70
  757. ENDIF
  758. FMT(voc/v) addWav(vocw/v)
  759. endphoneme
  760. phoneme v# // approximant, not fricative
  761. vcd lbd frc
  762. ipa ʋ
  763. lengthmod 6
  764. voicingswitch f
  765. Vowelin f1=0 f2=1000 -300 -200 f3=-300 100
  766. Vowelout f1=0 f2=1000 -500 -300 f3=-300 60 len=50
  767. IF nextPh(isPause2) THEN
  768. FMT(voc/v#_)
  769. ENDIF
  770. FMT(voc/v#)
  771. endphoneme
  772. phoneme D // **th**is
  773. vcd dnt frc
  774. voicingswitch T
  775. lengthmod 6
  776. Vowelout f1=0 f2=1700 -300 300 f3=-100 60 len=50
  777. IF KlattSynth THEN
  778. Vowelin f1=0 f2=1290 -300 300 f3=0 0
  779. ENDIF
  780. IF nextPh(isPause2) THEN
  781. FMT(voc/dh_) addWav(vocw/dh)
  782. ENDIF
  783. FMT(voc/dh) addWav(vocw/dh)
  784. endphoneme
  785. phoneme z
  786. vcd alv frc sib
  787. voicingswitch s
  788. lengthmod 6
  789. Vowelout f1=0 f2=1700 -300 300 f3=-100 60 len=50
  790. IF KlattSynth THEN
  791. Vowelin f1=0 f2=1390 -300 300 f3=0 0
  792. Vowelout f1=1 f2=1390 -300 300 f3=-100 60 len=50 brk
  793. ENDIF
  794. IF nextPh(isPause2) THEN
  795. FMT(voc/z_) addWav(ufric/s_, 70)
  796. ENDIF
  797. FMT(voc/z) addWav(ufric/s_, 85)
  798. endphoneme
  799. phoneme Z // plea**s**ure
  800. vcd pla frc sib
  801. voicingswitch S
  802. lengthmod 6
  803. Vowelin f1=0 f2=2000 0 300 f3=-200 80
  804. Vowelout f1=2 f2=2000 0 300 f3=-200 80 brk
  805. IF KlattSynth THEN
  806. IF nextPh(isPause2) THEN
  807. FMT(klatt/zh_, 60) addWav(vocw/zh, 70)
  808. ENDIF
  809. FMT(klatt/zh) addWav(vocw/zh, 130)
  810. ENDIF
  811. IF nextPh(isPause2) THEN
  812. FMT(voc/zh_, 60) addWav(vocw/zh, 70)
  813. ENDIF
  814. FMT(voc/zh) addWav(vocw/zh, 130)
  815. endphoneme
  816. phoneme z.
  817. vcd pla frc sib
  818. ipa ʐ
  819. voicingswitch s.
  820. lengthmod 6
  821. Vowelin f1=0 f2=1800 -100 300 f3=-300 80
  822. Vowelout f1=2 f2=1800 -100 300 f3=-300 80 brk
  823. IF KlattSynth THEN
  824. IF nextPh(isPause2) THEN
  825. FMT(klatt/zh_) addWav(vocw/zh_rfx)
  826. ENDIF
  827. FMT(klatt/zh) addWav(vocw/zh_rfx)
  828. ENDIF
  829. IF nextPh(isPause2) THEN
  830. FMT(voc/zh_) addWav(vocw/zh_rfx)
  831. ENDIF
  832. FMT(voc/zh) addWav(vocw/zh_rfx)
  833. endphoneme
  834. phoneme z;
  835. vcd alp sib frc
  836. ipa ʑ
  837. voicingswitch s;
  838. lengthmod 6
  839. Vowelin f1=2 f2=2700 400 600 f3=300 80 rate len=70
  840. Vowelout f1=2 f2=2300 250 300 f3=-300 80 brk
  841. IF nextPh(isPause2) THEN
  842. FMT(voc/z_pzd_) addWav(ufric/s_pzd_, 80)
  843. ENDIF
  844. FMT(voc/z_pzd) addWav(ufric/s_pzd, 80)
  845. endphoneme
  846. phoneme Z;
  847. vcd alp sib frc
  848. voicingswitch S;
  849. ipa ʑ
  850. lengthmod 6
  851. Vowelin f1=2 f2=2700 400 600 f3=300 80 rate len=70
  852. Vowelout f1=2 f2=2300 250 300 f3=-300 80 brk
  853. IF nextPh(isPause2) THEN
  854. FMT(voc/z_pzd_) addWav(ufric/sh_pzd_)
  855. ENDIF
  856. FMT(voc/z_pzd) addWav(ufric/sh_pzd, 80)
  857. endphoneme
  858. phoneme J^ // palatal fricative (Kirshenbaum C<vcd>)
  859. vcd pal frc pzd
  860. ipa ʝ
  861. voicingswitch C
  862. lengthmod 6
  863. Vowelin f1=1 f2=2700 400 600 f3=200 70
  864. Vowelout f1=1 f2=2700 400 600 f3=200 70 len=100
  865. FMT(voc/j) addWav(ufric/ch, 25)
  866. endphoneme
  867. phoneme Q
  868. vcd vel frc
  869. voicingswitch x
  870. lengthmod 6
  871. Vowelin f1=2 f2=2300 200 400 f3=-100 80
  872. Vowelout f1=2 f2=2300 250 300 f3=-300 80 brk
  873. IF KlattSynth THEN
  874. IF nextPh(isPause2) THEN
  875. FMT(klatt/qqh_) addWav(vocw/Q_)
  876. ENDIF
  877. FMT(klatt/qqh) addWav(vocw/Q)
  878. ENDIF
  879. IF nextPh(isPause2) THEN
  880. FMT(voc/Q_) addWav(vocw/Q_)
  881. ENDIF
  882. FMT(voc/Q) addWav(vocw/Q)
  883. endphoneme
  884. phoneme Q^
  885. vcd vel frc
  886. lengthmod 6
  887. Vowelin f1=2 f2=2700 400 600 f3=200 80
  888. Vowelout f1=2 f2=2700 40 600 f3=200 80 brk
  889. IF nextPh(isPause2) THEN
  890. FMT(voc/Q_) addWav(vocw/Q_)
  891. ENDIF
  892. FMT(voc/Q) addWav(vocw/Q)
  893. endphoneme
  894. phoneme Q"
  895. vcd uvl frc
  896. ipa ʁ
  897. lengthmod 6
  898. IF nextPh(isPause2) THEN
  899. FMT(voc/Q_ulv) addWav(ufric/xx, 60)
  900. ENDIF
  901. FMT(voc/Q_ulv) addWav(ufric/xx, 80)
  902. endphoneme
  903. //*******************************************************************
  904. // UNVOICED STOPS
  905. //*******************************************************************
  906. phoneme p
  907. vls blb stp
  908. voicingswitch b
  909. lengthmod 2
  910. Vowelin f1=0 f2=1000 -50 -100 f3=-200 80 amp=11
  911. Vowelout f1=0 f2=1000 -500 -350 f3=-300 80 rms=22
  912. IF nextPh(isPause2) THEN
  913. WAV(ustop/p_)
  914. ELIF nextPh(r) THEN
  915. WAV(ustop/pr, 70)
  916. ELIF nextPh(R) OR nextPh(R2) THEN
  917. WAV(ustop/pr)
  918. ELIF nextPh(@-) THEN
  919. WAV(ustop/p_unasp)
  920. ELIF nextPh(l) THEN
  921. WAV(ustop/pl)
  922. ENDIF
  923. WAV(ustop/p)
  924. endphoneme
  925. phoneme t
  926. vls alv stp
  927. voicingswitch d
  928. lengthmod 2
  929. Vowelin f1=0 f2=1700 -300 300 f3=-100 80
  930. Vowelout f1=0 f2=1700 -300 250 f3=-100 80 rms=20
  931. IF nextPh(isPause2) THEN
  932. WAV(ustop/t_)
  933. ELIF nextPh(r) OR nextPh(R) OR nextPh(R2) THEN
  934. WAV(ustop/tr)
  935. ELIF nextPh(@-) THEN
  936. WAV(ustop/t_dnt, 50)
  937. ENDIF
  938. WAV(ustop/t, 90)
  939. endphoneme
  940. phoneme t[ // dental variant of /t/
  941. vls dnt stp
  942. voicingswitch d[
  943. lengthmod 2
  944. Vowelin f1=1 f2=1500 -250 250 f3=-100 80 amp=16
  945. Vowelout f1=0 f2=1500 -300 250 f3=-100 80 rms=20
  946. IF nextPh(isPause2) THEN
  947. WAV(ustop/t_dnt, 35)
  948. ENDIF
  949. WAV(ustop/t_hi, 70)
  950. endphoneme
  951. phoneme tS // **ch**urch
  952. vls pla afr sib
  953. voicingswitch dZ
  954. lengthmod 2
  955. Vowelin f1=0 f2=2300 200 400 f3=-100 80
  956. IF nextPh(isPause2) THEN
  957. WAV(ustop/tsh_)
  958. ENDIF
  959. WAV(ustop/tsh)
  960. endphoneme
  961. phoneme tS;
  962. vls alp sib afr
  963. voicingswitch dZ;
  964. ipa tɕ
  965. lengthmod 2
  966. Vowelin f1=0 f2=2700 400 600 f3=300 80 rate len=70
  967. IF nextPh(isPause2) THEN
  968. WAV(ustop/ts_pzd)
  969. ENDIF
  970. WAV(ustop/ts_pzd)
  971. endphoneme
  972. phoneme c
  973. vls pal stp pzd
  974. voicingswitch J
  975. lengthmod 2
  976. Vowelin f1=0 f2=2700 400 600 f3=300 80 rate len=70
  977. Vowelout f1=1 f2=2700 400 600 f3=200 70 len=50 colr=1
  978. IF nextPh(isPause2) THEN
  979. WAV(ustop/t_pzd, 30)
  980. ENDIF
  981. WAV(ustop/c, 150)
  982. endphoneme
  983. phoneme k
  984. vls vel stp
  985. voicingswitch g
  986. lengthmod 2
  987. Vowelin f1=0 f2=2300 200 300 f3=-200 80
  988. Vowelout f1=0 f2=2300 300 400 f3=-200 80 rms=20
  989. IF KlattSynth THEN
  990. Vowelout f1=0 f2=2300 200 300 f3=-200 80 rms=20
  991. ENDIF
  992. IF nextPh(isPause2) THEN
  993. WAV(ustop/k_)
  994. ELIF nextPh(r) OR nextPh(R) OR nextPh(R2) THEN
  995. WAV(ustop/kr)
  996. ELIF nextPh(#i) OR nextPh(;) THEN
  997. WAV(ustop/ki)
  998. ELIF nextPh(l) THEN
  999. WAV(ustop/kl)
  1000. ELIF nextPh(@-) THEN
  1001. WAV(ustop/k_unasp, 70)
  1002. ENDIF
  1003. WAV(ustop/k)
  1004. endphoneme
  1005. phoneme q
  1006. vls uvl stp
  1007. lengthmod 2
  1008. Vowelin f1=1 f2=1700 0 200 f3=-300 80 gpaus f4 rms=30
  1009. Vowelout f1=1 f2=1700 -100 200 f3=-300 80 f4 rms=35
  1010. IF nextPh(isPause2) THEN
  1011. WAV(ustop/q, 40)
  1012. ELIF nextPh(#u) THEN
  1013. WAV(ustop/q_u, 80)
  1014. ENDIF
  1015. WAV(ustop/q, 48)
  1016. endphoneme
  1017. //*******************************************************************
  1018. // UNVOICED fricatives
  1019. //*******************************************************************
  1020. phoneme f
  1021. vls lbd frc
  1022. voicingswitch v
  1023. lengthmod 3
  1024. Vowelout f1=0 f2=1000 -500 -350 f3=-200 80
  1025. IF nextPh(isPause) THEN
  1026. WAV(ufric/f_)
  1027. ENDIF
  1028. WAV(ufric/f)
  1029. endphoneme
  1030. phoneme T // **th**in
  1031. vls dnt frc
  1032. voicingswitch D
  1033. lengthmod 3
  1034. Vowelin f1=0 f2=1700 -300 300 f3=-100 80
  1035. Vowelout f1=0 f2=1700 -300 250 f3=-100 80 rms=20
  1036. IF nextPh(isPause) THEN
  1037. WAV(ufric/th_)
  1038. ENDIF
  1039. WAV(ufric/th)
  1040. endphoneme
  1041. phoneme s
  1042. vls alv frc sib
  1043. voicingswitch z
  1044. lengthmod 3
  1045. Vowelin f1=0 f2=1700 -300 300 f3=-100 80
  1046. Vowelout f1=0 f2=1700 -300 250 f3=-100 80 rms=20
  1047. IF nextPh(isPause) THEN
  1048. WAV(ufric/s_)
  1049. ELIF nextPh(p) OR nextPh(t) OR nextPh(k) THEN
  1050. WAV(ufric/s!)
  1051. ENDIF
  1052. WAV(ufric/s)
  1053. endphoneme
  1054. phoneme S // **sh**op
  1055. vls pla frc sib
  1056. voicingswitch Z
  1057. lengthmod 3
  1058. Vowelin f1=0 f2=2100 100 300 f3=-100 80
  1059. Vowelout f1=0 f2=2100 100 300 f3=-100 80
  1060. IF nextPh(isPause) THEN
  1061. WAV(ufric/sh_)
  1062. ENDIF
  1063. WAV(ufric/sh)
  1064. endphoneme
  1065. phoneme s.
  1066. vls pla frc sib
  1067. ipa ʂ
  1068. voicingswitch z.
  1069. lengthmod 3
  1070. Vowelin f1=0 f2=1800 -100 300 f3=-300 80
  1071. Vowelout f1=0 f2=1800 -100 300 f3=-300 80
  1072. IF nextPh(isPause) THEN
  1073. WAV(ufric/sh_rfx, 60)
  1074. ENDIF
  1075. WAV(ufric/sh_rfx, 90)
  1076. endphoneme
  1077. phoneme s;
  1078. vls pal frc sib pzd
  1079. ipa ʂ
  1080. voicingswitch z;
  1081. lengthmod 3
  1082. Vowelin f1=1 f2=2700 400 600 f3=200 70 rate len=70
  1083. Vowelout f1=1 f2=2700 400 600 f3=200 70 rate len=70
  1084. IF nextPh(isPause) THEN
  1085. WAV(ufric/s_pzd_)
  1086. ENDIF
  1087. WAV(ufric/s_pzd)
  1088. endphoneme
  1089. phoneme S;
  1090. vls alp sib frc
  1091. voicingswitch Z;
  1092. ipa ɕ
  1093. lengthmod 3
  1094. Vowelin f1=1 f2=2700 400 600 f3=200 70 rate len=70
  1095. Vowelout f1=1 f2=2700 400 600 f3=200 70 rate
  1096. IF nextPh(isPause) THEN
  1097. WAV(ufric/sh_pzd_)
  1098. ENDIF
  1099. WAV(ufric/sh_pzd)
  1100. endphoneme
  1101. phoneme l# // Lateral fricative (eg. Welsh "ll")
  1102. vls alv frc
  1103. ipa ɬ
  1104. lengthmod 3
  1105. NextVowelStarts
  1106. VowelStart(l/l@)
  1107. VowelStart(l/la)
  1108. VowelStart(l/le)
  1109. VowelStart(l/li, -10)
  1110. VowelStart(l/lo)
  1111. VowelStart(l/lu)
  1112. EndSwitch
  1113. IF prevPh(isVowel) THEN
  1114. VowelEnding(l/xl, -40)
  1115. ENDIF
  1116. WAV(ufric/l#, 60)
  1117. endphoneme
  1118. phoneme C // German i**ch**
  1119. vls pal frc
  1120. lengthmod 3
  1121. Vowelin f1=0 f2=2700 400 600 f3=200 70
  1122. Vowelout f1=0 f2=2700 400 600 f3=200 70 rms=20
  1123. IF nextPh(isPause) THEN
  1124. WAV(ufric/ch_)
  1125. ENDIF
  1126. WAV(ufric/ch)
  1127. endphoneme
  1128. phoneme x // German bu**ch**
  1129. vls vel frc
  1130. voicingswitch Q
  1131. lengthmod 3
  1132. Vowelin f1=0 f2=2300 200 400 f3=-100 80
  1133. Vowelout f1=0 f2=2300 300 400 f3=-100 80 rms=20
  1134. IF nextPh(isPause) THEN
  1135. WAV(ufric/x_, 60)
  1136. ENDIF
  1137. WAV(ufric/x_hr, 20)
  1138. endphoneme
  1139. phoneme X
  1140. vls uvl frc
  1141. voicingswitch Q"
  1142. lengthmod 3
  1143. IF nextPh(isPause) THEN
  1144. WAV(ufric/xx, 70)
  1145. ENDIF
  1146. WAV(ufric/xx,80)
  1147. endphoneme
  1148. phoneme h
  1149. vls glt apr
  1150. lengthmod 3
  1151. ipa h
  1152. IF nextPh(#@) THEN
  1153. WAV(h/h@)
  1154. ELIF nextPh(#a) THEN
  1155. WAV(h/ha)
  1156. ELIF nextPh(#e) THEN
  1157. WAV(h/he)
  1158. ELIF nextPh(#i) THEN
  1159. WAV(h/hi)
  1160. ELIF nextPh(#o) THEN
  1161. WAV(h/ho)
  1162. ELIF nextPh(#u) THEN
  1163. WAV(h/hu)
  1164. ENDIF
  1165. WAV(h/h_, 70) // no vowel following
  1166. endphoneme
  1167. //*******************************************************************
  1168. // ADDITIONAL PHONEME TABLES
  1169. //*******************************************************************
  1170. phonemetable jp base1
  1171. include ph_japanese
  1172. phonemetable consonants base1
  1173. include ph_consonants
  1174. phonemetable base2 base1
  1175. include ph_base2
  1176. phonemetable en base1
  1177. include ph_english
  1178. phonemetable en-n en
  1179. include ph_english_n
  1180. phonemetable en-us en
  1181. include ph_english_us
  1182. phonemetable en-sc en
  1183. include ph_english_sc
  1184. phonemetable en-rp en
  1185. include ph_english_rp
  1186. phonemetable en-wm en
  1187. include ph_english_wm
  1188. phonemetable en-wi en
  1189. include ph_english_wi
  1190. phonemetable af base1
  1191. include ph_afrikaans
  1192. phonemetable cy base1
  1193. include ph_welsh
  1194. phonemetable ga base1
  1195. include ph_irish
  1196. phonemetable de base1
  1197. include ph_german
  1198. phonemetable eo base1
  1199. include ph_esperanto
  1200. phonemetable ia eo
  1201. include ph_interlingua
  1202. phonemetable jbo eo
  1203. include ph_lojban
  1204. phonemetable nci base2
  1205. include ph_nahuatl
  1206. phonemetable fi base1
  1207. include ph_finnish
  1208. phonemetable et base1
  1209. include ph_estonian
  1210. phonemetable fr base1
  1211. include ph_french
  1212. phonemetable fr-ca fr
  1213. include ph_french_ca
  1214. phonemetable nl base1
  1215. include ph_dutch
  1216. phonemetable hi_base base1
  1217. include ph_hindi_base
  1218. phonemetable hi hi_base
  1219. include ph_hindi
  1220. phonemetable bn hi_base
  1221. include ph_bengali
  1222. phonemetable ne hi_base
  1223. include ph_nepali
  1224. phonemetable ur hi_base
  1225. include ph_urdu
  1226. phonemetable pa hi_base
  1227. include ph_punjabi
  1228. phonemetable ta hi_base
  1229. include ph_tamil
  1230. phonemetable kn hi_base
  1231. include ph_kannada
  1232. phonemetable ml hi_base
  1233. include ph_malayalam
  1234. phonemetable gu hi_base
  1235. include ph_gujarati
  1236. phonemetable mr hi_base
  1237. include ph_marathi
  1238. phonemetable hu base1
  1239. include ph_hungarian
  1240. phonemetable lt base1
  1241. include ph_lithuanian
  1242. phonemetable lv base1
  1243. include ph_latvian
  1244. phonemetable pl base1
  1245. include ph_polish
  1246. phonemetable sk pl
  1247. include ph_slovak
  1248. phonemetable cs sk
  1249. include ph_czech
  1250. phonemetable hr sk
  1251. include ph_croatian
  1252. phonemetable mk hr
  1253. include ph_macedonian
  1254. phonemetable sr hr
  1255. include ph_serbian
  1256. phonemetable ru base1
  1257. include ph_russian
  1258. phonemetable bg pl
  1259. include ph_bulgarian
  1260. phonemetable it base2
  1261. include ph_italian
  1262. phonemetable la base1
  1263. include ph_latin
  1264. phonemetable es base2
  1265. include ph_spanish
  1266. phonemetable es-la es
  1267. include ph_spanish_la
  1268. phonemetable ca es
  1269. include ph_catalan
  1270. phonemetable an es
  1271. include ph_aragon
  1272. phonemetable eu base2
  1273. include ph_basque
  1274. phonemetable pt base2
  1275. include ph_pt_brazil
  1276. phonemetable pt-pt pt
  1277. include ph_portugal
  1278. phonemetable ro base2
  1279. include ph_romanian
  1280. phonemetable el base2
  1281. include ph_greek
  1282. phonemetable grc base2
  1283. include ph_greek_ancient
  1284. phonemetable sv base1
  1285. include ph_swedish
  1286. phonemetable no base1
  1287. include ph_norwegian
  1288. phonemetable is base1
  1289. include ph_icelandic
  1290. phonemetable vi base1
  1291. include ph_vietnam
  1292. phonemetable vi-hue vi
  1293. include ph_vietnam_hue
  1294. phonemetable vi-sgn vi
  1295. include ph_vietnam_sgn
  1296. phonemetable zhy base1
  1297. include ph_zh_yue
  1298. phonemetable zh base1
  1299. include ph_zh
  1300. phonemetable sw base1
  1301. include ph_swahili
  1302. phonemetable tr base2
  1303. include ph_turkish
  1304. phonemetable ku base2
  1305. include ph_kurdish
  1306. phonemetable id base2
  1307. include ph_indonesian
  1308. phonemetable sq base1
  1309. include ph_albanian
  1310. phonemetable hy base1
  1311. include ph_armenian
  1312. phonemetable da base1
  1313. include ph_danish
  1314. phonemetable ka base1
  1315. include ph_georgian
  1316. phonemetable fa base1
  1317. include ph_farsi
  1318. phonemetable ar base1
  1319. include ph_arabic
  1320. phonemetable rw base2
  1321. include ph_kinyarwanda
  1322. phonemetable prs base1
  1323. include ph_dari
  1324. phonemetable sl pl
  1325. include ph_slovenian
  1326. phonemetable gd base1
  1327. include ph_s_gaelic
  1328. phonemetable nso base1
  1329. include ph_northern-sotho
  1330. phonemetable ht fr
  1331. include ph_haitian
  1332. phonemetable az tr
  1333. include ph_azerbaijani
  1334. phonemetable ak base1
  1335. include ph_akan
  1336. phonemetable am base1
  1337. include ph_amhari
  1338. phonemetable wo base1
  1339. include ph_wolof
  1340. phonemetable dv hi_base
  1341. include ph_divehi
  1342. phonemetable te hi_base
  1343. include ph_telugu
  1344. phonemetable si hi_base
  1345. include ph_sinhala
  1346. phonemetable as bn
  1347. include ph_assamese
  1348. phonemetable or bn
  1349. include ph_oriya
  1350. phonemetable mni bn
  1351. include ph_manipuri
  1352. phonemetable tn base1
  1353. include ph_setswana
  1354. phonemetable mt base1
  1355. include ph_maltese
  1356. phonemetable bo hi
  1357. include ph_tibetan
  1358. phonemetable kk base1
  1359. include ph_kazakh
  1360. phonemetable tt base1
  1361. include ph_tatar
  1362. phonemetable ko base1
  1363. include ph_korean
  1364. phonemetable kl base1
  1365. include ph_greenlandic
  1366. phonemetable om base1
  1367. include ph_oromo
  1368. phonemetable my base1
  1369. include ph_burmese
  1370. phonemetable gn base1
  1371. include ph_guarani
  1372. phonemetable ky base1
  1373. include ph_kyrgyz