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

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