| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968 | 
							- //====================================================
 - //  French
 - //====================================================
 - // Updated 2011-10-14 Michel Such  <[email protected]>
 - 
 - phoneme #l  virtual
 - // Used for l and l/
 - endphoneme
 - 
 - phoneme #r  virtual
 - // Used for "r" sounds
 - endphoneme
 - 
 - phoneme : //  Lengthen previous vowel by "length"
 -   virtual
 -   length 40
 - endphoneme
 - 
 - phoneme #cFR  virtual
 - // To identify "b k d f g p t v" when before "r"
 - endphoneme
 - 
 - 
 - procedure pre_r
 -   IF prevPh(y) THEN
 -     VowelEnding(vwl_fr/y2r)
 -   ELIF prevPh(E) THEN
 -     VowelEnding(vwl_fr/e_2r)
 -   ELIF prevPh(A~) THEN
 -     VowelEnding(vwl_fr/aa2r)
 -   ELIF prevPh(E~) OR prevPh(W~) THEN
 -     VowelEnding(vwl_fr/ee2r)
 -   ELIF prevPh(O~) THEN
 -     VowelEnding(vwl_fr/oo2r)
 -   ELIF prevPh(isVowel) THEN
 -     PrevVowelEndings
 -       VowelEnding(vwl_fr/@2r)
 -       VowelEnding(vwl_fr/a2r)
 -       VowelEnding(vwl_fr/e2r)
 -       VowelEnding(vwl_fr/i2r)
 -       VowelEnding(vwl_fr/o2r)
 -       VowelEnding(vwl_fr/u2r)
 -     EndSwitch
 -   ENDIF
 - endprocedure
 - 
 - 
 - procedure post_r
 - 
 -   IF nextPh(E) THEN
 -     VowelStart(vwl_fr/re2)
 -   ELIF nextPh(W) THEN
 -     VowelStart(vwl_fr/r@2)
 -   ELIF nextPh(A~) THEN
 -     VowelStart(vwl_fr/raa)
 -   ELIF nextPh(E~) OR nextPh(W~) THEN
 -     VowelStart(vwl_fr/ree)
 -   ELIF nextPh(y) THEN
 -     VowelStart(vwl_fr/ry)
 -   ELIF nextPh(w) THEN
 -     VowelStart(vwl_fr/rw)
 -   ELIF nextPh(O~) THEN
 -     VowelStart(vwl_fr/roo)
 -   ELIF nextPh(j) OR nextPh(j/) THEN
 -     VowelStart(vwl_fr/rj)
 -   ELIF nextPh(isVowel) THEN
 -     NextVowelStarts
 -       VowelStart(vwl_fr/r@)
 -       VowelStart(vwl_fr/ra)
 -       VowelStart(vwl_fr/re)
 -       VowelStart(vwl_fr/ri)
 -       VowelStart(vwl_fr/ro)
 -       VowelStart(vwl_fr/ru)
 -     EndSwitch
 -   ENDIF
 - endprocedure
 - 
 - 
 - phoneme r
 -     vcd uvl frc nopause
 -     rhotic
 -   starttype #r  endtype #r
 -   Vowelin f1=0  f2=1500 -400 400  f3=-400 80
 -   lengthmod 7
 -   ipa U+0281
 - 
 -   IF nextPh(isNotVowel) THEN
 -     ChangePhoneme(r/)
 -   ELIF prevPh(isNotVowel) OR prevPh(isPause) THEN
 -     ChangePhoneme(r/2)
 -   ENDIF
 - 
 -   CALL pre_r
 -   CALL post_r
 - 
 -   FMT(vwl_fr/r)
 - endphoneme
 - 
 - 
 - phoneme r2	// silent unless followed by vowel
 -   vcd uvl frc
 -   rhotic
 -   starttype #r  endtype #r
 -   ipa U+0281
 - 
 -   IF nextPh(isNotVowel) THEN
 -     ChangePhoneme(NULL)
 -   ELSE
 -     ChangePhoneme(r)
 -   ENDIF
 - endphoneme
 - 
 - 
 - phoneme r/   // variant of [r] when not preceding a vowel
 -   vcd uvl frc
 -   rhotic
 -   starttype #r  endtype #r
 -   lengthmod 7
 -   ipa ʁ
 - 
 -   IF prevPhW(t) OR prevPhW(p) OR prevPhW(k) THEN
 -     FMT(vwl_fr/trr) addWav(r3/rx, 15)
 -   ELIF prevPh(isNotVowel) THEN
 -     FMT(vwl_fr/rr) addWav(r3/rx, 15)
 -   ENDIF
 - 
 -   PrevVowelEndings
 -     VowelEnding(vwl_fr/r_@)
 -     VowelEnding(vwl_fr/r_a)
 -     VowelEnding(vwl_fr/r_e)
 -     VowelEnding(vwl_fr/r_i)
 -     VowelEnding(vwl_fr/r_o)
 -     VowelEnding(vwl_fr/r_u)
 -   EndSwitch
 -   IF prevPh(y) THEN
 -     VowelEnding(vwl_fr/r_y)
 -   ENDIF
 - 
 -   IF nextPh(isNasal) THEN
 -     FMT(vwl_fr/r_n) addWav(r3/rx, 20)
 -   ELIF nextPh(#r) THEN
 -     length 30
 -   ENDIF
 - 
 -   FMT(vwl_fr/r_) addWav(r3/rx, 20)
 - endphoneme
 - 
 - 
 - phoneme r/2
 -   liquid rhotic uvl nopause
 -   starttype #r  endtype #r
 -   Vowelin f1=0  f2=1500 -400 400  f3=-400 80
 -   ipa U+0281
 - 
 -   CALL post_r
 -   IF prevPhW(f) OR prevPhW(k) OR prevPhW(p) OR prevPhW(s) OR prevPhW(t) OR prevPhW(S) THEN
 -     FMT(vwl_fr/tr)
 -   ELIF prevPhW(#cFR) THEN
 -     FMT(vwl_fr/br)
 -   ELSE
 -     length 80
 -     FMT(vwl_fr/r)
 -   ENDIF
 - endphoneme
 - 
 - 
 - phoneme l
 -   liquid
 -   starttype #l endtype #l
 -   lengthmod 7
 - 
 -   IF nextPh(isNotVowel) THEN
 -     ChangePhoneme(l/)
 -   ELIF prevPhW(#cFR) THEN
 -     ChangePhoneme(l/2)
 -   ENDIF
 - 
 -   NextVowelStarts
 -     VowelStart(l/l@)
 -     VowelStart(l/la, -10)
 -     VowelStart(l/le, -15)
 -     VowelStart(l/li, -15)
 -     VowelStart(vwl_fr/lo, -10)
 -     VowelStart(l/lu, -20)
 -   EndSwitch
 - 
 -   IF prevPh(#@) THEN
 -     VowelEnding(l/xl, -50)
 -   ELIF prevPh(isVowel) THEN
 -     VowelEnding(l/xl, -40)
 -   ENDIF
 - 
 -   IF prevPh(isPause) OR thisPh(isWordStart) THEN
 -     FMT(l/_l)
 -   ENDIF
 -   IF prevPh(isRhotic) OR prevPh(isNasal) THEN
 -     FMT(l/_l)
 -   ENDIF
 - 
 -   IF prevPh(t) THEN
 -     FMT(l/tl)
 -   ENDIF
 - 
 -   IF prevPh(l/) THEN
 -     FMT(l/l_long)    // double l, make it longer
 -   ENDIF
 - 
 -   FMT(l/l)
 - endphoneme
 - 
 - 
 - phoneme l/    // used for [l] when not before a vowel
 -   liquid rfx
 -   starttype #l endtype #l
 -   lengthmod 7
 - 
 -   IF nextPh(isVowel) THEN
 -     ChangePhoneme(l)
 -   ENDIF
 - 
 -   IF prevPhW(y) THEN
 -     VowelEnding(l/l_y)
 -   ELIF prevPhW(isVowel) THEN
 -     PrevVowelEndings
 -       VowelEnding(l/l_@)
 -       VowelEnding(l/l_a)
 -       VowelEnding(l/l_e)
 -       VowelEnding(l/l_i)
 -       VowelEnding(l/l_o)
 -       VowelEnding(l/l_u)
 -   EndSwitch
 - ENDIF
 - 
 -   IF prevPh(#r) THEN
 -     FMT(l/_l)
 -   ENDIF
 - 
 -   FMT(l/l_)
 - endphoneme
 - 
 - 
 - phoneme l/2
 -   liquid
 -   starttype #l endtype #l
 - 
 -   IF nextPh(isNotVowel) THEN
 -     ChangePhoneme(l/)
 -   ENDIF
 - 
 -   NextVowelStarts
 -     VowelStart(l/l@)
 -     VowelStart(l/la, -10)
 -     VowelStart(l/le, -15)
 -     VowelStart(l/li, -15)
 -     VowelStart(l/lo, -10)
 -     VowelStart(l/lu, -20)
 -   EndSwitch
 - 
 -   IF prevPh(t) THEN
 -     FMT(l/tl)
 -   ENDIF
 - 
 -   FMT(l/l)
 - endphoneme
 - 
 - 
 - // Vowels
 - //=======
 - phoneme @
 -   vwl starttype #@  endtype #@
 -   length 170
 -   FMT(vowel/@_hgh)
 - endphoneme
 - 
 - phoneme @-
 -   vwl starttype #@  endtype #@
 -   unstressed
 -   length 130
 -   FMT(vowel/@_hgh)
 - endphoneme
 - 
 - 
 - phoneme a
 -   vwl  starttype #a  endtype #a
 -   IF nextPhW(isVowel)  THEN
 -     length 220
 -   ELSE
 -     length 170
 -   ENDIF
 - 
 -   FMT(vowel/a_7)
 - endphoneme
 - 
 - 
 - phoneme a-
 -   vwl  starttype #a  endtype #a
 -   unstressed
 -   length 130
 - 
 -   FMT(vowel/a_7, 85)
 - endphoneme
 - 
 - 
 - phoneme a# // For english words
 -   import_phoneme en/a#
 - endphoneme
 - 
 - 
 - phoneme e
 -   vwl starttype #e  endtype #e
 - 
 -   IF nextPh(l/) THEN
 -     VowelEnding(l/xl, -20)
 -   ELIF nextPh(isVowel) THEN
 -     length 200
 -   ELSE
 -     length 170
 -   ENDIF
 - 
 -   FMT(vowel/e_8)
 - endphoneme
 - 
 - 
 - phoneme e-
 -   vwl starttype #e  endtype #e
 -   unstressed
 -   length 130
 -   FMT(vowel/e_8)
 - endphoneme
 - 
 - 
 - phoneme E
 -   vwl starttype #e  endtype #e
 - 
 -   IF nextPhW(j) THEN
 -     length 190
 -   ELSE
 -     length 170
 -   ENDIF
 - 
 -   FMT(vowel/e_mid)
 - endphoneme
 - 
 - 
 - phoneme E-
 -   vwl starttype #e  endtype #e
 -   unstressed
 -   length 130
 -   FMT(vowel/e_mid)
 - endphoneme
 - 
 - 
 - phoneme i
 -   vwl starttype #i  endtype #i
 -   pzd
 - 
 -   IF prevPhW(r/2) OR prevPhW(l/2) THEN
 -     IF nextPhW(isVowel) THEN
 -       length 240
 -     ENDIF
 -   ELIF prevPhW(#r) AND nextPhW(isVowel) THEN
 -     IF nextPhW(#i) THEN
 -       length 220
 -       IfNextVowelAppend(;)
 -     ELSE
 -       ChangePhoneme(j/)
 -     ENDIF
 -   ELIF nextPhW(isVowel) THEN
 -     ChangePhoneme(j)
 -   ELSE
 -     length 150
 -     IfNextVowelAppend(;)
 -   ENDIF
 - 
 -   FMT(vowel/i_8)
 - endphoneme
 - 
 - 
 - phoneme I // For english words
 -   import_phoneme en/I
 - endphoneme
 - 
 - 
 - phoneme I2 // For english words
 -   import_phoneme en/I2
 - endphoneme
 - 
 - 
 - phoneme j/ // Short "i" between "r" and a vowel
 -   vwl starttype #i endtype #i
 -   length 80
 - //  unstressed
 - 
 -   NextVowelStarts
 -     VowelStart(j/j@)
 -     VowelStart(j/ja)
 -     VowelStart(j/je)
 -     VowelStart(j/ji)
 -     VowelStart(j/jo)
 -     VowelStart(j/ju)
 -   EndSwitch
 -    FMT(vwl_fr/j)
 - endphoneme
 - 
 - 
 - phoneme o
 -   vwl starttype #o  endtype #o
 -   IF nextPh(isVowel)  THEN
 -     length 220
 -   ELSE
 -     length 170
 -   ENDIF
 - 
 -   IF thisPh(isFinalVowel) THEN
 -     FMT(vowel/o_8)
 -   ELSE
 -     FMT(vowel/o)
 -   ENDIF
 - endphoneme
 - 
 - 
 - phoneme O
 -   vwl starttype #o  endtype #o
 -   length 170
 - 
 -   IF thisPh(isFinalVowel) THEN
 -     FMT(vowel/o_mid2)
 -   ENDIF
 -   IF nextPhW(#l) AND next2Ph(isNotVowel) THEN
 -     FMT(vowel/o_mid2)
 -   ENDIF
 -   IF nextPhW(#r) AND next2Ph(isNotVowel) THEN
 -     FMT(vowel/o_mid2)
 -   ENDIF
 - 
 -   FMT(vowel/o_mid)
 - endphoneme
 - 
 - 
 - phoneme oU
 -   import_phoneme en/oU
 - endphoneme
 - 
 - 
 - phoneme u
 -   vwl starttype #u  endtype #u
 -   IF nextPh(isVowel)  OR nextPh(j) THEN
 -     length 220
 -   ELSE
 -     length 180
 -   ENDIF
 - 
 -   FMT(vowel/u_bck2)
 - endphoneme
 - 
 - 
 - phoneme u: // slitely longer than u
 -   vwl starttype #u endtype #u
 -   length 240
 -   FMT(vowel/u_bck2)
 - endphoneme
 - 
 - 
 - phoneme y
 -   vwl starttype #u  endtype #u
 - 
 -   IF nextPhW(E~) OR nextPhW(#i) THEN
 -     length 110
 -     FMT(vowel/y, 80)
 -   ENDIF
 - 
 -   length 180
 -   FMT(vowel/y)
 - endphoneme
 - 
 - 
 - phoneme y-
 -   vwl starttype #u  endtype #u
 -   unstressed
 - 
 -   length 130
 -   FMT(vowel/y)
 - endphoneme
 - 
 - 
 - phoneme W
 -   vwl starttype #@  endtype #@
 -   length 180
 - 
 -   FMT(vowel/@_6)
 - endphoneme
 - 
 - 
 - phoneme W2 // For english words
 -   vwl starttype #@  endtype #@
 -   length 100
 -   unstressed
 - 
 -   FMT(vowel/@_6)
 - endphoneme
 - 
 - 
 - phoneme Y
 -   vwl starttype #@  endtype #@
 -   length 170
 - 
 -   FMT(vowel/y#)
 - endphoneme
 - 
 - 
 - phoneme w
 -   vwl starttype #u  endtype #u
 - 
 -   IF prevPh(#r) OR prevPhW(#l) THEN
 -     NextVowelStarts
 -       VowelStart(w/w@)
 -       VowelStart(vwl_fr/wa)
 -       VowelStart(w/we)
 -       VowelStart(w/wi)
 -       VowelStart(w/wo)
 -       VowelStart(w/wu)
 -     EndSwitch
 -   ELSE
 -     ChangePhoneme(w/)
 -   ENDIF
 - endphoneme
 - 
 - 
 - phoneme w/
 -   liquid
 -   lengthmod 7
 - 
 -   IF nextPh(isVowel) THEN
 -     NextVowelStarts
 -       VowelStart(w/w@)
 -       VowelStart(vwl_fr/wa)
 -       VowelStart(w/we)
 -       VowelStart(w/wi)
 -       VowelStart(w/wo)
 -       VowelStart(w/wu)
 -     EndSwitch
 - 
 -     VowelEnding(w/xw, -30)
 - 
 -     IF prevPh(isPause) THEN
 -       FMT(w/_w)
 -     ELSE
 -       FMT(w/_w)
 -     ENDIF
 -   ELSE
 -     // no vowel follows
 -     Vowelout len=50
 -     IF prevPh(#i) THEN
 -       FMT(w/iw_)
 -     ENDIF
 -     FMT(w/w_)
 -   ENDIF
 - endphoneme
 - 
 - 
 - phoneme A~
 -   vwl  starttype #a  endtype #a
 -   length 190
 - 
 -   FMT(vnasal/aa_n4)
 - endphoneme
 - 
 - 
 - phoneme E~  // same as W~ for fr-fr
 -   vwl  starttype #e  endtype #e
 -   length 190
 - 
 -   IF nextPh(n2) THEN
 -     FMT(vowel/e_mid)
 -   ENDIF
 -   FMT(vnasal/W_n)
 - endphoneme
 - 
 - 
 - phoneme O~
 -   vwl  starttype #o  endtype #o
 -   length 190
 -   FMT(vnasal/o_n5)
 - endphoneme
 - 
 - 
 - phoneme W~
 -   vwl  starttype #@  endtype #@
 -   length 190
 -   FMT(vnasal/W_n)
 - endphoneme
 - 
 - 
 - 
 - // CONSONANTS
 - //===========
 - // uses the consonants in file "phonemes", unless overridden here
 - 
 - phoneme b
 -   vcd blb stp
 -   starttype #cFR endtype #cFR
 -   voicingswitch p
 -   lengthmod 6
 -   Vowelin  f1=2  f2=1000 -300 -200  f3=-100 100
 -   Vowelout f1=2  f2=1000 -500 -300  f3=-300 80 brk
 - 
 -   IF KlattSynth THEN
 -     Vowelin f1=1  f2=1000 -500 -300  f3=-300 80
 -     IF nextPh(isPause2) THEN
 -       FMT(klatt/b)  addWav(x/b_)
 -     ENDIF
 -     FMT(klatt/b) addWav(x/b)
 -   ENDIF
 - 
 -   IF PreVoicing THEN
 -     IF nextPhW(#r) THEN
 -       FMT(b/xbr)
 -     ELSE
 -       FMT(b/xb)
 -     ENDIF
 -   ENDIF
 - 
 -   IF nextPh(isPause2) OR nextPh(l) THEN
 -     FMT(b/b_) addWav(x/b_)
 -   ELIF nextPh(l/) THEN
 -     FMT(b/b)
 -   ELIF nextPh(#r) THEN
 -     FMT(b/br) addWav(x/b, 50)
 -   ENDIF
 - 
 -   FMT(b/b) addWav(x/b, 70)
 - endphoneme
 - 
 - 
 - phoneme d
 -   vcd alv stp
 -   starttype #cFR endtype #cFR
 -   voicingswitch t
 -   lengthmod 5
 -   Vowelin f1=1  f2=1700 -300 300  f3=-100 80 amp=20
 -   Vowelout f1=2 f2=1700 -300 300  f3=-100 80
 - 
 -   IF PreVoicing THEN
 -     IF nextPhW(#r) THEN
 -       FMT(d/xdr)
 -     ELSE
 -       FMT(d/xd)
 -     ENDIF
 -   ENDIF
 - 
 -   IF nextPh(isPause2) THEN
 -     FMT(d/d_)  addWav(x/d_, 50)
 -   ELIF nextPhW(#r) THEN
 -     FMT(d/dr)  addWav(x/d_, 50)
 -   ENDIF
 - 
 -   FMT(d/d) addWav(x/d, 40)
 - endphoneme
 - 
 - 
 - phoneme f
 -   vls lbd frc
 -   starttype #cFR endtype #cFR
 -   voicingswitch v
 -   lengthmod 3
 -   Vowelout f1=0  f2=1000 -500 -350  f3=-200 100
 - 
 -   IF nextPh(isPause) THEN
 -     WAV(ufric/f_)
 -   ENDIF
 -   WAV(ufric/f, 80)
 - endphoneme
 - 
 - 
 - phoneme g
 -   vcd vel stp
 -   starttype #cFR endtype #cFR
 -   voicingswitch k
 -   lengthmod 5
 -   Vowelin f1=2  f2=2300 200 300  f3=-300 80
 -   Vowelout f1=1  f2=2300 250 300  f3=-300 80 brk
 - 
 -   IF PreVoicing THEN
 -     IF nextPhW(#r) THEN
 -       FMT(g/xgr)
 -     ELSE
 -       FMT(g/xg)
 -     ENDIF
 -   ENDIF
 - 
 -   IF nextPh(isPause2) THEN
 -     FMT(g/g_) addWav(x/g_)
 -   ELIF nextPhW(#r) THEN
 -     FMT(g/gr) addWav(x/g, 20)
 -   ENDIF
 - 
 -   FMT(g/g) addWav(x/g, 20)
 - endphoneme
 - 
 - 
 - phoneme k
 -   vls vel stp
 -   starttype #cFR endtype #cFR
 -   voicingswitch g
 -   length 50
 -   lengthmod 2
 -   Vowelin f1=0  f2=2300 200 400  f3=-100 80
 -   Vowelout f1=0 f2=2300 300 400  f3=-100 80  rms=20
 - 
 -   IF nextPh(isPause2) THEN
 -     WAV(ustop/k_)
 -   ELIF nextPh(#i) OR nextPh(;) THEN
 -     WAV(ustop/ki, 45)
 -   ELIF nextPh(#l) THEN
 -     WAV(ustop/kl, 40)
 -   ELIF nextPh(#r) THEN
 -     length 45
 -     WAV(ustop/k, 50)
 -   ENDIF
 - 
 -   WAV(ustop/k, 40)
 - endphoneme
 - 
 - 
 - phoneme n
 -   vcd alv nas
 -   Vowelout f1=2 f2=1700 -300 250  f3=-100 80  rms=20 brk
 -   lengthmod 4
 - 
 -   IF KlattSynth THEN
 -     Vowelin f1=0 f2=1500 -200 200 f3=0 80
 -     FMT(klatt/n)
 -   ENDIF
 - 
 -   NextVowelStarts
 -     VowelStart(n/n@)
 -     VowelStart(n/na)
 -     VowelStart(n/ne)
 -     VowelStart(n/ni)
 -     VowelStart(n/no)
 -     VowelStart(n/nu)
 -   EndSwitch
 - 
 -   IF prevPh(isNotVowel) AND nextPhW(isLiquid) THEN
 -     FMT(n/nj)
 -   ELIF prevPh(isPause) OR prevPh(n) THEN
 -     FMT(n/_n)
 -   ELIF nextPh(isNotVowel) THEN
 -     length 120
 -     FMT(n/n_long_)
 -   ENDIF
 - endphoneme
 - 
 - 
 - phoneme n2
 -   vcd alv nas
 -   IF nextPh(w) OR nextPh(isVowel) THEN
 -     ChangePhoneme(n)
 -   ELSE
 -     ChangePhoneme(NULL)
 -   ENDIF
 - endphoneme
 - 
 - 
 - phoneme p
 -   vls blb stp
 -   starttype #cFR endtype #cFR
 -   voicingswitch b
 -   lengthmod 2
 -   Vowelin  f1=0  f2=1000 -50 -100  f3=-200 80 amp=11
 -   Vowelout f1=0  f2=1000 -500 -350  f3=-300 80 rms=22
 - 
 -   IF nextPh(isPause2) THEN
 -     WAV(ustop/p_, 80)
 -   ELIF nextPh(@-) THEN
 -     WAV(ustop/p_unasp, 70)
 -   ELIF nextPh(#l) THEN
 -     WAV(ustop/pl, 50)
 -   ELIF nextPh(#r) THEN
 -     length 40
 -     WAV(ustop/p_, 80)
 -   ENDIF
 -   WAV(ustop/p_unasp_, 90)
 - endphoneme
 - 
 - 
 - phoneme p2 // silent unless followed by vowel
 -   vls blb stp
 -   lengthmod 2
 -   Vowelin  f1=0  f2=1000 -50 -100  f3=-200 80 amp=11
 -   Vowelout f1=0  f2=1000 -500 -350  f3=-300 80 rms=22
 - 
 -   IF nextPh(isNotVowel) THEN
 -     ChangePhoneme(NULL)
 -   ENDIF
 - 
 -   WAV(ustop/p, 45)
 - endphoneme
 - 
 - 
 - phoneme s
 -   vls alv frc sib
 -   voicingswitch z
 -   lengthmod 3
 -   Vowelin  f1=0  f2=1700 -300 300  f3=-100 80
 -   Vowelout f1=0  f2=1700 -300 250  f3=-100 80  rms=20
 - 
 -   IF nextPh(isPause) THEN
 -     WAV(ufric/s_, 45)
 -   ELIF nextPh(p) OR nextPh(t) OR nextPh(k) THEN
 -     WAV(ufric/s!, 45)
 -   ENDIF
 - 
 -   WAV(ufric/s, 45)
 - endphoneme
 - 
 - 
 - phoneme S
 -   vls pla frc sib
 -   starttype #cFR endtype #cFR
 -   voicingswitch Z
 -   lengthmod 3
 -   Vowelin  f1=0  f2=1900 100 300  f3=-100 80
 -   Vowelout f1=0  f2=1900 100 300  f3=-100 80
 - 
 -   IF prevPhW(t) THEN
 -     length 60
 -   ENDIF
 - 
 -   IF nextPh(isPause) THEN
 -     WAV(ufric/sh_, 45)
 -   ENDIF
 -   WAV(ufric/sh, 45)
 - endphoneme
 - 
 - 
 - 
 - phoneme t
 -   vls alv stp
 -   starttype #cFR endtype #cFR
 -   voicingswitch d
 -   lengthmod 2
 -   Vowelin f1=0  f2=1700 -300 300  f3=-100 80
 -   Vowelout f1=0 f2=1700 -300 250  f3=-100 80  rms=20
 - 
 -   IF nextPh(isPause2) THEN
 -     WAV(ustop/t_, 40)
 -   ELIF nextPh(#r) THEN
 -     length 40
 -     WAV(ustop/t_short_, 50)
 -   ENDIF
 - 
 -   WAV(ustop/t_short, 40)
 - endphoneme
 - 
 - 
 - phoneme t2      // silent unless followed by vowel
 -   vls alv stp
 -   Vowelin f1=0  f2=1600 -300 300  f3=-100 80
 -   Vowelout f1=0 f2=1600 -300 250  f3=-100 80  rms=20
 -   lengthmod 2
 - 
 -   IF nextPh(isVowel) OR nextPh(w) OR nextPh(j) THEN
 -     WAV(ustop/t_short, 30)
 -   ELSE
 -     ChangePhoneme(NULL)
 -   ENDIF
 - 
 - endphoneme
 - 
 - 
 - phoneme t3      // silent unless followed by vowel or pause
 -   vls alv stp
 -   lengthmod 2
 -   IF nextPh(isPause) THEN
 -     ChangePhoneme(t)
 -   ELIF nextPh(isNotVowel) THEN
 -     ChangePhoneme(NULL)
 -   ELSE
 -     ChangePhoneme(t2)
 -   ENDIF
 - endphoneme
 - 
 - 
 - phoneme v
 -   vcd lbd frc
 -   starttype #cFR endtype #cFR
 -   voicingswitch f
 -   lengthmod 6
 -   length 90
 -   Vowelin  f1=0  f2=1000 -300 -200  f3=-300 100
 -   Vowelout f1=0  f2=1000 -500 -300  f3=-300 100
 - 
 -   IF KlattSynth THEN
 -     CALL base1/v
 -     RETURN
 -   ENDIF
 - 
 -   IF nextPh(isPause2) THEN
 -     FMT(voc/v_) addWav(vocw/v)
 -   ENDIF
 -   IF thisPh(isWordStart) AND nextPhW(isLiquid) THEN
 -     length 70
 -   ELIF nextPhW(w/) OR nextPhW(#r) THEN
 -     length 60
 -   ENDIF
 -   FMT(voc/v) addWav(vocw/v, 60)
 - endphoneme
 - 
 - phoneme V // For english words
 -   vwl  starttype #a  endtype #@
 -   length 140
 - 
 -   ChangeIfDiminished(@)
 -   FMT(vowel/V_2)
 - endphoneme
 - 
 - 
 - phoneme z
 -   vcd alv frc sib
 -   voicingswitch s
 -   lengthmod 6
 -   Vowelout f1=0  f2=1700 -300 300  f3=-100 60  len=50
 - 
 -   IF nextPhW(z) THEN
 -     FMT(d/xd)
 -   ENDIF
 - 
 -   IF nextPh(isPause2) OR nextPh(isPause) THEN
 -     FMT(voc/z_) addWav(ufric/s_, 45)
 -   ENDIF
 - 
 -   IF prevPhW(t) THEN
 -     length 60
 -   ENDIF
 - 
 -   FMT(voc/z) addWav(ufric/s_, 45)
 - endphoneme
 - 
 - 
 - phoneme z2      // silent unless followed by vowel
 -   vcd alv frc sib
 -   IF nextPh(isVowel) OR nextPh(w/) OR nextPh(j) THEN
 -     length 70
 -     FMT(voc/z) addWav(ufric/s, 40)
 -   ELSE
 -     ChangePhoneme(NULL)
 -   ENDIF
 - endphoneme
 - 
 - 
 - phoneme z3      // "six" and "dix". [s] before pause, [z] before vowel, else []
 -   vcd alv frc sib
 -   IF nextPh(isPause) THEN
 -     ChangePhoneme(s)
 -   ELIF nextPh(isVowel) OR nextPh(w/) THEN
 -     ChangePhoneme(z)
 -   ELSE
 -     ChangePhoneme(NULL)
 -   ENDIF
 - endphoneme
 - 
 - phoneme j.
 -   liquid
 -   lengthmod 7
 -   ipa U+0265
 -   ChangePhoneme(y)
 - endphoneme
 
 
  |