Benchmarking notebooks for various Persian G2P models, comparing their performance on the SentenceBench dataset, including Homo-GE2PE and Homo-T5.
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.

Benchmark_HomoFast_eSpeak.ipynb 511KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419
  1. {
  2. "nbformat": 4,
  3. "nbformat_minor": 0,
  4. "metadata": {
  5. "colab": {
  6. "provenance": [],
  7. "collapsed_sections": [
  8. "ABgLYF9R8viP",
  9. "AdU8VMTIOWLZ",
  10. "a3zuvbqx2l68",
  11. "y73zFlRGIbt9",
  12. "oBgNtpFQDwku",
  13. "JGEUIrbi9kNH"
  14. ]
  15. },
  16. "kernelspec": {
  17. "name": "python3",
  18. "display_name": "Python 3"
  19. },
  20. "language_info": {
  21. "name": "python"
  22. }
  23. },
  24. "cells": [
  25. {
  26. "cell_type": "code",
  27. "source": [
  28. "! pip install hazm==0.10.0"
  29. ],
  30. "metadata": {
  31. "colab": {
  32. "base_uri": "https://localhost:8080/",
  33. "height": 1000
  34. },
  35. "id": "x9PoNmQkN7gA",
  36. "outputId": "0a66ad18-563b-4b5f-88c0-7f06e14e822a"
  37. },
  38. "execution_count": null,
  39. "outputs": [
  40. {
  41. "output_type": "stream",
  42. "name": "stdout",
  43. "text": [
  44. "Collecting hazm==0.10.0\n",
  45. " Downloading hazm-0.10.0-py3-none-any.whl.metadata (11 kB)\n",
  46. "Collecting fasttext-wheel<0.10.0,>=0.9.2 (from hazm==0.10.0)\n",
  47. " Downloading fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (16 kB)\n",
  48. "Collecting flashtext<3.0,>=2.7 (from hazm==0.10.0)\n",
  49. " Downloading flashtext-2.7.tar.gz (14 kB)\n",
  50. " Preparing metadata (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
  51. "Collecting gensim<5.0.0,>=4.3.1 (from hazm==0.10.0)\n",
  52. " Downloading gensim-4.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.1 kB)\n",
  53. "Requirement already satisfied: nltk<4.0.0,>=3.8.1 in /usr/local/lib/python3.11/dist-packages (from hazm==0.10.0) (3.9.1)\n",
  54. "Collecting numpy==1.24.3 (from hazm==0.10.0)\n",
  55. " Downloading numpy-1.24.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.6 kB)\n",
  56. "Collecting python-crfsuite<0.10.0,>=0.9.9 (from hazm==0.10.0)\n",
  57. " Downloading python_crfsuite-0.9.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.3 kB)\n",
  58. "Requirement already satisfied: scikit-learn<2.0.0,>=1.2.2 in /usr/local/lib/python3.11/dist-packages (from hazm==0.10.0) (1.6.1)\n",
  59. "Collecting pybind11>=2.2 (from fasttext-wheel<0.10.0,>=0.9.2->hazm==0.10.0)\n",
  60. " Downloading pybind11-2.13.6-py3-none-any.whl.metadata (9.5 kB)\n",
  61. "Requirement already satisfied: setuptools>=0.7.0 in /usr/local/lib/python3.11/dist-packages (from fasttext-wheel<0.10.0,>=0.9.2->hazm==0.10.0) (75.2.0)\n",
  62. "Collecting scipy<1.14.0,>=1.7.0 (from gensim<5.0.0,>=4.3.1->hazm==0.10.0)\n",
  63. " Downloading scipy-1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (60 kB)\n",
  64. "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m60.6/60.6 kB\u001b[0m \u001b[31m652.8 kB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
  65. "\u001b[?25hRequirement already satisfied: smart-open>=1.8.1 in /usr/local/lib/python3.11/dist-packages (from gensim<5.0.0,>=4.3.1->hazm==0.10.0) (7.1.0)\n",
  66. "Requirement already satisfied: click in /usr/local/lib/python3.11/dist-packages (from nltk<4.0.0,>=3.8.1->hazm==0.10.0) (8.1.8)\n",
  67. "Requirement already satisfied: joblib in /usr/local/lib/python3.11/dist-packages (from nltk<4.0.0,>=3.8.1->hazm==0.10.0) (1.4.2)\n",
  68. "Requirement already satisfied: regex>=2021.8.3 in /usr/local/lib/python3.11/dist-packages (from nltk<4.0.0,>=3.8.1->hazm==0.10.0) (2024.11.6)\n",
  69. "Requirement already satisfied: tqdm in /usr/local/lib/python3.11/dist-packages (from nltk<4.0.0,>=3.8.1->hazm==0.10.0) (4.67.1)\n",
  70. "Requirement already satisfied: threadpoolctl>=3.1.0 in /usr/local/lib/python3.11/dist-packages (from scikit-learn<2.0.0,>=1.2.2->hazm==0.10.0) (3.6.0)\n",
  71. "Requirement already satisfied: wrapt in /usr/local/lib/python3.11/dist-packages (from smart-open>=1.8.1->gensim<5.0.0,>=4.3.1->hazm==0.10.0) (1.17.2)\n",
  72. "Downloading hazm-0.10.0-py3-none-any.whl (892 kB)\n",
  73. "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m892.6/892.6 kB\u001b[0m \u001b[31m14.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
  74. "\u001b[?25hDownloading numpy-1.24.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.3 MB)\n",
  75. "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m17.3/17.3 MB\u001b[0m \u001b[31m61.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
  76. "\u001b[?25hDownloading fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB)\n",
  77. "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m4.4/4.4 MB\u001b[0m \u001b[31m62.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
  78. "\u001b[?25hDownloading gensim-4.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.7 MB)\n",
  79. "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m26.7/26.7 MB\u001b[0m \u001b[31m21.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
  80. "\u001b[?25hDownloading python_crfsuite-0.9.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)\n",
  81. "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m1.3/1.3 MB\u001b[0m \u001b[31m52.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
  82. "\u001b[?25hDownloading pybind11-2.13.6-py3-none-any.whl (243 kB)\n",
  83. "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m243.3/243.3 kB\u001b[0m \u001b[31m18.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
  84. "\u001b[?25hDownloading scipy-1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (38.6 MB)\n",
  85. "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m38.6/38.6 MB\u001b[0m \u001b[31m17.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
  86. "\u001b[?25hBuilding wheels for collected packages: flashtext\n",
  87. " Building wheel for flashtext (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
  88. " Created wheel for flashtext: filename=flashtext-2.7-py2.py3-none-any.whl size=9300 sha256=664d3f3ea1a1f8810d418365b3ae9957cdc1239e25a314ee399091922c195cf2\n",
  89. " Stored in directory: /root/.cache/pip/wheels/49/20/47/f03dfa8a7239c54cbc44ff7389eefbf888d2c1873edaaec888\n",
  90. "Successfully built flashtext\n",
  91. "Installing collected packages: flashtext, python-crfsuite, pybind11, numpy, scipy, fasttext-wheel, gensim, hazm\n",
  92. " Attempting uninstall: numpy\n",
  93. " Found existing installation: numpy 2.0.2\n",
  94. " Uninstalling numpy-2.0.2:\n",
  95. " Successfully uninstalled numpy-2.0.2\n",
  96. " Attempting uninstall: scipy\n",
  97. " Found existing installation: scipy 1.15.2\n",
  98. " Uninstalling scipy-1.15.2:\n",
  99. " Successfully uninstalled scipy-1.15.2\n",
  100. "\u001b[31mERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n",
  101. "blosc2 3.3.2 requires numpy>=1.26, but you have numpy 1.24.3 which is incompatible.\n",
  102. "thinc 8.3.6 requires numpy<3.0.0,>=2.0.0, but you have numpy 1.24.3 which is incompatible.\n",
  103. "treescope 0.1.9 requires numpy>=1.25.2, but you have numpy 1.24.3 which is incompatible.\n",
  104. "pymc 5.22.0 requires numpy>=1.25.0, but you have numpy 1.24.3 which is incompatible.\n",
  105. "albumentations 2.0.6 requires numpy>=1.24.4, but you have numpy 1.24.3 which is incompatible.\n",
  106. "albucore 0.0.24 requires numpy>=1.24.4, but you have numpy 1.24.3 which is incompatible.\n",
  107. "tensorflow 2.18.0 requires numpy<2.1.0,>=1.26.0, but you have numpy 1.24.3 which is incompatible.\n",
  108. "jax 0.5.2 requires numpy>=1.25, but you have numpy 1.24.3 which is incompatible.\n",
  109. "jaxlib 0.5.1 requires numpy>=1.25, but you have numpy 1.24.3 which is incompatible.\u001b[0m\u001b[31m\n",
  110. "\u001b[0mSuccessfully installed fasttext-wheel-0.9.2 flashtext-2.7 gensim-4.3.3 hazm-0.10.0 numpy-1.24.3 pybind11-2.13.6 python-crfsuite-0.9.11 scipy-1.13.1\n"
  111. ]
  112. },
  113. {
  114. "output_type": "display_data",
  115. "data": {
  116. "application/vnd.colab-display-data+json": {
  117. "pip_warning": {
  118. "packages": [
  119. "numpy"
  120. ]
  121. },
  122. "id": "1adb0bb1665a4e549994f7732625b508"
  123. }
  124. },
  125. "metadata": {}
  126. }
  127. ]
  128. },
  129. {
  130. "cell_type": "code",
  131. "source": [
  132. "!pip install jiwer"
  133. ],
  134. "metadata": {
  135. "colab": {
  136. "base_uri": "https://localhost:8080/"
  137. },
  138. "id": "yXLdXwchc5Z9",
  139. "outputId": "d7204554-c64f-4e44-efbf-97e9aa7a6cf4"
  140. },
  141. "execution_count": null,
  142. "outputs": [
  143. {
  144. "output_type": "stream",
  145. "name": "stdout",
  146. "text": [
  147. "Collecting jiwer\n",
  148. " Downloading jiwer-3.1.0-py3-none-any.whl.metadata (2.6 kB)\n",
  149. "Requirement already satisfied: click>=8.1.8 in /usr/local/lib/python3.11/dist-packages (from jiwer) (8.1.8)\n",
  150. "Collecting rapidfuzz>=3.9.7 (from jiwer)\n",
  151. " Downloading rapidfuzz-3.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB)\n",
  152. "Downloading jiwer-3.1.0-py3-none-any.whl (22 kB)\n",
  153. "Downloading rapidfuzz-3.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB)\n",
  154. "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m3.1/3.1 MB\u001b[0m \u001b[31m33.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
  155. "\u001b[?25hInstalling collected packages: rapidfuzz, jiwer\n",
  156. "Successfully installed jiwer-3.1.0 rapidfuzz-3.13.0\n"
  157. ]
  158. }
  159. ]
  160. },
  161. {
  162. "cell_type": "code",
  163. "source": [
  164. "from google.colab import drive\n",
  165. "drive.mount('/content/drive')"
  166. ],
  167. "metadata": {
  168. "colab": {
  169. "base_uri": "https://localhost:8080/"
  170. },
  171. "id": "jfGby5lwdz_L",
  172. "outputId": "6881a85b-5c4d-4d89-b6dc-00789a5a0a64"
  173. },
  174. "execution_count": null,
  175. "outputs": [
  176. {
  177. "output_type": "stream",
  178. "name": "stdout",
  179. "text": [
  180. "Mounted at /content/drive\n"
  181. ]
  182. }
  183. ]
  184. },
  185. {
  186. "cell_type": "code",
  187. "source": [
  188. "cp /content/drive/MyDrive/DML-IBOTTS/model-weights/pv-espeak-commits-master.zip pv-espeak-commits-master.zip"
  189. ],
  190. "metadata": {
  191. "id": "tkDlCpyleDlB"
  192. },
  193. "execution_count": null,
  194. "outputs": []
  195. },
  196. {
  197. "cell_type": "code",
  198. "source": [
  199. "!unzip pv-espeak-commits-master.zip"
  200. ],
  201. "metadata": {
  202. "colab": {
  203. "base_uri": "https://localhost:8080/"
  204. },
  205. "id": "WEBjGmwxzbbf",
  206. "outputId": "0d4d58e7-0dfa-49a3-d132-769aba03ea90"
  207. },
  208. "execution_count": null,
  209. "outputs": [
  210. {
  211. "output_type": "stream",
  212. "name": "stdout",
  213. "text": [
  214. "Archive: pv-espeak-commits-master.zip\n",
  215. "edfc2dde8416aacfef560e93daedce0d070c1b05\n",
  216. " creating: pv-espeak-commits-master/\n",
  217. " creating: pv-espeak-commits-master/.github/\n",
  218. " inflating: pv-espeak-commits-master/.github/dependabot.yml \n",
  219. " creating: pv-espeak-commits-master/.github/workflows/\n",
  220. " inflating: pv-espeak-commits-master/.github/workflows/android.yml \n",
  221. " inflating: pv-espeak-commits-master/.github/workflows/autoconf.yml \n",
  222. " inflating: pv-espeak-commits-master/.github/workflows/ci.yml \n",
  223. " inflating: pv-espeak-commits-master/.github/workflows/dist.yml \n",
  224. " inflating: pv-espeak-commits-master/.github/workflows/fuzzing-needswork.yml \n",
  225. " inflating: pv-espeak-commits-master/.github/workflows/fuzzing.yml \n",
  226. " inflating: pv-espeak-commits-master/.github/workflows/gradle-wrapper-validation.yml \n",
  227. " inflating: pv-espeak-commits-master/.github/workflows/windows-msbuild.yml \n",
  228. " inflating: pv-espeak-commits-master/.github/workflows/windows.yml \n",
  229. " inflating: pv-espeak-commits-master/.github/workflows/workflow-for-fuzzing-build.yml \n",
  230. " inflating: pv-espeak-commits-master/.github/workflows/workflow-for-fuzzing.yml \n",
  231. " inflating: pv-espeak-commits-master/.gitignore \n",
  232. " creating: pv-espeak-commits-master/.tx/\n",
  233. " inflating: pv-espeak-commits-master/.tx/config \n",
  234. " inflating: pv-espeak-commits-master/CMakeLists.txt \n",
  235. " inflating: pv-espeak-commits-master/COPYING \n",
  236. " inflating: pv-espeak-commits-master/COPYING.APACHE \n",
  237. " inflating: pv-espeak-commits-master/COPYING.BSD2 \n",
  238. " inflating: pv-espeak-commits-master/COPYING.UCD \n",
  239. " inflating: pv-espeak-commits-master/ChangeLog.md \n",
  240. " inflating: pv-espeak-commits-master/Makefile.am \n",
  241. " inflating: pv-espeak-commits-master/README.md \n",
  242. " creating: pv-espeak-commits-master/_layouts/\n",
  243. " inflating: pv-espeak-commits-master/_layouts/webpage.html \n",
  244. " creating: pv-espeak-commits-master/android/\n",
  245. " inflating: pv-espeak-commits-master/android/AndroidManifest.xml \n",
  246. " inflating: pv-espeak-commits-master/android/build.gradle \n",
  247. " creating: pv-espeak-commits-master/android/eSpeakTests/\n",
  248. " inflating: pv-espeak-commits-master/android/eSpeakTests/.classpath \n",
  249. " inflating: pv-espeak-commits-master/android/eSpeakTests/.project \n",
  250. " creating: pv-espeak-commits-master/android/eSpeakTests/.settings/\n",
  251. " inflating: pv-espeak-commits-master/android/eSpeakTests/.settings/org.eclipse.jdt.core.prefs \n",
  252. " inflating: pv-espeak-commits-master/android/eSpeakTests/AndroidManifest.xml \n",
  253. " inflating: pv-espeak-commits-master/android/eSpeakTests/proguard-project.txt \n",
  254. " inflating: pv-espeak-commits-master/android/eSpeakTests/project.properties \n",
  255. " creating: pv-espeak-commits-master/android/eSpeakTests/res/\n",
  256. " creating: pv-espeak-commits-master/android/eSpeakTests/res/drawable-hdpi/\n",
  257. " extracting: pv-espeak-commits-master/android/eSpeakTests/res/drawable-hdpi/ic_launcher.png \n",
  258. " creating: pv-espeak-commits-master/android/eSpeakTests/res/drawable-ldpi/\n",
  259. " extracting: pv-espeak-commits-master/android/eSpeakTests/res/drawable-ldpi/ic_launcher.png \n",
  260. " creating: pv-espeak-commits-master/android/eSpeakTests/res/drawable-mdpi/\n",
  261. " extracting: pv-espeak-commits-master/android/eSpeakTests/res/drawable-mdpi/ic_launcher.png \n",
  262. " creating: pv-espeak-commits-master/android/eSpeakTests/res/drawable-xhdpi/\n",
  263. " extracting: pv-espeak-commits-master/android/eSpeakTests/res/drawable-xhdpi/ic_launcher.png \n",
  264. " creating: pv-espeak-commits-master/android/eSpeakTests/res/values/\n",
  265. " inflating: pv-espeak-commits-master/android/eSpeakTests/res/values/strings.xml \n",
  266. " creating: pv-espeak-commits-master/android/eSpeakTests/src/\n",
  267. " creating: pv-espeak-commits-master/android/eSpeakTests/src/com/\n",
  268. " creating: pv-espeak-commits-master/android/eSpeakTests/src/com/reecedunn/\n",
  269. " creating: pv-espeak-commits-master/android/eSpeakTests/src/com/reecedunn/espeak/\n",
  270. " creating: pv-espeak-commits-master/android/eSpeakTests/src/com/reecedunn/espeak/test/\n",
  271. " inflating: pv-espeak-commits-master/android/eSpeakTests/src/com/reecedunn/espeak/test/CheckVoiceDataTest.java \n",
  272. " inflating: pv-espeak-commits-master/android/eSpeakTests/src/com/reecedunn/espeak/test/SpeechSynthesisTest.java \n",
  273. " inflating: pv-espeak-commits-master/android/eSpeakTests/src/com/reecedunn/espeak/test/TextToSpeechServiceTest.java \n",
  274. " inflating: pv-espeak-commits-master/android/eSpeakTests/src/com/reecedunn/espeak/test/TextToSpeechTest.java \n",
  275. " inflating: pv-espeak-commits-master/android/eSpeakTests/src/com/reecedunn/espeak/test/TextToSpeechTestCase.java \n",
  276. " inflating: pv-espeak-commits-master/android/eSpeakTests/src/com/reecedunn/espeak/test/TtsMatcher.java \n",
  277. " inflating: pv-espeak-commits-master/android/eSpeakTests/src/com/reecedunn/espeak/test/VoiceData.java \n",
  278. " inflating: pv-espeak-commits-master/android/eSpeakTests/src/com/reecedunn/espeak/test/VoiceSettingsTest.java \n",
  279. " inflating: pv-espeak-commits-master/android/eSpeakTests/src/com/reecedunn/espeak/test/VoiceVariantTest.java \n",
  280. " extracting: pv-espeak-commits-master/android/gradle.properties \n",
  281. " creating: pv-espeak-commits-master/android/gradle/\n",
  282. " creating: pv-espeak-commits-master/android/gradle/wrapper/\n",
  283. " inflating: pv-espeak-commits-master/android/gradle/wrapper/gradle-wrapper.jar \n",
  284. " inflating: pv-espeak-commits-master/android/gradle/wrapper/gradle-wrapper.properties \n",
  285. " inflating: pv-espeak-commits-master/android/gradlew \n",
  286. " inflating: pv-espeak-commits-master/android/gradlew.bat \n",
  287. " creating: pv-espeak-commits-master/android/icons/\n",
  288. " inflating: pv-espeak-commits-master/android/icons/launcher.svg \n",
  289. " inflating: pv-espeak-commits-master/android/icons/promo-graphic.svg \n",
  290. " creating: pv-espeak-commits-master/android/jni/\n",
  291. " inflating: pv-espeak-commits-master/android/jni/CMakeLists.txt \n",
  292. " creating: pv-espeak-commits-master/android/jni/include/\n",
  293. " inflating: pv-espeak-commits-master/android/jni/include/Log.h \n",
  294. " extracting: pv-espeak-commits-master/android/jni/include/config.h \n",
  295. " creating: pv-espeak-commits-master/android/jni/jni/\n",
  296. " inflating: pv-espeak-commits-master/android/jni/jni/eSpeakService.c \n",
  297. " inflating: pv-espeak-commits-master/android/remove_string.sh \n",
  298. " creating: pv-espeak-commits-master/android/res/\n",
  299. " creating: pv-espeak-commits-master/android/res/drawable/\n",
  300. " inflating: pv-espeak-commits-master/android/res/drawable/icon_foreground.xml \n",
  301. " creating: pv-espeak-commits-master/android/res/layout/\n",
  302. " inflating: pv-espeak-commits-master/android/res/layout/download_voice_data.xml \n",
  303. " inflating: pv-espeak-commits-master/android/res/layout/import_voice_preference.xml \n",
  304. " inflating: pv-espeak-commits-master/android/res/layout/information_view.xml \n",
  305. " inflating: pv-espeak-commits-master/android/res/layout/main.xml \n",
  306. " inflating: pv-espeak-commits-master/android/res/layout/seekbar_preference.xml \n",
  307. " inflating: pv-espeak-commits-master/android/res/layout/speak_punctuation_preference.xml \n",
  308. " inflating: pv-espeak-commits-master/android/res/layout/voice_variant_preference.xml \n",
  309. " creating: pv-espeak-commits-master/android/res/menu/\n",
  310. " inflating: pv-espeak-commits-master/android/res/menu/options.xml \n",
  311. " creating: pv-espeak-commits-master/android/res/mipmap-anydpi-v26/\n",
  312. " inflating: pv-espeak-commits-master/android/res/mipmap-anydpi-v26/icon.xml \n",
  313. " creating: pv-espeak-commits-master/android/res/mipmap-hdpi/\n",
  314. " extracting: pv-espeak-commits-master/android/res/mipmap-hdpi/icon.png \n",
  315. " creating: pv-espeak-commits-master/android/res/mipmap-mdpi/\n",
  316. " extracting: pv-espeak-commits-master/android/res/mipmap-mdpi/icon.png \n",
  317. " creating: pv-espeak-commits-master/android/res/mipmap-xhdpi/\n",
  318. " extracting: pv-espeak-commits-master/android/res/mipmap-xhdpi/icon.png \n",
  319. " creating: pv-espeak-commits-master/android/res/mipmap-xxhdpi/\n",
  320. " extracting: pv-espeak-commits-master/android/res/mipmap-xxhdpi/icon.png \n",
  321. " creating: pv-espeak-commits-master/android/res/mipmap-xxxhdpi/\n",
  322. " inflating: pv-espeak-commits-master/android/res/mipmap-xxxhdpi/icon.png \n",
  323. " creating: pv-espeak-commits-master/android/res/values-af/\n",
  324. " inflating: pv-espeak-commits-master/android/res/values-af/strings.xml \n",
  325. " creating: pv-espeak-commits-master/android/res/values-am/\n",
  326. " inflating: pv-espeak-commits-master/android/res/values-am/strings.xml \n",
  327. " creating: pv-espeak-commits-master/android/res/values-ar/\n",
  328. " inflating: pv-espeak-commits-master/android/res/values-ar/strings.xml \n",
  329. " creating: pv-espeak-commits-master/android/res/values-bg/\n",
  330. " inflating: pv-espeak-commits-master/android/res/values-bg/strings.xml \n",
  331. " creating: pv-espeak-commits-master/android/res/values-ca/\n",
  332. " inflating: pv-espeak-commits-master/android/res/values-ca/strings.xml \n",
  333. " creating: pv-espeak-commits-master/android/res/values-cs/\n",
  334. " inflating: pv-espeak-commits-master/android/res/values-cs/strings.xml \n",
  335. " creating: pv-espeak-commits-master/android/res/values-da/\n",
  336. " inflating: pv-espeak-commits-master/android/res/values-da/strings.xml \n",
  337. " creating: pv-espeak-commits-master/android/res/values-de/\n",
  338. " inflating: pv-espeak-commits-master/android/res/values-de/strings.xml \n",
  339. " creating: pv-espeak-commits-master/android/res/values-el/\n",
  340. " inflating: pv-espeak-commits-master/android/res/values-el/strings.xml \n",
  341. " creating: pv-espeak-commits-master/android/res/values-en-rGB/\n",
  342. " inflating: pv-espeak-commits-master/android/res/values-en-rGB/strings.xml \n",
  343. " creating: pv-espeak-commits-master/android/res/values-es-rUS/\n",
  344. " inflating: pv-espeak-commits-master/android/res/values-es-rUS/strings.xml \n",
  345. " creating: pv-espeak-commits-master/android/res/values-es/\n",
  346. " inflating: pv-espeak-commits-master/android/res/values-es/strings.xml \n",
  347. " creating: pv-espeak-commits-master/android/res/values-fa/\n",
  348. " inflating: pv-espeak-commits-master/android/res/values-fa/strings.xml \n",
  349. " creating: pv-espeak-commits-master/android/res/values-fi/\n",
  350. " inflating: pv-espeak-commits-master/android/res/values-fi/strings.xml \n",
  351. " creating: pv-espeak-commits-master/android/res/values-fr/\n",
  352. " inflating: pv-espeak-commits-master/android/res/values-fr/strings.xml \n",
  353. " creating: pv-espeak-commits-master/android/res/values-hi/\n",
  354. " inflating: pv-espeak-commits-master/android/res/values-hi/strings.xml \n",
  355. " creating: pv-espeak-commits-master/android/res/values-hr/\n",
  356. " inflating: pv-espeak-commits-master/android/res/values-hr/strings.xml \n",
  357. " creating: pv-espeak-commits-master/android/res/values-hu/\n",
  358. " inflating: pv-espeak-commits-master/android/res/values-hu/strings.xml \n",
  359. " creating: pv-espeak-commits-master/android/res/values-in/\n",
  360. " inflating: pv-espeak-commits-master/android/res/values-in/strings.xml \n",
  361. " creating: pv-espeak-commits-master/android/res/values-it/\n",
  362. " inflating: pv-espeak-commits-master/android/res/values-it/strings.xml \n",
  363. " creating: pv-espeak-commits-master/android/res/values-iw/\n",
  364. " inflating: pv-espeak-commits-master/android/res/values-iw/strings.xml \n",
  365. " creating: pv-espeak-commits-master/android/res/values-ja/\n",
  366. " inflating: pv-espeak-commits-master/android/res/values-ja/strings.xml \n",
  367. " creating: pv-espeak-commits-master/android/res/values-ko/\n",
  368. " inflating: pv-espeak-commits-master/android/res/values-ko/strings.xml \n",
  369. " creating: pv-espeak-commits-master/android/res/values-lt/\n",
  370. " inflating: pv-espeak-commits-master/android/res/values-lt/strings.xml \n",
  371. " creating: pv-espeak-commits-master/android/res/values-lv/\n",
  372. " inflating: pv-espeak-commits-master/android/res/values-lv/strings.xml \n",
  373. " creating: pv-espeak-commits-master/android/res/values-ms/\n",
  374. " inflating: pv-espeak-commits-master/android/res/values-ms/strings.xml \n",
  375. " creating: pv-espeak-commits-master/android/res/values-nb/\n",
  376. " inflating: pv-espeak-commits-master/android/res/values-nb/strings.xml \n",
  377. " creating: pv-espeak-commits-master/android/res/values-nl/\n",
  378. " inflating: pv-espeak-commits-master/android/res/values-nl/strings.xml \n",
  379. " creating: pv-espeak-commits-master/android/res/values-pl/\n",
  380. " inflating: pv-espeak-commits-master/android/res/values-pl/strings.xml \n",
  381. " creating: pv-espeak-commits-master/android/res/values-pt-rBR/\n",
  382. " inflating: pv-espeak-commits-master/android/res/values-pt-rBR/strings.xml \n",
  383. " creating: pv-espeak-commits-master/android/res/values-pt/\n",
  384. " inflating: pv-espeak-commits-master/android/res/values-pt/strings.xml \n",
  385. " creating: pv-espeak-commits-master/android/res/values-ro/\n",
  386. " inflating: pv-espeak-commits-master/android/res/values-ro/strings.xml \n",
  387. " creating: pv-espeak-commits-master/android/res/values-ru/\n",
  388. " inflating: pv-espeak-commits-master/android/res/values-ru/strings.xml \n",
  389. " creating: pv-espeak-commits-master/android/res/values-sk/\n",
  390. " inflating: pv-espeak-commits-master/android/res/values-sk/strings.xml \n",
  391. " creating: pv-espeak-commits-master/android/res/values-sl/\n",
  392. " inflating: pv-espeak-commits-master/android/res/values-sl/strings.xml \n",
  393. " creating: pv-espeak-commits-master/android/res/values-sr/\n",
  394. " inflating: pv-espeak-commits-master/android/res/values-sr/strings.xml \n",
  395. " creating: pv-espeak-commits-master/android/res/values-sv/\n",
  396. " inflating: pv-espeak-commits-master/android/res/values-sv/strings.xml \n",
  397. " creating: pv-espeak-commits-master/android/res/values-sw/\n",
  398. " inflating: pv-espeak-commits-master/android/res/values-sw/strings.xml \n",
  399. " creating: pv-espeak-commits-master/android/res/values-th/\n",
  400. " inflating: pv-espeak-commits-master/android/res/values-th/strings.xml \n",
  401. " creating: pv-espeak-commits-master/android/res/values-tl/\n",
  402. " inflating: pv-espeak-commits-master/android/res/values-tl/strings.xml \n",
  403. " creating: pv-espeak-commits-master/android/res/values-tr/\n",
  404. " inflating: pv-espeak-commits-master/android/res/values-tr/strings.xml \n",
  405. " creating: pv-espeak-commits-master/android/res/values-uk/\n",
  406. " inflating: pv-espeak-commits-master/android/res/values-uk/strings.xml \n",
  407. " creating: pv-espeak-commits-master/android/res/values-v21/\n",
  408. " inflating: pv-espeak-commits-master/android/res/values-v21/styles.xml \n",
  409. " creating: pv-espeak-commits-master/android/res/values-vi/\n",
  410. " inflating: pv-espeak-commits-master/android/res/values-vi/strings.xml \n",
  411. " creating: pv-espeak-commits-master/android/res/values-zh-rCN/\n",
  412. " inflating: pv-espeak-commits-master/android/res/values-zh-rCN/strings.xml \n",
  413. " creating: pv-espeak-commits-master/android/res/values-zh-rTW/\n",
  414. " inflating: pv-espeak-commits-master/android/res/values-zh-rTW/strings.xml \n",
  415. " creating: pv-espeak-commits-master/android/res/values-zu/\n",
  416. " inflating: pv-espeak-commits-master/android/res/values-zu/strings.xml \n",
  417. " creating: pv-espeak-commits-master/android/res/values/\n",
  418. " inflating: pv-espeak-commits-master/android/res/values/donottranslate.xml \n",
  419. " inflating: pv-espeak-commits-master/android/res/values/icon_background.xml \n",
  420. " inflating: pv-espeak-commits-master/android/res/values/strings.xml \n",
  421. " inflating: pv-espeak-commits-master/android/res/values/styles.xml \n",
  422. " creating: pv-espeak-commits-master/android/res/xml/\n",
  423. " inflating: pv-espeak-commits-master/android/res/xml/preferences.xml \n",
  424. " inflating: pv-espeak-commits-master/android/res/xml/tts_engine.xml \n",
  425. " extracting: pv-espeak-commits-master/android/settings.gradle \n",
  426. " creating: pv-espeak-commits-master/android/src/\n",
  427. " creating: pv-espeak-commits-master/android/src/com/\n",
  428. " creating: pv-espeak-commits-master/android/src/com/reecedunn/\n",
  429. " creating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/\n",
  430. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/CheckVoiceData.java \n",
  431. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/DownloadVoiceData.java \n",
  432. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/EspeakApp.java \n",
  433. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/FileListAdapter.java \n",
  434. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/FileUtils.java \n",
  435. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/GetSampleText.java \n",
  436. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/InformationListAdapter.java \n",
  437. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/ResourceIdListAdapter.java \n",
  438. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/SpeechSynthesis.java \n",
  439. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/TtsService.java \n",
  440. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/TtsSettingsActivity.java \n",
  441. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/Voice.java \n",
  442. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/VoiceSettings.java \n",
  443. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/VoiceVariant.java \n",
  444. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/eSpeakActivity.java \n",
  445. " creating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/preference/\n",
  446. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/preference/ImportVoicePreference.java \n",
  447. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/preference/SeekBarPreference.java \n",
  448. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/preference/SpeakPunctuationPreference.java \n",
  449. " inflating: pv-espeak-commits-master/android/src/com/reecedunn/espeak/preference/VoiceVariantPreference.java \n",
  450. " inflating: pv-espeak-commits-master/autogen.sh \n",
  451. " creating: pv-espeak-commits-master/cmake/\n",
  452. " inflating: pv-espeak-commits-master/cmake/config.cmake \n",
  453. " inflating: pv-espeak-commits-master/cmake/data.cmake \n",
  454. " inflating: pv-espeak-commits-master/cmake/deps.cmake \n",
  455. " inflating: pv-espeak-commits-master/cmake/docs.cmake \n",
  456. " inflating: pv-espeak-commits-master/cmake/package.cmake \n",
  457. " inflating: pv-espeak-commits-master/configure.ac \n",
  458. " creating: pv-espeak-commits-master/data/\n",
  459. " creating: pv-espeak-commits-master/data/annotationsEspeak/\n",
  460. " inflating: pv-espeak-commits-master/data/annotationsEspeak/de.xml \n",
  461. " inflating: pv-espeak-commits-master/data/annotationsEspeak/en.xml \n",
  462. " creating: pv-espeak-commits-master/dictsource/\n",
  463. " inflating: pv-espeak-commits-master/dictsource/af_emoji \n",
  464. " inflating: pv-espeak-commits-master/dictsource/af_list \n",
  465. " inflating: pv-espeak-commits-master/dictsource/af_rules \n",
  466. " inflating: pv-espeak-commits-master/dictsource/am_emoji \n",
  467. " inflating: pv-espeak-commits-master/dictsource/am_list \n",
  468. " inflating: pv-espeak-commits-master/dictsource/am_rules \n",
  469. " inflating: pv-espeak-commits-master/dictsource/an_list \n",
  470. " inflating: pv-espeak-commits-master/dictsource/an_rules \n",
  471. " inflating: pv-espeak-commits-master/dictsource/ar_emoji \n",
  472. " inflating: pv-espeak-commits-master/dictsource/ar_list \n",
  473. " inflating: pv-espeak-commits-master/dictsource/ar_listx \n",
  474. " inflating: pv-espeak-commits-master/dictsource/ar_rules \n",
  475. " inflating: pv-espeak-commits-master/dictsource/as_list \n",
  476. " inflating: pv-espeak-commits-master/dictsource/as_rules \n",
  477. " inflating: pv-espeak-commits-master/dictsource/az_emoji \n",
  478. " inflating: pv-espeak-commits-master/dictsource/az_list \n",
  479. " inflating: pv-espeak-commits-master/dictsource/az_rules \n",
  480. " inflating: pv-espeak-commits-master/dictsource/ba_list \n",
  481. " inflating: pv-espeak-commits-master/dictsource/ba_rules \n",
  482. " inflating: pv-espeak-commits-master/dictsource/be_list \n",
  483. " inflating: pv-espeak-commits-master/dictsource/be_rules \n",
  484. " inflating: pv-espeak-commits-master/dictsource/bg_emoji \n",
  485. " inflating: pv-espeak-commits-master/dictsource/bg_list \n",
  486. " inflating: pv-espeak-commits-master/dictsource/bg_listx \n",
  487. " inflating: pv-espeak-commits-master/dictsource/bg_rules \n",
  488. " inflating: pv-espeak-commits-master/dictsource/bn_emoji \n",
  489. " inflating: pv-espeak-commits-master/dictsource/bn_list \n",
  490. " inflating: pv-espeak-commits-master/dictsource/bn_rules \n",
  491. " inflating: pv-espeak-commits-master/dictsource/bpy_list \n",
  492. " inflating: pv-espeak-commits-master/dictsource/bpy_rules \n",
  493. " inflating: pv-espeak-commits-master/dictsource/bs_emoji \n",
  494. " inflating: pv-espeak-commits-master/dictsource/bs_list \n",
  495. " inflating: pv-espeak-commits-master/dictsource/bs_rules \n",
  496. " inflating: pv-espeak-commits-master/dictsource/ca_emoji \n",
  497. " inflating: pv-espeak-commits-master/dictsource/ca_list \n",
  498. " inflating: pv-espeak-commits-master/dictsource/ca_rules \n",
  499. " extracting: pv-espeak-commits-master/dictsource/chr_list \n",
  500. " inflating: pv-espeak-commits-master/dictsource/chr_rules \n",
  501. " inflating: pv-espeak-commits-master/dictsource/cmn_emoji \n",
  502. " inflating: pv-espeak-commits-master/dictsource/cmn_list \n",
  503. " inflating: pv-espeak-commits-master/dictsource/cmn_rules \n",
  504. " inflating: pv-espeak-commits-master/dictsource/cs_emoji \n",
  505. " inflating: pv-espeak-commits-master/dictsource/cs_list \n",
  506. " inflating: pv-espeak-commits-master/dictsource/cs_rules \n",
  507. " extracting: pv-espeak-commits-master/dictsource/cv_list \n",
  508. " inflating: pv-espeak-commits-master/dictsource/cv_rules \n",
  509. " inflating: pv-espeak-commits-master/dictsource/cy_emoji \n",
  510. " inflating: pv-espeak-commits-master/dictsource/cy_list \n",
  511. " inflating: pv-espeak-commits-master/dictsource/cy_rules \n",
  512. " inflating: pv-espeak-commits-master/dictsource/da_emoji \n",
  513. " inflating: pv-espeak-commits-master/dictsource/da_list \n",
  514. " inflating: pv-espeak-commits-master/dictsource/da_rules \n",
  515. " inflating: pv-espeak-commits-master/dictsource/de_emoji \n",
  516. " inflating: pv-espeak-commits-master/dictsource/de_list \n",
  517. " inflating: pv-espeak-commits-master/dictsource/de_rules \n",
  518. " inflating: pv-espeak-commits-master/dictsource/el_emoji \n",
  519. " inflating: pv-espeak-commits-master/dictsource/el_list \n",
  520. " inflating: pv-espeak-commits-master/dictsource/el_rules \n",
  521. " inflating: pv-espeak-commits-master/dictsource/en_emoji \n",
  522. " inflating: pv-espeak-commits-master/dictsource/en_list \n",
  523. " inflating: pv-espeak-commits-master/dictsource/en_rules \n",
  524. " inflating: pv-espeak-commits-master/dictsource/eo_list \n",
  525. " inflating: pv-espeak-commits-master/dictsource/eo_rules \n",
  526. " inflating: pv-espeak-commits-master/dictsource/es_emoji \n",
  527. " inflating: pv-espeak-commits-master/dictsource/es_list \n",
  528. " inflating: pv-espeak-commits-master/dictsource/es_rules \n",
  529. " inflating: pv-espeak-commits-master/dictsource/et_emoji \n",
  530. " inflating: pv-espeak-commits-master/dictsource/et_list \n",
  531. " inflating: pv-espeak-commits-master/dictsource/et_rules \n",
  532. " inflating: pv-espeak-commits-master/dictsource/eu_emoji \n",
  533. " inflating: pv-espeak-commits-master/dictsource/eu_list \n",
  534. " inflating: pv-espeak-commits-master/dictsource/eu_rules \n",
  535. " creating: pv-espeak-commits-master/dictsource/extra/\n",
  536. " inflating: pv-espeak-commits-master/dictsource/extra/cmn_listx \n",
  537. " inflating: pv-espeak-commits-master/dictsource/extra/ru_listx \n",
  538. " inflating: pv-espeak-commits-master/dictsource/extra/yue_listx \n",
  539. " inflating: pv-espeak-commits-master/dictsource/fa_emoji \n",
  540. " inflating: pv-espeak-commits-master/dictsource/fa_extra \n",
  541. " inflating: pv-espeak-commits-master/dictsource/fa_list \n",
  542. " inflating: pv-espeak-commits-master/dictsource/fa_rules \n",
  543. " inflating: pv-espeak-commits-master/dictsource/fi_emoji \n",
  544. " inflating: pv-espeak-commits-master/dictsource/fi_list \n",
  545. " inflating: pv-espeak-commits-master/dictsource/fi_rules \n",
  546. " extracting: pv-espeak-commits-master/dictsource/fo_emoji \n",
  547. " inflating: pv-espeak-commits-master/dictsource/fo_list \n",
  548. " inflating: pv-espeak-commits-master/dictsource/fo_rules \n",
  549. " inflating: pv-espeak-commits-master/dictsource/fr_emoji \n",
  550. " inflating: pv-espeak-commits-master/dictsource/fr_list \n",
  551. " inflating: pv-espeak-commits-master/dictsource/fr_rules \n",
  552. " inflating: pv-espeak-commits-master/dictsource/ga_emoji \n",
  553. " inflating: pv-espeak-commits-master/dictsource/ga_list \n",
  554. " inflating: pv-espeak-commits-master/dictsource/ga_rules \n",
  555. " inflating: pv-espeak-commits-master/dictsource/gd_emoji \n",
  556. " inflating: pv-espeak-commits-master/dictsource/gd_list \n",
  557. " inflating: pv-espeak-commits-master/dictsource/gd_rules \n",
  558. " inflating: pv-espeak-commits-master/dictsource/gn_list \n",
  559. " inflating: pv-espeak-commits-master/dictsource/gn_rules \n",
  560. " inflating: pv-espeak-commits-master/dictsource/grc_list \n",
  561. " inflating: pv-espeak-commits-master/dictsource/grc_rules \n",
  562. " inflating: pv-espeak-commits-master/dictsource/gu_emoji \n",
  563. " inflating: pv-espeak-commits-master/dictsource/gu_list \n",
  564. " inflating: pv-espeak-commits-master/dictsource/gu_rules \n",
  565. " inflating: pv-espeak-commits-master/dictsource/hak_list \n",
  566. " inflating: pv-espeak-commits-master/dictsource/hak_rules \n",
  567. " inflating: pv-espeak-commits-master/dictsource/haw_list \n",
  568. " inflating: pv-espeak-commits-master/dictsource/haw_rules \n",
  569. " inflating: pv-espeak-commits-master/dictsource/he_list \n",
  570. " inflating: pv-espeak-commits-master/dictsource/he_listx \n",
  571. " inflating: pv-espeak-commits-master/dictsource/he_rules \n",
  572. " inflating: pv-espeak-commits-master/dictsource/hi_emoji \n",
  573. " inflating: pv-espeak-commits-master/dictsource/hi_list \n",
  574. " inflating: pv-espeak-commits-master/dictsource/hi_rules \n",
  575. " inflating: pv-espeak-commits-master/dictsource/hr_emoji \n",
  576. " inflating: pv-espeak-commits-master/dictsource/hr_list \n",
  577. " inflating: pv-espeak-commits-master/dictsource/hr_rules \n",
  578. " inflating: pv-espeak-commits-master/dictsource/ht_list \n",
  579. " inflating: pv-espeak-commits-master/dictsource/ht_rules \n",
  580. " inflating: pv-espeak-commits-master/dictsource/hu_emoji \n",
  581. " inflating: pv-espeak-commits-master/dictsource/hu_list \n",
  582. " inflating: pv-espeak-commits-master/dictsource/hu_rules \n",
  583. " inflating: pv-espeak-commits-master/dictsource/hy_emoji \n",
  584. " inflating: pv-espeak-commits-master/dictsource/hy_list \n",
  585. " inflating: pv-espeak-commits-master/dictsource/hy_rules \n",
  586. " inflating: pv-espeak-commits-master/dictsource/ia_list \n",
  587. " inflating: pv-espeak-commits-master/dictsource/ia_listx \n",
  588. " inflating: pv-espeak-commits-master/dictsource/ia_rules \n",
  589. " inflating: pv-espeak-commits-master/dictsource/id_emoji \n",
  590. " inflating: pv-espeak-commits-master/dictsource/id_list \n",
  591. " inflating: pv-espeak-commits-master/dictsource/id_rules \n",
  592. " inflating: pv-espeak-commits-master/dictsource/io_list \n",
  593. " inflating: pv-espeak-commits-master/dictsource/io_rules \n",
  594. " inflating: pv-espeak-commits-master/dictsource/is_emoji \n",
  595. " inflating: pv-espeak-commits-master/dictsource/is_list \n",
  596. " inflating: pv-espeak-commits-master/dictsource/is_rules \n",
  597. " inflating: pv-espeak-commits-master/dictsource/it_emoji \n",
  598. " inflating: pv-espeak-commits-master/dictsource/it_list \n",
  599. " inflating: pv-espeak-commits-master/dictsource/it_listx \n",
  600. " inflating: pv-espeak-commits-master/dictsource/it_rules \n",
  601. " inflating: pv-espeak-commits-master/dictsource/ja_emoji \n",
  602. " inflating: pv-espeak-commits-master/dictsource/ja_list \n",
  603. " inflating: pv-espeak-commits-master/dictsource/ja_rules \n",
  604. " inflating: pv-espeak-commits-master/dictsource/jbo_list \n",
  605. " inflating: pv-espeak-commits-master/dictsource/jbo_rules \n",
  606. " inflating: pv-espeak-commits-master/dictsource/ka_emoji \n",
  607. " inflating: pv-espeak-commits-master/dictsource/ka_list \n",
  608. " inflating: pv-espeak-commits-master/dictsource/ka_rules \n",
  609. " extracting: pv-espeak-commits-master/dictsource/kaa_emoji \n",
  610. " inflating: pv-espeak-commits-master/dictsource/kaa_list \n",
  611. " inflating: pv-espeak-commits-master/dictsource/kaa_rules \n",
  612. " extracting: pv-espeak-commits-master/dictsource/kk_emoji \n",
  613. " inflating: pv-espeak-commits-master/dictsource/kk_list \n",
  614. " inflating: pv-espeak-commits-master/dictsource/kk_rules \n",
  615. " inflating: pv-espeak-commits-master/dictsource/kl_list \n",
  616. " inflating: pv-espeak-commits-master/dictsource/kl_rules \n",
  617. " inflating: pv-espeak-commits-master/dictsource/kn_emoji \n",
  618. " inflating: pv-espeak-commits-master/dictsource/kn_list \n",
  619. " inflating: pv-espeak-commits-master/dictsource/kn_rules \n",
  620. " inflating: pv-espeak-commits-master/dictsource/ko_emoji \n",
  621. " inflating: pv-espeak-commits-master/dictsource/ko_list \n",
  622. " inflating: pv-espeak-commits-master/dictsource/ko_rules \n",
  623. " inflating: pv-espeak-commits-master/dictsource/kok_list \n",
  624. " inflating: pv-espeak-commits-master/dictsource/kok_rules \n",
  625. " inflating: pv-espeak-commits-master/dictsource/ku_list \n",
  626. " inflating: pv-espeak-commits-master/dictsource/ku_rules \n",
  627. " inflating: pv-espeak-commits-master/dictsource/ky_emoji \n",
  628. " inflating: pv-espeak-commits-master/dictsource/ky_list \n",
  629. " inflating: pv-espeak-commits-master/dictsource/ky_rules \n",
  630. " inflating: pv-espeak-commits-master/dictsource/la_list \n",
  631. " inflating: pv-espeak-commits-master/dictsource/la_rules \n",
  632. " inflating: pv-espeak-commits-master/dictsource/lb_emoji \n",
  633. " inflating: pv-espeak-commits-master/dictsource/lb_list \n",
  634. " inflating: pv-espeak-commits-master/dictsource/lb_rules \n",
  635. " inflating: pv-espeak-commits-master/dictsource/lfn_list \n",
  636. " inflating: pv-espeak-commits-master/dictsource/lfn_rules \n",
  637. " inflating: pv-espeak-commits-master/dictsource/lt_emoji \n",
  638. " inflating: pv-espeak-commits-master/dictsource/lt_list \n",
  639. " inflating: pv-espeak-commits-master/dictsource/lt_rules \n",
  640. " inflating: pv-espeak-commits-master/dictsource/lv_emoji \n",
  641. " inflating: pv-espeak-commits-master/dictsource/lv_list \n",
  642. " inflating: pv-espeak-commits-master/dictsource/lv_rules \n",
  643. " inflating: pv-espeak-commits-master/dictsource/mi_list \n",
  644. " inflating: pv-espeak-commits-master/dictsource/mi_rules \n",
  645. " inflating: pv-espeak-commits-master/dictsource/mk_emoji \n",
  646. " inflating: pv-espeak-commits-master/dictsource/mk_list \n",
  647. " inflating: pv-espeak-commits-master/dictsource/mk_rules \n",
  648. " inflating: pv-espeak-commits-master/dictsource/ml_emoji \n",
  649. " inflating: pv-espeak-commits-master/dictsource/ml_list \n",
  650. " inflating: pv-espeak-commits-master/dictsource/ml_rules \n",
  651. " inflating: pv-espeak-commits-master/dictsource/mr_emoji \n",
  652. " inflating: pv-espeak-commits-master/dictsource/mr_list \n",
  653. " inflating: pv-espeak-commits-master/dictsource/mr_rules \n",
  654. " inflating: pv-espeak-commits-master/dictsource/ms_emoji \n",
  655. " inflating: pv-espeak-commits-master/dictsource/ms_list \n",
  656. " inflating: pv-espeak-commits-master/dictsource/ms_rules \n",
  657. " inflating: pv-espeak-commits-master/dictsource/mt_list \n",
  658. " inflating: pv-espeak-commits-master/dictsource/mt_rules \n",
  659. " inflating: pv-espeak-commits-master/dictsource/mto_list \n",
  660. " inflating: pv-espeak-commits-master/dictsource/mto_rules \n",
  661. " inflating: pv-espeak-commits-master/dictsource/my_emoji \n",
  662. " inflating: pv-espeak-commits-master/dictsource/my_list \n",
  663. " inflating: pv-espeak-commits-master/dictsource/my_rules \n",
  664. " inflating: pv-espeak-commits-master/dictsource/nci_list \n",
  665. " inflating: pv-espeak-commits-master/dictsource/nci_rules \n",
  666. " inflating: pv-espeak-commits-master/dictsource/ne_emoji \n",
  667. " inflating: pv-espeak-commits-master/dictsource/ne_list \n",
  668. " inflating: pv-espeak-commits-master/dictsource/ne_rules \n",
  669. " inflating: pv-espeak-commits-master/dictsource/nl_emoji \n",
  670. " inflating: pv-espeak-commits-master/dictsource/nl_list \n",
  671. " inflating: pv-espeak-commits-master/dictsource/nl_rules \n",
  672. " inflating: pv-espeak-commits-master/dictsource/no_list \n",
  673. " inflating: pv-espeak-commits-master/dictsource/no_rules \n",
  674. " inflating: pv-espeak-commits-master/dictsource/nog_list \n",
  675. " inflating: pv-espeak-commits-master/dictsource/nog_rules \n",
  676. " inflating: pv-espeak-commits-master/dictsource/om_list \n",
  677. " inflating: pv-espeak-commits-master/dictsource/om_rules \n",
  678. " inflating: pv-espeak-commits-master/dictsource/or_emoji \n",
  679. " inflating: pv-espeak-commits-master/dictsource/or_list \n",
  680. " inflating: pv-espeak-commits-master/dictsource/or_rules \n",
  681. " inflating: pv-espeak-commits-master/dictsource/pa_emoji \n",
  682. " inflating: pv-espeak-commits-master/dictsource/pa_list \n",
  683. " inflating: pv-espeak-commits-master/dictsource/pa_rules \n",
  684. " inflating: pv-espeak-commits-master/dictsource/pap_list \n",
  685. " inflating: pv-espeak-commits-master/dictsource/pap_rules \n",
  686. " inflating: pv-espeak-commits-master/dictsource/piqd_list \n",
  687. " inflating: pv-espeak-commits-master/dictsource/piqd_rules \n",
  688. " inflating: pv-espeak-commits-master/dictsource/pl_emoji \n",
  689. " inflating: pv-espeak-commits-master/dictsource/pl_list \n",
  690. " inflating: pv-espeak-commits-master/dictsource/pl_rules \n",
  691. " inflating: pv-espeak-commits-master/dictsource/ps_emoji \n",
  692. " inflating: pv-espeak-commits-master/dictsource/ps_list \n",
  693. " inflating: pv-espeak-commits-master/dictsource/ps_rules \n",
  694. " inflating: pv-espeak-commits-master/dictsource/pt_emoji \n",
  695. " inflating: pv-espeak-commits-master/dictsource/pt_list \n",
  696. " inflating: pv-espeak-commits-master/dictsource/pt_rules \n",
  697. " inflating: pv-espeak-commits-master/dictsource/py_list \n",
  698. " inflating: pv-espeak-commits-master/dictsource/py_rules \n",
  699. " inflating: pv-espeak-commits-master/dictsource/qdb_list \n",
  700. " inflating: pv-espeak-commits-master/dictsource/qdb_rules \n",
  701. " inflating: pv-espeak-commits-master/dictsource/qu_list \n",
  702. " inflating: pv-espeak-commits-master/dictsource/qu_rules \n",
  703. " extracting: pv-espeak-commits-master/dictsource/quc_emoji \n",
  704. " inflating: pv-espeak-commits-master/dictsource/quc_list \n",
  705. " inflating: pv-espeak-commits-master/dictsource/quc_rules \n",
  706. " inflating: pv-espeak-commits-master/dictsource/qya_list \n",
  707. " inflating: pv-espeak-commits-master/dictsource/qya_rules \n",
  708. " inflating: pv-espeak-commits-master/dictsource/ro_emoji \n",
  709. " inflating: pv-espeak-commits-master/dictsource/ro_list \n",
  710. " inflating: pv-espeak-commits-master/dictsource/ro_rules \n",
  711. " inflating: pv-espeak-commits-master/dictsource/ru_emoji \n",
  712. " inflating: pv-espeak-commits-master/dictsource/ru_list \n",
  713. " inflating: pv-espeak-commits-master/dictsource/ru_rules \n",
  714. " inflating: pv-espeak-commits-master/dictsource/sd_emoji \n",
  715. " inflating: pv-espeak-commits-master/dictsource/sd_list \n",
  716. " inflating: pv-espeak-commits-master/dictsource/sd_rules \n",
  717. " inflating: pv-espeak-commits-master/dictsource/shn_list \n",
  718. " inflating: pv-espeak-commits-master/dictsource/shn_rules \n",
  719. " inflating: pv-espeak-commits-master/dictsource/si_emoji \n",
  720. " inflating: pv-espeak-commits-master/dictsource/si_list \n",
  721. " inflating: pv-espeak-commits-master/dictsource/si_rules \n",
  722. " inflating: pv-espeak-commits-master/dictsource/sjn_list \n",
  723. " inflating: pv-espeak-commits-master/dictsource/sjn_rules \n",
  724. " inflating: pv-espeak-commits-master/dictsource/sk_emoji \n",
  725. " inflating: pv-espeak-commits-master/dictsource/sk_list \n",
  726. " inflating: pv-espeak-commits-master/dictsource/sk_rules \n",
  727. " inflating: pv-espeak-commits-master/dictsource/sl_emoji \n",
  728. " inflating: pv-espeak-commits-master/dictsource/sl_list \n",
  729. " inflating: pv-espeak-commits-master/dictsource/sl_rules \n",
  730. " inflating: pv-espeak-commits-master/dictsource/smj_list \n",
  731. " inflating: pv-espeak-commits-master/dictsource/smj_rules \n",
  732. " inflating: pv-espeak-commits-master/dictsource/sq_emoji \n",
  733. " inflating: pv-espeak-commits-master/dictsource/sq_list \n",
  734. " inflating: pv-espeak-commits-master/dictsource/sq_rules \n",
  735. " inflating: pv-espeak-commits-master/dictsource/sr_emoji \n",
  736. " inflating: pv-espeak-commits-master/dictsource/sr_list \n",
  737. " inflating: pv-espeak-commits-master/dictsource/sr_rules \n",
  738. " inflating: pv-espeak-commits-master/dictsource/sv_emoji \n",
  739. " inflating: pv-espeak-commits-master/dictsource/sv_list \n",
  740. " inflating: pv-espeak-commits-master/dictsource/sv_rules \n",
  741. " inflating: pv-espeak-commits-master/dictsource/sw_emoji \n",
  742. " inflating: pv-espeak-commits-master/dictsource/sw_list \n",
  743. " inflating: pv-espeak-commits-master/dictsource/sw_rules \n",
  744. " inflating: pv-espeak-commits-master/dictsource/ta_emoji \n",
  745. " inflating: pv-espeak-commits-master/dictsource/ta_list \n",
  746. " inflating: pv-espeak-commits-master/dictsource/ta_rules \n",
  747. " inflating: pv-espeak-commits-master/dictsource/te_emoji \n",
  748. " inflating: pv-espeak-commits-master/dictsource/te_list \n",
  749. " inflating: pv-espeak-commits-master/dictsource/te_rules \n",
  750. " inflating: pv-espeak-commits-master/dictsource/th_list \n",
  751. " inflating: pv-espeak-commits-master/dictsource/th_rules \n",
  752. " inflating: pv-espeak-commits-master/dictsource/ti_emoji \n",
  753. " inflating: pv-espeak-commits-master/dictsource/ti_list \n",
  754. " inflating: pv-espeak-commits-master/dictsource/ti_rules \n",
  755. " inflating: pv-espeak-commits-master/dictsource/tk_list \n",
  756. " inflating: pv-espeak-commits-master/dictsource/tk_listx \n",
  757. " inflating: pv-espeak-commits-master/dictsource/tk_rules \n",
  758. " inflating: pv-espeak-commits-master/dictsource/tn_list \n",
  759. " inflating: pv-espeak-commits-master/dictsource/tn_rules \n",
  760. " inflating: pv-espeak-commits-master/dictsource/tr_emoji \n",
  761. " inflating: pv-espeak-commits-master/dictsource/tr_list \n",
  762. " inflating: pv-espeak-commits-master/dictsource/tr_listx \n",
  763. " inflating: pv-espeak-commits-master/dictsource/tr_rules \n",
  764. " inflating: pv-espeak-commits-master/dictsource/tt_list \n",
  765. " inflating: pv-espeak-commits-master/dictsource/tt_rules \n",
  766. " inflating: pv-espeak-commits-master/dictsource/ug_list \n",
  767. " inflating: pv-espeak-commits-master/dictsource/ug_rules \n",
  768. " inflating: pv-espeak-commits-master/dictsource/uk_list \n",
  769. " inflating: pv-espeak-commits-master/dictsource/uk_rules \n",
  770. " inflating: pv-espeak-commits-master/dictsource/ur_emoji \n",
  771. " inflating: pv-espeak-commits-master/dictsource/ur_list \n",
  772. " inflating: pv-espeak-commits-master/dictsource/ur_rules \n",
  773. " inflating: pv-espeak-commits-master/dictsource/uz_list \n",
  774. " inflating: pv-espeak-commits-master/dictsource/uz_rules \n",
  775. " inflating: pv-espeak-commits-master/dictsource/vi_emoji \n",
  776. " inflating: pv-espeak-commits-master/dictsource/vi_list \n",
  777. " inflating: pv-espeak-commits-master/dictsource/vi_rules \n",
  778. " inflating: pv-espeak-commits-master/dictsource/xex_list \n",
  779. " inflating: pv-espeak-commits-master/dictsource/xex_rules \n",
  780. " inflating: pv-espeak-commits-master/dictsource/yue_emoji \n",
  781. " inflating: pv-espeak-commits-master/dictsource/yue_list \n",
  782. " inflating: pv-espeak-commits-master/dictsource/yue_rules \n",
  783. " creating: pv-espeak-commits-master/docs/\n",
  784. " inflating: pv-espeak-commits-master/docs/add_language.md \n",
  785. " inflating: pv-espeak-commits-master/docs/building.md \n",
  786. " inflating: pv-espeak-commits-master/docs/contributing.md \n",
  787. " inflating: pv-espeak-commits-master/docs/dictionary.md \n",
  788. " inflating: pv-espeak-commits-master/docs/guide.md \n",
  789. " creating: pv-espeak-commits-master/docs/images/\n",
  790. " inflating: pv-espeak-commits-master/docs/images/envelopes.png \n",
  791. " inflating: pv-espeak-commits-master/docs/images/lips.png \n",
  792. " inflating: pv-espeak-commits-master/docs/images/sand-light.jpg \n",
  793. " inflating: pv-espeak-commits-master/docs/index.md \n",
  794. " inflating: pv-espeak-commits-master/docs/integration.md \n",
  795. " inflating: pv-espeak-commits-master/docs/intonation.md \n",
  796. " inflating: pv-espeak-commits-master/docs/languages.md \n",
  797. " creating: pv-espeak-commits-master/docs/languages/\n",
  798. " creating: pv-espeak-commits-master/docs/languages/gmw/\n",
  799. " inflating: pv-espeak-commits-master/docs/languages/gmw/en.md \n",
  800. " inflating: pv-espeak-commits-master/docs/languages/gmw/lb.md \n",
  801. " creating: pv-espeak-commits-master/docs/languages/iro/\n",
  802. " inflating: pv-espeak-commits-master/docs/languages/iro/chr.md \n",
  803. " inflating: pv-espeak-commits-master/docs/markup.md \n",
  804. " inflating: pv-espeak-commits-master/docs/mbrola.md \n",
  805. " inflating: pv-espeak-commits-master/docs/numbers.md \n",
  806. " inflating: pv-espeak-commits-master/docs/phoneme_model.md \n",
  807. " inflating: pv-espeak-commits-master/docs/phonemes.md \n",
  808. " creating: pv-espeak-commits-master/docs/phonemes/\n",
  809. " inflating: pv-espeak-commits-master/docs/phonemes/cxs.md \n",
  810. " inflating: pv-espeak-commits-master/docs/phonemes/kirshenbaum.md \n",
  811. " creating: pv-espeak-commits-master/docs/phonemes/vowelcharts/\n",
  812. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/af \n",
  813. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/af.png \n",
  814. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ak \n",
  815. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ak.png \n",
  816. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/am \n",
  817. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/am.png \n",
  818. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/an \n",
  819. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/an.png \n",
  820. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ar \n",
  821. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ar.png \n",
  822. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/as \n",
  823. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/as.png \n",
  824. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/az \n",
  825. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/az.png \n",
  826. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/base \n",
  827. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/base.png \n",
  828. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/base2 \n",
  829. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/base2.png \n",
  830. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/bg \n",
  831. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/bg.png \n",
  832. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/bn \n",
  833. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/bn.png \n",
  834. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/bo \n",
  835. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/bo.png \n",
  836. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ca \n",
  837. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ca.png \n",
  838. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/consonants \n",
  839. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/consonants.png \n",
  840. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/cs \n",
  841. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/cs.png \n",
  842. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/cy \n",
  843. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/cy.png \n",
  844. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/da \n",
  845. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/da.png \n",
  846. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/de \n",
  847. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/de.png \n",
  848. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/dv \n",
  849. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/dv.png \n",
  850. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/el \n",
  851. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/el.png \n",
  852. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en \n",
  853. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en-n \n",
  854. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en-n.png \n",
  855. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en-rp \n",
  856. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en-rp.png \n",
  857. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en-sc \n",
  858. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en-sc.png \n",
  859. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en-us \n",
  860. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en-us.png \n",
  861. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en-wi \n",
  862. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en-wi.png \n",
  863. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en-wm \n",
  864. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en-wm.png \n",
  865. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/en.png \n",
  866. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/eo \n",
  867. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/eo.png \n",
  868. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/es \n",
  869. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/es-la \n",
  870. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/es-la.png \n",
  871. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/es.png \n",
  872. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/et \n",
  873. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/et.png \n",
  874. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/eu \n",
  875. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/eu.png \n",
  876. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/fa \n",
  877. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/fa.png \n",
  878. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/fi \n",
  879. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/fi.png \n",
  880. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/fr \n",
  881. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/fr-ca \n",
  882. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/fr-ca.png \n",
  883. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/fr.png \n",
  884. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ga \n",
  885. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ga.png \n",
  886. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/gd \n",
  887. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/gd.png \n",
  888. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/grc \n",
  889. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/grc.png \n",
  890. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/gu \n",
  891. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/gu.png \n",
  892. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/hi \n",
  893. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/hi.png \n",
  894. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/hr \n",
  895. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/hr.png \n",
  896. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ht \n",
  897. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ht.png \n",
  898. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/hu \n",
  899. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/hu.png \n",
  900. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/hy \n",
  901. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/hy.png \n",
  902. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ia \n",
  903. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ia.png \n",
  904. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/id \n",
  905. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/id.png \n",
  906. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/is \n",
  907. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/is.png \n",
  908. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/it \n",
  909. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/it.png \n",
  910. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/jbo \n",
  911. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/jbo.png \n",
  912. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ka \n",
  913. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ka.png \n",
  914. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/kk \n",
  915. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/kk.png \n",
  916. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/kl \n",
  917. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/kl.png \n",
  918. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/kn \n",
  919. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/kn.png \n",
  920. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ko \n",
  921. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ko.png \n",
  922. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ku \n",
  923. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ku.png \n",
  924. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/la \n",
  925. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/la.png \n",
  926. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/lt \n",
  927. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/lt.png \n",
  928. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/lv \n",
  929. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/lv.png \n",
  930. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/mk \n",
  931. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/mk.png \n",
  932. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ml \n",
  933. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ml.png \n",
  934. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/mni \n",
  935. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/mni.png \n",
  936. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/mt \n",
  937. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/mt.png \n",
  938. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/nci \n",
  939. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/nci.png \n",
  940. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ne \n",
  941. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ne.png \n",
  942. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/nl \n",
  943. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/nl.png \n",
  944. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/no \n",
  945. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/no.png \n",
  946. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/nso \n",
  947. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/nso.png \n",
  948. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/or \n",
  949. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/or.png \n",
  950. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/pa \n",
  951. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/pa.png \n",
  952. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/pl \n",
  953. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/pl.png \n",
  954. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/prs \n",
  955. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/prs.png \n",
  956. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/pt \n",
  957. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/pt-pt \n",
  958. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/pt-pt.png \n",
  959. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/pt.png \n",
  960. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ro \n",
  961. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ro.png \n",
  962. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ru \n",
  963. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ru.png \n",
  964. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/rw \n",
  965. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/rw.png \n",
  966. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/si \n",
  967. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/si.png \n",
  968. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/sk \n",
  969. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/sk.png \n",
  970. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/sl \n",
  971. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/sl.png \n",
  972. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/smj \n",
  973. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/sq \n",
  974. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/sq.png \n",
  975. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/sr \n",
  976. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/sr.png \n",
  977. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/sv \n",
  978. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/sv.png \n",
  979. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/sw \n",
  980. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/sw.png \n",
  981. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ta \n",
  982. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ta.png \n",
  983. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/te \n",
  984. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/te.png \n",
  985. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/tn \n",
  986. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/tn.png \n",
  987. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/tr \n",
  988. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/tr.png \n",
  989. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/tt \n",
  990. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/tt.png \n",
  991. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ur \n",
  992. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/ur.png \n",
  993. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/vdiph.png \n",
  994. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/vdiph2.png \n",
  995. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/vi \n",
  996. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/vi-hue \n",
  997. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/vi-hue.png \n",
  998. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/vi-sgn \n",
  999. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/vi-sgn.png \n",
  1000. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/vi.png \n",
  1001. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/vnasal.png \n",
  1002. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/vowel.png \n",
  1003. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/vowelr.png \n",
  1004. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/vwl_en_us.png \n",
  1005. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/vwl_lv.png \n",
  1006. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/wo \n",
  1007. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/wo.png \n",
  1008. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/zh \n",
  1009. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/zh.png \n",
  1010. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/zhy \n",
  1011. " inflating: pv-espeak-commits-master/docs/phonemes/vowelcharts/zhy.png \n",
  1012. " inflating: pv-espeak-commits-master/docs/phonemes/xsampa.md \n",
  1013. " inflating: pv-espeak-commits-master/docs/phontab.md \n",
  1014. " inflating: pv-espeak-commits-master/docs/voices.md \n",
  1015. " creating: pv-espeak-commits-master/emscripten/\n",
  1016. " inflating: pv-espeak-commits-master/emscripten/Makefile \n",
  1017. " inflating: pv-espeak-commits-master/emscripten/README.md \n",
  1018. " inflating: pv-espeak-commits-master/emscripten/demo.html \n",
  1019. " inflating: pv-espeak-commits-master/emscripten/espeakng_glue.cpp \n",
  1020. " inflating: pv-espeak-commits-master/emscripten/espeakng_glue.idl \n",
  1021. " creating: pv-espeak-commits-master/emscripten/js/\n",
  1022. " inflating: pv-espeak-commits-master/emscripten/js/demo.js \n",
  1023. " inflating: pv-espeak-commits-master/emscripten/js/espeakng.js \n",
  1024. " inflating: pv-espeak-commits-master/emscripten/post.js \n",
  1025. " extracting: pv-espeak-commits-master/emscripten/pre.js \n",
  1026. " creating: pv-espeak-commits-master/espeak-ng-data/\n",
  1027. " inflating: pv-espeak-commits-master/espeak-ng-data/dataset.json \n",
  1028. " inflating: pv-espeak-commits-master/espeak-ng-data/homographs.txt \n",
  1029. " creating: pv-espeak-commits-master/espeak-ng-data/lang/\n",
  1030. " creating: pv-espeak-commits-master/espeak-ng-data/lang/aav/\n",
  1031. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/aav/vi \n",
  1032. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/aav/vi-VN-x-central \n",
  1033. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/aav/vi-VN-x-south \n",
  1034. " creating: pv-espeak-commits-master/espeak-ng-data/lang/art/\n",
  1035. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/art/eo \n",
  1036. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/art/ia \n",
  1037. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/art/io \n",
  1038. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/art/jbo \n",
  1039. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/art/lfn \n",
  1040. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/art/piqd \n",
  1041. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/art/py \n",
  1042. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/art/qdb \n",
  1043. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/art/qya \n",
  1044. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/art/sjn \n",
  1045. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/art/xex \n",
  1046. " creating: pv-espeak-commits-master/espeak-ng-data/lang/azc/\n",
  1047. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/azc/nci \n",
  1048. " creating: pv-espeak-commits-master/espeak-ng-data/lang/bat/\n",
  1049. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/bat/lt \n",
  1050. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/bat/ltg \n",
  1051. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/bat/lv \n",
  1052. " creating: pv-espeak-commits-master/espeak-ng-data/lang/bnt/\n",
  1053. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/bnt/sw \n",
  1054. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/bnt/tn \n",
  1055. " creating: pv-espeak-commits-master/espeak-ng-data/lang/ccs/\n",
  1056. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/ccs/ka \n",
  1057. " creating: pv-espeak-commits-master/espeak-ng-data/lang/cel/\n",
  1058. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/cel/cy \n",
  1059. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/cel/ga \n",
  1060. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/cel/gd \n",
  1061. " creating: pv-espeak-commits-master/espeak-ng-data/lang/cus/\n",
  1062. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/cus/om \n",
  1063. " creating: pv-espeak-commits-master/espeak-ng-data/lang/dra/\n",
  1064. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/dra/kn \n",
  1065. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/dra/ml \n",
  1066. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/dra/ta \n",
  1067. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/dra/te \n",
  1068. " creating: pv-espeak-commits-master/espeak-ng-data/lang/esx/\n",
  1069. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/esx/kl \n",
  1070. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/eu \n",
  1071. " creating: pv-espeak-commits-master/espeak-ng-data/lang/gmq/\n",
  1072. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/gmq/da \n",
  1073. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/gmq/fo \n",
  1074. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/gmq/is \n",
  1075. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/gmq/nb \n",
  1076. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/gmq/sv \n",
  1077. " creating: pv-espeak-commits-master/espeak-ng-data/lang/gmw/\n",
  1078. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/gmw/af \n",
  1079. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/gmw/de \n",
  1080. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/gmw/en \n",
  1081. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/gmw/en-029 \n",
  1082. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/gmw/en-GB-scotland \n",
  1083. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/gmw/en-GB-x-gbclan \n",
  1084. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/gmw/en-GB-x-gbcwmd \n",
  1085. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/gmw/en-GB-x-rp \n",
  1086. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/gmw/en-Shaw \n",
  1087. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/gmw/en-US \n",
  1088. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/gmw/en-US-nyc \n",
  1089. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/gmw/lb \n",
  1090. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/gmw/nl \n",
  1091. " creating: pv-espeak-commits-master/espeak-ng-data/lang/grk/\n",
  1092. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/grk/el \n",
  1093. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/grk/grc \n",
  1094. " creating: pv-espeak-commits-master/espeak-ng-data/lang/inc/\n",
  1095. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/inc/as \n",
  1096. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/inc/bn \n",
  1097. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/inc/bpy \n",
  1098. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/inc/gu \n",
  1099. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/inc/hi \n",
  1100. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/inc/kok \n",
  1101. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/inc/mr \n",
  1102. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/inc/ne \n",
  1103. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/inc/or \n",
  1104. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/inc/pa \n",
  1105. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/inc/sd \n",
  1106. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/inc/si \n",
  1107. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/inc/ur \n",
  1108. " creating: pv-espeak-commits-master/espeak-ng-data/lang/ine/\n",
  1109. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/ine/hy \n",
  1110. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/ine/hyw \n",
  1111. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/ine/sq \n",
  1112. " creating: pv-espeak-commits-master/espeak-ng-data/lang/ira/\n",
  1113. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/ira/fa \n",
  1114. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/ira/fa-Latn \n",
  1115. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/ira/ku \n",
  1116. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/ira/ps \n",
  1117. " creating: pv-espeak-commits-master/espeak-ng-data/lang/iro/\n",
  1118. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/iro/chr \n",
  1119. " creating: pv-espeak-commits-master/espeak-ng-data/lang/itc/\n",
  1120. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/itc/la \n",
  1121. " creating: pv-espeak-commits-master/espeak-ng-data/lang/jpx/\n",
  1122. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/jpx/ja \n",
  1123. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/ko \n",
  1124. " creating: pv-espeak-commits-master/espeak-ng-data/lang/map/\n",
  1125. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/map/haw \n",
  1126. " creating: pv-espeak-commits-master/espeak-ng-data/lang/miz/\n",
  1127. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/miz/mto \n",
  1128. " creating: pv-espeak-commits-master/espeak-ng-data/lang/myn/\n",
  1129. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/myn/quc \n",
  1130. " creating: pv-espeak-commits-master/espeak-ng-data/lang/poz/\n",
  1131. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/poz/id \n",
  1132. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/poz/mi \n",
  1133. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/poz/ms \n",
  1134. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/qu \n",
  1135. " creating: pv-espeak-commits-master/espeak-ng-data/lang/roa/\n",
  1136. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/roa/an \n",
  1137. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/roa/ca \n",
  1138. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/roa/ca-ba \n",
  1139. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/roa/ca-nw \n",
  1140. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/roa/ca-va \n",
  1141. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/roa/es \n",
  1142. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/roa/es-419 \n",
  1143. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/roa/fr \n",
  1144. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/roa/fr-BE \n",
  1145. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/roa/fr-CH \n",
  1146. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/roa/ht \n",
  1147. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/roa/it \n",
  1148. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/roa/pap \n",
  1149. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/roa/pt \n",
  1150. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/roa/pt-BR \n",
  1151. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/roa/ro \n",
  1152. " creating: pv-espeak-commits-master/espeak-ng-data/lang/sai/\n",
  1153. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/sai/gn \n",
  1154. " creating: pv-espeak-commits-master/espeak-ng-data/lang/sem/\n",
  1155. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/sem/am \n",
  1156. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/sem/ar \n",
  1157. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/sem/he \n",
  1158. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/sem/mt \n",
  1159. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/sem/ti \n",
  1160. " creating: pv-espeak-commits-master/espeak-ng-data/lang/sit/\n",
  1161. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/sit/cmn \n",
  1162. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/sit/cmn-Latn-pinyin \n",
  1163. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/sit/hak \n",
  1164. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/sit/my \n",
  1165. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/sit/yue \n",
  1166. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/sit/yue-Latn-jyutping \n",
  1167. " creating: pv-espeak-commits-master/espeak-ng-data/lang/tai/\n",
  1168. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/tai/shn \n",
  1169. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/tai/th \n",
  1170. " creating: pv-espeak-commits-master/espeak-ng-data/lang/trk/\n",
  1171. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/trk/az \n",
  1172. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/trk/ba \n",
  1173. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/trk/cv \n",
  1174. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/trk/kaa \n",
  1175. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/trk/kk \n",
  1176. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/trk/ky \n",
  1177. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/trk/nog \n",
  1178. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/trk/tk \n",
  1179. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/trk/tr \n",
  1180. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/trk/tt \n",
  1181. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/trk/ug \n",
  1182. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/trk/uz \n",
  1183. " creating: pv-espeak-commits-master/espeak-ng-data/lang/urj/\n",
  1184. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/urj/et \n",
  1185. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/urj/fi \n",
  1186. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/urj/hu \n",
  1187. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/urj/smj \n",
  1188. " creating: pv-espeak-commits-master/espeak-ng-data/lang/zle/\n",
  1189. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/zle/be \n",
  1190. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/zle/ru \n",
  1191. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/zle/ru-LV \n",
  1192. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/zle/ru-cl \n",
  1193. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/zle/uk \n",
  1194. " creating: pv-espeak-commits-master/espeak-ng-data/lang/zls/\n",
  1195. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/zls/bg \n",
  1196. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/zls/bs \n",
  1197. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/zls/hr \n",
  1198. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/zls/mk \n",
  1199. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/zls/sl \n",
  1200. " inflating: pv-espeak-commits-master/espeak-ng-data/lang/zls/sr \n",
  1201. " creating: pv-espeak-commits-master/espeak-ng-data/lang/zlw/\n",
  1202. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/zlw/cs \n",
  1203. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/zlw/pl \n",
  1204. " extracting: pv-espeak-commits-master/espeak-ng-data/lang/zlw/sk \n",
  1205. " inflating: pv-espeak-commits-master/espeak-ng-data/stopwords.dat \n",
  1206. " creating: pv-espeak-commits-master/espeak-ng-data/voices/\n",
  1207. " creating: pv-espeak-commits-master/espeak-ng-data/voices/!v/\n",
  1208. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Alex \n",
  1209. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Alicia \n",
  1210. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Andrea \n",
  1211. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Andy \n",
  1212. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Annie \n",
  1213. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/AnxiousAndy \n",
  1214. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Demonic \n",
  1215. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Denis \n",
  1216. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Diogo \n",
  1217. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Gene \n",
  1218. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Gene2 \n",
  1219. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Henrique \n",
  1220. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Hugo \n",
  1221. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Jacky \n",
  1222. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Lee \n",
  1223. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Marco \n",
  1224. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Mario \n",
  1225. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Michael \n",
  1226. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Mike \n",
  1227. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Mr serious \n",
  1228. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Nguyen \n",
  1229. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Reed \n",
  1230. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/RicishayMax \n",
  1231. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/RicishayMax2 \n",
  1232. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/RicishayMax3 \n",
  1233. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Storm \n",
  1234. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/Tweaky \n",
  1235. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/UniRobot \n",
  1236. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/adam \n",
  1237. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/anika \n",
  1238. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/anikaRobot \n",
  1239. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/announcer \n",
  1240. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/antonio \n",
  1241. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/aunty \n",
  1242. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/belinda \n",
  1243. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/benjamin \n",
  1244. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/boris \n",
  1245. " extracting: pv-espeak-commits-master/espeak-ng-data/voices/!v/caleb \n",
  1246. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/croak \n",
  1247. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/david \n",
  1248. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/ed \n",
  1249. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/edward \n",
  1250. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/edward2 \n",
  1251. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/f1 \n",
  1252. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/f2 \n",
  1253. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/f3 \n",
  1254. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/f4 \n",
  1255. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/f5 \n",
  1256. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/fast \n",
  1257. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/grandma \n",
  1258. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/grandpa \n",
  1259. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/gustave \n",
  1260. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/ian \n",
  1261. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/iven \n",
  1262. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/iven2 \n",
  1263. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/iven3 \n",
  1264. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/iven4 \n",
  1265. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/john \n",
  1266. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/kaukovalta \n",
  1267. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/klatt \n",
  1268. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/klatt2 \n",
  1269. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/klatt3 \n",
  1270. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/klatt4 \n",
  1271. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/klatt5 \n",
  1272. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/klatt6 \n",
  1273. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/linda \n",
  1274. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/m1 \n",
  1275. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/m2 \n",
  1276. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/m3 \n",
  1277. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/m4 \n",
  1278. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/m5 \n",
  1279. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/m6 \n",
  1280. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/m7 \n",
  1281. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/m8 \n",
  1282. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/marcelo \n",
  1283. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/max \n",
  1284. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/michel \n",
  1285. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/miguel \n",
  1286. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/mike2 \n",
  1287. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/norbert \n",
  1288. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/pablo \n",
  1289. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/paul \n",
  1290. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/pedro \n",
  1291. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/quincy \n",
  1292. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/rob \n",
  1293. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/robert \n",
  1294. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/robosoft \n",
  1295. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/robosoft2 \n",
  1296. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/robosoft3 \n",
  1297. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/robosoft4 \n",
  1298. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/robosoft5 \n",
  1299. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/robosoft6 \n",
  1300. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/robosoft7 \n",
  1301. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/robosoft8 \n",
  1302. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/sandro \n",
  1303. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/shelby \n",
  1304. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/steph \n",
  1305. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/steph2 \n",
  1306. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/steph3 \n",
  1307. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/travis \n",
  1308. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/victor \n",
  1309. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/whisper \n",
  1310. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/whisperf \n",
  1311. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/!v/zac \n",
  1312. " creating: pv-espeak-commits-master/espeak-ng-data/voices/asia/\n",
  1313. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/asia/ps \n",
  1314. " creating: pv-espeak-commits-master/espeak-ng-data/voices/mb/\n",
  1315. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-af1 \n",
  1316. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-af1-en \n",
  1317. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-ar1 \n",
  1318. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-ar2 \n",
  1319. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-br1 \n",
  1320. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-br1-xex \n",
  1321. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-br2 \n",
  1322. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-br2-xex \n",
  1323. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-br3 \n",
  1324. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-br3-xex \n",
  1325. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-br4 \n",
  1326. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-br4-xex \n",
  1327. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-ca1 \n",
  1328. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-ca2 \n",
  1329. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-cn1 \n",
  1330. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-cr1 \n",
  1331. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-cz1 \n",
  1332. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-cz2 \n",
  1333. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de1 \n",
  1334. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de1-en \n",
  1335. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de2 \n",
  1336. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de2-en \n",
  1337. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de3 \n",
  1338. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de3-en \n",
  1339. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de4 \n",
  1340. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de4-en \n",
  1341. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de5 \n",
  1342. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de5-en \n",
  1343. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de6 \n",
  1344. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de6-en \n",
  1345. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de6-grc \n",
  1346. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de7 \n",
  1347. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-de8 \n",
  1348. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-ee1 \n",
  1349. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-en1 \n",
  1350. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-es1 \n",
  1351. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-es2 \n",
  1352. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-es3 \n",
  1353. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-es4 \n",
  1354. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-fr1 \n",
  1355. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-fr1-en \n",
  1356. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-fr2 \n",
  1357. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-fr3 \n",
  1358. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-fr4 \n",
  1359. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-fr4-en \n",
  1360. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-fr5 \n",
  1361. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-fr6 \n",
  1362. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-fr7 \n",
  1363. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-gr1 \n",
  1364. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-gr2 \n",
  1365. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-gr2-en \n",
  1366. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-hb1 \n",
  1367. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-hb2 \n",
  1368. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-hu1 \n",
  1369. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-hu1-en \n",
  1370. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-ic1 \n",
  1371. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-id1 \n",
  1372. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-in1 \n",
  1373. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-in2 \n",
  1374. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-ir1 \n",
  1375. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-it1 \n",
  1376. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-it2 \n",
  1377. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-it3 \n",
  1378. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-it4 \n",
  1379. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-jp1 \n",
  1380. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-jp2 \n",
  1381. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-jp3 \n",
  1382. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-la1 \n",
  1383. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-lt1 \n",
  1384. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-lt2 \n",
  1385. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-ma1 \n",
  1386. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-mx1 \n",
  1387. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-mx2 \n",
  1388. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-nl1 \n",
  1389. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-nl2 \n",
  1390. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-nl2-en \n",
  1391. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-nl3 \n",
  1392. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-nz1 \n",
  1393. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-pl1 \n",
  1394. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-pl1-en \n",
  1395. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-pt1 \n",
  1396. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-ro1 \n",
  1397. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-ro1-en \n",
  1398. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-sw1 \n",
  1399. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-sw1-en \n",
  1400. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-sw2 \n",
  1401. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-sw2-en \n",
  1402. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-tl1 \n",
  1403. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-tr1 \n",
  1404. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-tr2 \n",
  1405. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-us1 \n",
  1406. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-us2 \n",
  1407. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-us3 \n",
  1408. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/mb/mb-vz1 \n",
  1409. " inflating: pv-espeak-commits-master/espeak-ng-data/voices/ps \n",
  1410. " inflating: pv-espeak-commits-master/espeak-ng.pc.in \n",
  1411. " creating: pv-espeak-commits-master/fastlane/\n",
  1412. " creating: pv-espeak-commits-master/fastlane/metadata/\n",
  1413. " creating: pv-espeak-commits-master/fastlane/metadata/android/\n",
  1414. " creating: pv-espeak-commits-master/fastlane/metadata/android/en-US/\n",
  1415. " inflating: pv-espeak-commits-master/fastlane/metadata/android/en-US/full_description.txt \n",
  1416. " creating: pv-espeak-commits-master/fastlane/metadata/android/en-US/images/\n",
  1417. " inflating: pv-espeak-commits-master/fastlane/metadata/android/en-US/images/icon.png \n",
  1418. " inflating: pv-espeak-commits-master/fastlane/metadata/android/en-US/short_description.txt \n",
  1419. " creating: pv-espeak-commits-master/fastlane/metadata/android/es-ES/\n",
  1420. " inflating: pv-espeak-commits-master/fastlane/metadata/android/es-ES/full_description.txt \n",
  1421. " inflating: pv-espeak-commits-master/fastlane/metadata/android/es-ES/short_description.txt \n",
  1422. " creating: pv-espeak-commits-master/m4/\n",
  1423. " inflating: pv-espeak-commits-master/m4/ax_check_compile_flag.m4 \n",
  1424. " creating: pv-espeak-commits-master/phsource/\n",
  1425. " creating: pv-espeak-commits-master/phsource/b/\n",
  1426. " inflating: pv-espeak-commits-master/phsource/b/b \n",
  1427. " inflating: pv-espeak-commits-master/phsource/b/b@ \n",
  1428. " inflating: pv-espeak-commits-master/phsource/b/b@2 \n",
  1429. " inflating: pv-espeak-commits-master/phsource/b/b_ \n",
  1430. " inflating: pv-espeak-commits-master/phsource/b/ba \n",
  1431. " inflating: pv-espeak-commits-master/phsource/b/be \n",
  1432. " inflating: pv-espeak-commits-master/phsource/b/bi \n",
  1433. " inflating: pv-espeak-commits-master/phsource/b/bo \n",
  1434. " inflating: pv-espeak-commits-master/phsource/b/br \n",
  1435. " inflating: pv-espeak-commits-master/phsource/b/bu \n",
  1436. " inflating: pv-espeak-commits-master/phsource/b/xb \n",
  1437. " inflating: pv-espeak-commits-master/phsource/b/xbr \n",
  1438. " creating: pv-espeak-commits-master/phsource/d/\n",
  1439. " inflating: pv-espeak-commits-master/phsource/d/d \n",
  1440. " inflating: pv-espeak-commits-master/phsource/d/d_ \n",
  1441. " inflating: pv-espeak-commits-master/phsource/d/d_dnt \n",
  1442. " inflating: pv-espeak-commits-master/phsource/d/dr \n",
  1443. " inflating: pv-espeak-commits-master/phsource/d/dr2 \n",
  1444. " inflating: pv-espeak-commits-master/phsource/d/tap \n",
  1445. " inflating: pv-espeak-commits-master/phsource/d/tap1 \n",
  1446. " inflating: pv-espeak-commits-master/phsource/d/tap2 \n",
  1447. " inflating: pv-espeak-commits-master/phsource/d/tap3 \n",
  1448. " inflating: pv-espeak-commits-master/phsource/d/tap4 \n",
  1449. " inflating: pv-espeak-commits-master/phsource/d/tap_i \n",
  1450. " inflating: pv-espeak-commits-master/phsource/d/x_tap \n",
  1451. " inflating: pv-espeak-commits-master/phsource/d/xd \n",
  1452. " inflating: pv-espeak-commits-master/phsource/d/xd2 \n",
  1453. " inflating: pv-espeak-commits-master/phsource/d/xd3 \n",
  1454. " inflating: pv-espeak-commits-master/phsource/d/xd_pzd \n",
  1455. " inflating: pv-espeak-commits-master/phsource/d/xdr \n",
  1456. " inflating: pv-espeak-commits-master/phsource/d/xdz \n",
  1457. " creating: pv-espeak-commits-master/phsource/dzh/\n",
  1458. " inflating: pv-espeak-commits-master/phsource/dzh/dz_pzd \n",
  1459. " inflating: pv-espeak-commits-master/phsource/dzh/dz_pzd_ \n",
  1460. " inflating: pv-espeak-commits-master/phsource/dzh/dzh \n",
  1461. " inflating: pv-espeak-commits-master/phsource/dzh/dzh2 \n",
  1462. " inflating: pv-espeak-commits-master/phsource/dzh/dzh_ \n",
  1463. " inflating: pv-espeak-commits-master/phsource/dzh/xdz_pzd \n",
  1464. " inflating: pv-espeak-commits-master/phsource/dzh/xdzh \n",
  1465. " creating: pv-espeak-commits-master/phsource/envelope/\n",
  1466. " extracting: pv-espeak-commits-master/phsource/envelope/chr_fall21 \n",
  1467. " extracting: pv-espeak-commits-master/phsource/envelope/chr_fall32 \n",
  1468. " extracting: pv-espeak-commits-master/phsource/envelope/chr_fall43 \n",
  1469. " extracting: pv-espeak-commits-master/phsource/envelope/chr_level2 \n",
  1470. " extracting: pv-espeak-commits-master/phsource/envelope/chr_level3 \n",
  1471. " extracting: pv-espeak-commits-master/phsource/envelope/chr_rise23 \n",
  1472. " extracting: pv-espeak-commits-master/phsource/envelope/chr_rise4 \n",
  1473. " inflating: pv-espeak-commits-master/phsource/envelope/i_fall2 \n",
  1474. " inflating: pv-espeak-commits-master/phsource/envelope/i_fallrise3 \n",
  1475. " inflating: pv-espeak-commits-master/phsource/envelope/i_fallrise4 \n",
  1476. " inflating: pv-espeak-commits-master/phsource/envelope/i_rise2 \n",
  1477. " inflating: pv-espeak-commits-master/phsource/envelope/i_risefall \n",
  1478. " inflating: pv-espeak-commits-master/phsource/envelope/i_risefall1 \n",
  1479. " inflating: pv-espeak-commits-master/phsource/envelope/i_risefall2 \n",
  1480. " inflating: pv-espeak-commits-master/phsource/envelope/i_risefallrise \n",
  1481. " extracting: pv-espeak-commits-master/phsource/envelope/p_211 \n",
  1482. " extracting: pv-espeak-commits-master/phsource/envelope/p_214 \n",
  1483. " inflating: pv-espeak-commits-master/phsource/envelope/p_451 \n",
  1484. " inflating: pv-espeak-commits-master/phsource/envelope/p_512 \n",
  1485. " extracting: pv-espeak-commits-master/phsource/envelope/p_fall \n",
  1486. " inflating: pv-espeak-commits-master/phsource/envelope/p_fallrise \n",
  1487. " inflating: pv-espeak-commits-master/phsource/envelope/p_level \n",
  1488. " extracting: pv-espeak-commits-master/phsource/envelope/p_rise \n",
  1489. " inflating: pv-espeak-commits-master/phsource/envelope/p_rise2 \n",
  1490. " extracting: pv-espeak-commits-master/phsource/envelope/vi_2 \n",
  1491. " extracting: pv-espeak-commits-master/phsource/envelope/vi_5 \n",
  1492. " inflating: pv-espeak-commits-master/phsource/envelope/vi_5amp \n",
  1493. " extracting: pv-espeak-commits-master/phsource/envelope/vi_6 \n",
  1494. " inflating: pv-espeak-commits-master/phsource/envelope/vi_6amp \n",
  1495. " creating: pv-espeak-commits-master/phsource/g/\n",
  1496. " inflating: pv-espeak-commits-master/phsource/g/g \n",
  1497. " inflating: pv-espeak-commits-master/phsource/g/g_ \n",
  1498. " inflating: pv-espeak-commits-master/phsource/g/gr \n",
  1499. " inflating: pv-espeak-commits-master/phsource/g/xg \n",
  1500. " inflating: pv-espeak-commits-master/phsource/g/xgr \n",
  1501. " creating: pv-espeak-commits-master/phsource/g2/\n",
  1502. " inflating: pv-espeak-commits-master/phsource/g2/g \n",
  1503. " inflating: pv-espeak-commits-master/phsource/g2/g_ \n",
  1504. " inflating: pv-espeak-commits-master/phsource/g2/xg \n",
  1505. " creating: pv-espeak-commits-master/phsource/h/\n",
  1506. " inflating: pv-espeak-commits-master/phsource/h/h-lv.wav \n",
  1507. " inflating: pv-espeak-commits-master/phsource/h/[email protected] \n",
  1508. " inflating: pv-espeak-commits-master/phsource/h/h_.wav \n",
  1509. " inflating: pv-espeak-commits-master/phsource/h/h_phr.wav \n",
  1510. " inflating: pv-espeak-commits-master/phsource/h/ha.wav \n",
  1511. " inflating: pv-espeak-commits-master/phsource/h/he.wav \n",
  1512. " inflating: pv-espeak-commits-master/phsource/h/hi.wav \n",
  1513. " inflating: pv-espeak-commits-master/phsource/h/ho.wav \n",
  1514. " inflating: pv-espeak-commits-master/phsource/h/hu.wav \n",
  1515. " inflating: pv-espeak-commits-master/phsource/h/hu_fi.wav \n",
  1516. " inflating: pv-espeak-commits-master/phsource/intonation \n",
  1517. " creating: pv-espeak-commits-master/phsource/j/\n",
  1518. " inflating: pv-espeak-commits-master/phsource/j/_j \n",
  1519. " inflating: pv-espeak-commits-master/phsource/j/_j_short \n",
  1520. " inflating: pv-espeak-commits-master/phsource/j/j@ \n",
  1521. " inflating: pv-espeak-commits-master/phsource/j/j_ \n",
  1522. " inflating: pv-espeak-commits-master/phsource/j/ja \n",
  1523. " inflating: pv-espeak-commits-master/phsource/j/je \n",
  1524. " inflating: pv-espeak-commits-master/phsource/j/ji \n",
  1525. " inflating: pv-espeak-commits-master/phsource/j/jo \n",
  1526. " inflating: pv-espeak-commits-master/phsource/j/ju \n",
  1527. " inflating: pv-espeak-commits-master/phsource/j/xj \n",
  1528. " creating: pv-espeak-commits-master/phsource/j2/\n",
  1529. " inflating: pv-espeak-commits-master/phsource/j2/_j2 \n",
  1530. " inflating: pv-espeak-commits-master/phsource/j2/j2@ \n",
  1531. " inflating: pv-espeak-commits-master/phsource/j2/j2a \n",
  1532. " inflating: pv-espeak-commits-master/phsource/j2/j2e \n",
  1533. " inflating: pv-espeak-commits-master/phsource/j2/j2i \n",
  1534. " inflating: pv-espeak-commits-master/phsource/j2/j2o \n",
  1535. " inflating: pv-espeak-commits-master/phsource/j2/j2u \n",
  1536. " inflating: pv-espeak-commits-master/phsource/j2/xj2 \n",
  1537. " creating: pv-espeak-commits-master/phsource/klatt/\n",
  1538. " inflating: pv-espeak-commits-master/phsource/klatt/b \n",
  1539. " inflating: pv-espeak-commits-master/phsource/klatt/bh \n",
  1540. " inflating: pv-espeak-commits-master/phsource/klatt/dz_pzd \n",
  1541. " inflating: pv-espeak-commits-master/phsource/klatt/dz_pzd_ \n",
  1542. " inflating: pv-espeak-commits-master/phsource/klatt/m \n",
  1543. " inflating: pv-espeak-commits-master/phsource/klatt/m-syl \n",
  1544. " inflating: pv-espeak-commits-master/phsource/klatt/m_ \n",
  1545. " inflating: pv-espeak-commits-master/phsource/klatt/n \n",
  1546. " inflating: pv-espeak-commits-master/phsource/klatt/n-syl \n",
  1547. " inflating: pv-espeak-commits-master/phsource/klatt/n^ \n",
  1548. " inflating: pv-espeak-commits-master/phsource/klatt/n^@ \n",
  1549. " creating: pv-espeak-commits-master/phsource/klatt/n_n^/\n",
  1550. " inflating: pv-espeak-commits-master/phsource/klatt/n_n^/_n^ \n",
  1551. " inflating: pv-espeak-commits-master/phsource/klatt/n_n^/n^#_ \n",
  1552. " inflating: pv-espeak-commits-master/phsource/klatt/n_n^/n^@ \n",
  1553. " inflating: pv-espeak-commits-master/phsource/klatt/n_n^/n^_ \n",
  1554. " inflating: pv-espeak-commits-master/phsource/klatt/n_n^/n^a \n",
  1555. " inflating: pv-espeak-commits-master/phsource/klatt/n_n^/n^e \n",
  1556. " inflating: pv-espeak-commits-master/phsource/klatt/n_n^/n^i \n",
  1557. " inflating: pv-espeak-commits-master/phsource/klatt/n_n^/n^o \n",
  1558. " inflating: pv-espeak-commits-master/phsource/klatt/n_n^/n^u \n",
  1559. " inflating: pv-espeak-commits-master/phsource/klatt/nn \n",
  1560. " inflating: pv-espeak-commits-master/phsource/klatt/nn_ \n",
  1561. " inflating: pv-espeak-commits-master/phsource/klatt/nr \n",
  1562. " inflating: pv-espeak-commits-master/phsource/klatt/qq \n",
  1563. " inflating: pv-espeak-commits-master/phsource/klatt/qqh \n",
  1564. " inflating: pv-espeak-commits-master/phsource/klatt/qqh_ \n",
  1565. " inflating: pv-espeak-commits-master/phsource/klatt/tap2 \n",
  1566. " inflating: pv-espeak-commits-master/phsource/klatt/v \n",
  1567. " inflating: pv-espeak-commits-master/phsource/klatt/v_ \n",
  1568. " inflating: pv-espeak-commits-master/phsource/klatt/x_tap \n",
  1569. " inflating: pv-espeak-commits-master/phsource/klatt/zh \n",
  1570. " inflating: pv-espeak-commits-master/phsource/klatt/zh_ \n",
  1571. " creating: pv-espeak-commits-master/phsource/l/\n",
  1572. " inflating: pv-espeak-commits-master/phsource/l/L1_@L \n",
  1573. " inflating: pv-espeak-commits-master/phsource/l/L1_aL \n",
  1574. " inflating: pv-espeak-commits-master/phsource/l/L1_eL \n",
  1575. " inflating: pv-espeak-commits-master/phsource/l/L1_iL \n",
  1576. " inflating: pv-espeak-commits-master/phsource/l/L1_oL \n",
  1577. " inflating: pv-espeak-commits-master/phsource/l/L1_uL \n",
  1578. " inflating: pv-espeak-commits-master/phsource/l/L2_@L \n",
  1579. " inflating: pv-espeak-commits-master/phsource/l/L2_aL \n",
  1580. " inflating: pv-espeak-commits-master/phsource/l/L2_eL \n",
  1581. " inflating: pv-espeak-commits-master/phsource/l/L2_iL \n",
  1582. " inflating: pv-espeak-commits-master/phsource/l/L2_oL \n",
  1583. " inflating: pv-espeak-commits-master/phsource/l/L2_uL \n",
  1584. " inflating: pv-espeak-commits-master/phsource/l/L_eL_af \n",
  1585. " inflating: pv-espeak-commits-master/phsource/l/_l \n",
  1586. " inflating: pv-espeak-commits-master/phsource/l/l \n",
  1587. " inflating: pv-espeak-commits-master/phsource/l/l@ \n",
  1588. " inflating: pv-espeak-commits-master/phsource/l/l_ \n",
  1589. " inflating: pv-espeak-commits-master/phsource/l/l_2 \n",
  1590. " inflating: pv-espeak-commits-master/phsource/l/l_3 \n",
  1591. " inflating: pv-espeak-commits-master/phsource/l/l_4 \n",
  1592. " inflating: pv-espeak-commits-master/phsource/l/l_@ \n",
  1593. " inflating: pv-espeak-commits-master/phsource/l/l_a \n",
  1594. " inflating: pv-espeak-commits-master/phsource/l/l_e \n",
  1595. " inflating: pv-espeak-commits-master/phsource/l/l_front \n",
  1596. " inflating: pv-espeak-commits-master/phsource/l/l_front_ \n",
  1597. " inflating: pv-espeak-commits-master/phsource/l/l_i \n",
  1598. " inflating: pv-espeak-commits-master/phsource/l/l_long \n",
  1599. " inflating: pv-espeak-commits-master/phsource/l/l_o \n",
  1600. " inflating: pv-espeak-commits-master/phsource/l/l_u \n",
  1601. " inflating: pv-espeak-commits-master/phsource/l/l_vi \n",
  1602. " inflating: pv-espeak-commits-master/phsource/l/l_y \n",
  1603. " inflating: pv-espeak-commits-master/phsource/l/la \n",
  1604. " inflating: pv-espeak-commits-master/phsource/l/le \n",
  1605. " inflating: pv-espeak-commits-master/phsource/l/li \n",
  1606. " inflating: pv-espeak-commits-master/phsource/l/lo \n",
  1607. " inflating: pv-espeak-commits-master/phsource/l/lu \n",
  1608. " inflating: pv-espeak-commits-master/phsource/l/tl \n",
  1609. " inflating: pv-espeak-commits-master/phsource/l/xl \n",
  1610. " creating: pv-espeak-commits-master/phsource/l^/\n",
  1611. " inflating: pv-espeak-commits-master/phsource/l^/_l^ \n",
  1612. " inflating: pv-espeak-commits-master/phsource/l^/j2@ \n",
  1613. " inflating: pv-espeak-commits-master/phsource/l^/j2a \n",
  1614. " inflating: pv-espeak-commits-master/phsource/l^/j2e \n",
  1615. " inflating: pv-espeak-commits-master/phsource/l^/j2i \n",
  1616. " inflating: pv-espeak-commits-master/phsource/l^/j2o \n",
  1617. " inflating: pv-espeak-commits-master/phsource/l^/j2u \n",
  1618. " inflating: pv-espeak-commits-master/phsource/l^/l^ \n",
  1619. " inflating: pv-espeak-commits-master/phsource/l^/l^_ \n",
  1620. " inflating: pv-espeak-commits-master/phsource/l^/l_rfx \n",
  1621. " creating: pv-espeak-commits-master/phsource/ll/\n",
  1622. " inflating: pv-espeak-commits-master/phsource/ll/_ll \n",
  1623. " inflating: pv-espeak-commits-master/phsource/ll/ll \n",
  1624. " inflating: pv-espeak-commits-master/phsource/ll/xll \n",
  1625. " creating: pv-espeak-commits-master/phsource/m/\n",
  1626. " inflating: pv-espeak-commits-master/phsource/m/_m \n",
  1627. " inflating: pv-espeak-commits-master/phsource/m/m#_ \n",
  1628. " inflating: pv-espeak-commits-master/phsource/m/m-syl \n",
  1629. " inflating: pv-espeak-commits-master/phsource/m/m@ \n",
  1630. " inflating: pv-espeak-commits-master/phsource/m/m_ \n",
  1631. " inflating: pv-espeak-commits-master/phsource/m/ma \n",
  1632. " inflating: pv-espeak-commits-master/phsource/m/me \n",
  1633. " inflating: pv-espeak-commits-master/phsource/m/mi \n",
  1634. " inflating: pv-espeak-commits-master/phsource/m/mj \n",
  1635. " inflating: pv-espeak-commits-master/phsource/m/mo \n",
  1636. " inflating: pv-espeak-commits-master/phsource/m/mu \n",
  1637. " creating: pv-espeak-commits-master/phsource/mbrola/\n",
  1638. " inflating: pv-espeak-commits-master/phsource/mbrola/af1 \n",
  1639. " inflating: pv-espeak-commits-master/phsource/mbrola/ar1 \n",
  1640. " inflating: pv-espeak-commits-master/phsource/mbrola/ar2 \n",
  1641. " inflating: pv-espeak-commits-master/phsource/mbrola/ca \n",
  1642. " inflating: pv-espeak-commits-master/phsource/mbrola/cmn \n",
  1643. " inflating: pv-espeak-commits-master/phsource/mbrola/cr1 \n",
  1644. " inflating: pv-espeak-commits-master/phsource/mbrola/cs \n",
  1645. " inflating: pv-espeak-commits-master/phsource/mbrola/de2 \n",
  1646. " inflating: pv-espeak-commits-master/phsource/mbrola/de4 \n",
  1647. " inflating: pv-espeak-commits-master/phsource/mbrola/de6 \n",
  1648. " inflating: pv-espeak-commits-master/phsource/mbrola/de8 \n",
  1649. " inflating: pv-espeak-commits-master/phsource/mbrola/ee1 \n",
  1650. " inflating: pv-espeak-commits-master/phsource/mbrola/en1 \n",
  1651. " inflating: pv-espeak-commits-master/phsource/mbrola/es \n",
  1652. " inflating: pv-espeak-commits-master/phsource/mbrola/es3 \n",
  1653. " inflating: pv-espeak-commits-master/phsource/mbrola/es4 \n",
  1654. " inflating: pv-espeak-commits-master/phsource/mbrola/fr \n",
  1655. " inflating: pv-espeak-commits-master/phsource/mbrola/gr1 \n",
  1656. " inflating: pv-espeak-commits-master/phsource/mbrola/gr2 \n",
  1657. " inflating: pv-espeak-commits-master/phsource/mbrola/grc-de6 \n",
  1658. " inflating: pv-espeak-commits-master/phsource/mbrola/he \n",
  1659. " inflating: pv-espeak-commits-master/phsource/mbrola/hn1 \n",
  1660. " inflating: pv-espeak-commits-master/phsource/mbrola/hu1 \n",
  1661. " inflating: pv-espeak-commits-master/phsource/mbrola/ic1 \n",
  1662. " inflating: pv-espeak-commits-master/phsource/mbrola/id1 \n",
  1663. " inflating: pv-espeak-commits-master/phsource/mbrola/in \n",
  1664. " inflating: pv-espeak-commits-master/phsource/mbrola/ir1 \n",
  1665. " inflating: pv-espeak-commits-master/phsource/mbrola/it1 \n",
  1666. " inflating: pv-espeak-commits-master/phsource/mbrola/it3 \n",
  1667. " inflating: pv-espeak-commits-master/phsource/mbrola/jp \n",
  1668. " inflating: pv-espeak-commits-master/phsource/mbrola/la1 \n",
  1669. " inflating: pv-espeak-commits-master/phsource/mbrola/lt \n",
  1670. " inflating: pv-espeak-commits-master/phsource/mbrola/ma1 \n",
  1671. " inflating: pv-espeak-commits-master/phsource/mbrola/mx1 \n",
  1672. " inflating: pv-espeak-commits-master/phsource/mbrola/mx2 \n",
  1673. " inflating: pv-espeak-commits-master/phsource/mbrola/nl \n",
  1674. " inflating: pv-espeak-commits-master/phsource/mbrola/nz1 \n",
  1675. " inflating: pv-espeak-commits-master/phsource/mbrola/pl1 \n",
  1676. " inflating: pv-espeak-commits-master/phsource/mbrola/pt1 \n",
  1677. " inflating: pv-espeak-commits-master/phsource/mbrola/ptbr \n",
  1678. " inflating: pv-espeak-commits-master/phsource/mbrola/ptbr2xex \n",
  1679. " inflating: pv-espeak-commits-master/phsource/mbrola/ptbr4 \n",
  1680. " inflating: pv-espeak-commits-master/phsource/mbrola/ptbr4xex \n",
  1681. " inflating: pv-espeak-commits-master/phsource/mbrola/ptbrxex \n",
  1682. " inflating: pv-espeak-commits-master/phsource/mbrola/ro1 \n",
  1683. " inflating: pv-espeak-commits-master/phsource/mbrola/sv \n",
  1684. " inflating: pv-espeak-commits-master/phsource/mbrola/sv2 \n",
  1685. " inflating: pv-espeak-commits-master/phsource/mbrola/tl1 \n",
  1686. " inflating: pv-espeak-commits-master/phsource/mbrola/tr1 \n",
  1687. " inflating: pv-espeak-commits-master/phsource/mbrola/us \n",
  1688. " inflating: pv-espeak-commits-master/phsource/mbrola/us3 \n",
  1689. " inflating: pv-espeak-commits-master/phsource/mbrola/vz \n",
  1690. " creating: pv-espeak-commits-master/phsource/myanmar/\n",
  1691. " inflating: pv-espeak-commits-master/phsource/myanmar/a \n",
  1692. " inflating: pv-espeak-commits-master/phsource/myanmar/a01 \n",
  1693. " inflating: pv-espeak-commits-master/phsource/myanmar/a02 \n",
  1694. " inflating: pv-espeak-commits-master/phsource/myanmar/a03 \n",
  1695. " inflating: pv-espeak-commits-master/phsource/myanmar/a04 \n",
  1696. " inflating: pv-espeak-commits-master/phsource/myanmar/a05 \n",
  1697. " inflating: pv-espeak-commits-master/phsource/myanmar/a06 \n",
  1698. " inflating: pv-espeak-commits-master/phsource/myanmar/a07 \n",
  1699. " inflating: pv-espeak-commits-master/phsource/myanmar/a07_ \n",
  1700. " inflating: pv-espeak-commits-master/phsource/myanmar/a08 \n",
  1701. " inflating: pv-espeak-commits-master/phsource/myanmar/a09 \n",
  1702. " inflating: pv-espeak-commits-master/phsource/myanmar/a10 \n",
  1703. " inflating: pv-espeak-commits-master/phsource/myanmar/a11 \n",
  1704. " inflating: pv-espeak-commits-master/phsource/myanmar/a12 \n",
  1705. " inflating: pv-espeak-commits-master/phsource/myanmar/a13 \n",
  1706. " inflating: pv-espeak-commits-master/phsource/myanmar/a14 \n",
  1707. " inflating: pv-espeak-commits-master/phsource/myanmar/a15 \n",
  1708. " inflating: pv-espeak-commits-master/phsource/myanmar/a16 \n",
  1709. " inflating: pv-espeak-commits-master/phsource/myanmar/a17 \n",
  1710. " inflating: pv-espeak-commits-master/phsource/myanmar/a18 \n",
  1711. " inflating: pv-espeak-commits-master/phsource/myanmar/a19 \n",
  1712. " inflating: pv-espeak-commits-master/phsource/myanmar/a2 \n",
  1713. " inflating: pv-espeak-commits-master/phsource/myanmar/a20 \n",
  1714. " inflating: pv-espeak-commits-master/phsource/myanmar/a21 \n",
  1715. " inflating: pv-espeak-commits-master/phsource/myanmar/a22 \n",
  1716. " inflating: pv-espeak-commits-master/phsource/myanmar/a23 \n",
  1717. " inflating: pv-espeak-commits-master/phsource/myanmar/a24 \n",
  1718. " inflating: pv-espeak-commits-master/phsource/myanmar/a25 \n",
  1719. " inflating: pv-espeak-commits-master/phsource/myanmar/a26 \n",
  1720. " inflating: pv-espeak-commits-master/phsource/myanmar/a27 \n",
  1721. " inflating: pv-espeak-commits-master/phsource/myanmar/a28 \n",
  1722. " inflating: pv-espeak-commits-master/phsource/myanmar/a29 \n",
  1723. " inflating: pv-espeak-commits-master/phsource/myanmar/a30 \n",
  1724. " inflating: pv-espeak-commits-master/phsource/myanmar/a31 \n",
  1725. " inflating: pv-espeak-commits-master/phsource/myanmar/a32 \n",
  1726. " inflating: pv-espeak-commits-master/phsource/myanmar/a33 \n",
  1727. " inflating: pv-espeak-commits-master/phsource/myanmar/a34 \n",
  1728. " inflating: pv-espeak-commits-master/phsource/myanmar/a35 \n",
  1729. " inflating: pv-espeak-commits-master/phsource/myanmar/a36 \n",
  1730. " inflating: pv-espeak-commits-master/phsource/myanmar/a37 \n",
  1731. " inflating: pv-espeak-commits-master/phsource/myanmar/a38 \n",
  1732. " inflating: pv-espeak-commits-master/phsource/myanmar/a39 \n",
  1733. " inflating: pv-espeak-commits-master/phsource/myanmar/a40 \n",
  1734. " inflating: pv-espeak-commits-master/phsource/myanmar/a41 \n",
  1735. " inflating: pv-espeak-commits-master/phsource/myanmar/a42 \n",
  1736. " inflating: pv-espeak-commits-master/phsource/myanmar/a43 \n",
  1737. " inflating: pv-espeak-commits-master/phsource/myanmar/a44 \n",
  1738. " inflating: pv-espeak-commits-master/phsource/myanmar/a45 \n",
  1739. " inflating: pv-espeak-commits-master/phsource/myanmar/a46 \n",
  1740. " inflating: pv-espeak-commits-master/phsource/myanmar/a47 \n",
  1741. " inflating: pv-espeak-commits-master/phsource/myanmar/a48 \n",
  1742. " inflating: pv-espeak-commits-master/phsource/myanmar/a49 \n",
  1743. " inflating: pv-espeak-commits-master/phsource/myanmar/a50 \n",
  1744. " inflating: pv-espeak-commits-master/phsource/myanmar/by.wav \n",
  1745. " inflating: pv-espeak-commits-master/phsource/myanmar/ch.wav \n",
  1746. " inflating: pv-espeak-commits-master/phsource/myanmar/d.wav \n",
  1747. " inflating: pv-espeak-commits-master/phsource/myanmar/dya.wav \n",
  1748. " inflating: pv-espeak-commits-master/phsource/myanmar/g.wav \n",
  1749. " inflating: pv-espeak-commits-master/phsource/myanmar/gya.wav \n",
  1750. " inflating: pv-espeak-commits-master/phsource/myanmar/h.wav \n",
  1751. " inflating: pv-espeak-commits-master/phsource/myanmar/hs.wav \n",
  1752. " inflating: pv-espeak-commits-master/phsource/myanmar/ht.wav \n",
  1753. " inflating: pv-espeak-commits-master/phsource/myanmar/htya.wav \n",
  1754. " inflating: pv-espeak-commits-master/phsource/myanmar/k.wav \n",
  1755. " inflating: pv-espeak-commits-master/phsource/myanmar/kh.wav \n",
  1756. " inflating: pv-espeak-commits-master/phsource/myanmar/ky \n",
  1757. " inflating: pv-espeak-commits-master/phsource/myanmar/ny \n",
  1758. " inflating: pv-espeak-commits-master/phsource/myanmar/p.wav \n",
  1759. " inflating: pv-espeak-commits-master/phsource/myanmar/phya.wav \n",
  1760. " inflating: pv-espeak-commits-master/phsource/myanmar/pya.wav \n",
  1761. " inflating: pv-espeak-commits-master/phsource/myanmar/r.wav \n",
  1762. " inflating: pv-espeak-commits-master/phsource/myanmar/s.wav \n",
  1763. " inflating: pv-espeak-commits-master/phsource/myanmar/sh.wav \n",
  1764. " inflating: pv-espeak-commits-master/phsource/myanmar/t_hi.wav \n",
  1765. " inflating: pv-espeak-commits-master/phsource/myanmar/t_short.wav \n",
  1766. " inflating: pv-espeak-commits-master/phsource/myanmar/ty.wav \n",
  1767. " inflating: pv-espeak-commits-master/phsource/myanmar/yy \n",
  1768. " inflating: pv-espeak-commits-master/phsource/myanmar/z.wav \n",
  1769. " creating: pv-espeak-commits-master/phsource/n/\n",
  1770. " inflating: pv-espeak-commits-master/phsource/n/_n \n",
  1771. " inflating: pv-espeak-commits-master/phsource/n/_nr \n",
  1772. " inflating: pv-espeak-commits-master/phsource/n/n#_ \n",
  1773. " inflating: pv-espeak-commits-master/phsource/n/n-syl \n",
  1774. " inflating: pv-espeak-commits-master/phsource/n/n@ \n",
  1775. " inflating: pv-espeak-commits-master/phsource/n/n_ \n",
  1776. " inflating: pv-espeak-commits-master/phsource/n/n_long_ \n",
  1777. " inflating: pv-espeak-commits-master/phsource/n/na \n",
  1778. " inflating: pv-espeak-commits-master/phsource/n/ne \n",
  1779. " inflating: pv-espeak-commits-master/phsource/n/ni \n",
  1780. " inflating: pv-espeak-commits-master/phsource/n/nj \n",
  1781. " inflating: pv-espeak-commits-master/phsource/n/nm \n",
  1782. " inflating: pv-espeak-commits-master/phsource/n/no \n",
  1783. " inflating: pv-espeak-commits-master/phsource/n/nr@ \n",
  1784. " inflating: pv-espeak-commits-master/phsource/n/nr_ \n",
  1785. " inflating: pv-espeak-commits-master/phsource/n/nra \n",
  1786. " inflating: pv-espeak-commits-master/phsource/n/nre \n",
  1787. " inflating: pv-espeak-commits-master/phsource/n/nri \n",
  1788. " inflating: pv-espeak-commits-master/phsource/n/nro \n",
  1789. " inflating: pv-espeak-commits-master/phsource/n/nru \n",
  1790. " inflating: pv-espeak-commits-master/phsource/n/nu \n",
  1791. " creating: pv-espeak-commits-master/phsource/n^/\n",
  1792. " inflating: pv-espeak-commits-master/phsource/n^/_n^ \n",
  1793. " inflating: pv-espeak-commits-master/phsource/n^/n^#_ \n",
  1794. " inflating: pv-espeak-commits-master/phsource/n^/n^@ \n",
  1795. " inflating: pv-espeak-commits-master/phsource/n^/n^_ \n",
  1796. " inflating: pv-espeak-commits-master/phsource/n^/n^a \n",
  1797. " inflating: pv-espeak-commits-master/phsource/n^/n^e \n",
  1798. " inflating: pv-espeak-commits-master/phsource/n^/n^i \n",
  1799. " inflating: pv-espeak-commits-master/phsource/n^/n^o \n",
  1800. " inflating: pv-espeak-commits-master/phsource/n^/n^u \n",
  1801. " creating: pv-espeak-commits-master/phsource/nn/\n",
  1802. " inflating: pv-espeak-commits-master/phsource/nn/_nn \n",
  1803. " inflating: pv-espeak-commits-master/phsource/nn/inn \n",
  1804. " inflating: pv-espeak-commits-master/phsource/nn/nn#_ \n",
  1805. " inflating: pv-espeak-commits-master/phsource/nn/nn-syl \n",
  1806. " inflating: pv-espeak-commits-master/phsource/nn/nn2_ \n",
  1807. " inflating: pv-espeak-commits-master/phsource/nn/nn@ \n",
  1808. " inflating: pv-espeak-commits-master/phsource/nn/nn_ \n",
  1809. " inflating: pv-espeak-commits-master/phsource/nn/nna \n",
  1810. " inflating: pv-espeak-commits-master/phsource/nn/nne \n",
  1811. " inflating: pv-espeak-commits-master/phsource/nn/nni \n",
  1812. " inflating: pv-espeak-commits-master/phsource/nn/nnj \n",
  1813. " inflating: pv-espeak-commits-master/phsource/nn/nno \n",
  1814. " inflating: pv-espeak-commits-master/phsource/nn/nnu \n",
  1815. " inflating: pv-espeak-commits-master/phsource/ph_afrikaans \n",
  1816. " inflating: pv-espeak-commits-master/phsource/ph_albanian \n",
  1817. " inflating: pv-espeak-commits-master/phsource/ph_amhari \n",
  1818. " inflating: pv-espeak-commits-master/phsource/ph_arabic \n",
  1819. " inflating: pv-espeak-commits-master/phsource/ph_aragon \n",
  1820. " inflating: pv-espeak-commits-master/phsource/ph_armenian \n",
  1821. " inflating: pv-espeak-commits-master/phsource/ph_assamese \n",
  1822. " inflating: pv-espeak-commits-master/phsource/ph_azerbaijani \n",
  1823. " inflating: pv-espeak-commits-master/phsource/ph_base2 \n",
  1824. " inflating: pv-espeak-commits-master/phsource/ph_bashkir \n",
  1825. " inflating: pv-espeak-commits-master/phsource/ph_basque \n",
  1826. " inflating: pv-espeak-commits-master/phsource/ph_belarusian \n",
  1827. " inflating: pv-espeak-commits-master/phsource/ph_bengali \n",
  1828. " inflating: pv-espeak-commits-master/phsource/ph_bulgarian \n",
  1829. " inflating: pv-espeak-commits-master/phsource/ph_catalan \n",
  1830. " inflating: pv-espeak-commits-master/phsource/ph_catalan_ba \n",
  1831. " inflating: pv-espeak-commits-master/phsource/ph_catalan_nw \n",
  1832. " inflating: pv-espeak-commits-master/phsource/ph_catalan_va \n",
  1833. " inflating: pv-espeak-commits-master/phsource/ph_cherokee \n",
  1834. " inflating: pv-espeak-commits-master/phsource/ph_chuvash \n",
  1835. " inflating: pv-espeak-commits-master/phsource/ph_cmn \n",
  1836. " inflating: pv-espeak-commits-master/phsource/ph_consonants \n",
  1837. " inflating: pv-espeak-commits-master/phsource/ph_croatian \n",
  1838. " inflating: pv-espeak-commits-master/phsource/ph_czech \n",
  1839. " inflating: pv-espeak-commits-master/phsource/ph_danish \n",
  1840. " inflating: pv-espeak-commits-master/phsource/ph_dari \n",
  1841. " inflating: pv-espeak-commits-master/phsource/ph_dutch \n",
  1842. " inflating: pv-espeak-commits-master/phsource/ph_english \n",
  1843. " inflating: pv-espeak-commits-master/phsource/ph_english_n \n",
  1844. " inflating: pv-espeak-commits-master/phsource/ph_english_rp \n",
  1845. " inflating: pv-espeak-commits-master/phsource/ph_english_sc \n",
  1846. " inflating: pv-espeak-commits-master/phsource/ph_english_us \n",
  1847. " inflating: pv-espeak-commits-master/phsource/ph_english_us_nyc \n",
  1848. " inflating: pv-espeak-commits-master/phsource/ph_english_wi \n",
  1849. " inflating: pv-espeak-commits-master/phsource/ph_english_wm \n",
  1850. " inflating: pv-espeak-commits-master/phsource/ph_esperanto \n",
  1851. " inflating: pv-espeak-commits-master/phsource/ph_estonian \n",
  1852. " inflating: pv-espeak-commits-master/phsource/ph_faroese \n",
  1853. " inflating: pv-espeak-commits-master/phsource/ph_farsi \n",
  1854. " inflating: pv-espeak-commits-master/phsource/ph_finnish \n",
  1855. " inflating: pv-espeak-commits-master/phsource/ph_french \n",
  1856. " inflating: pv-espeak-commits-master/phsource/ph_georgian \n",
  1857. " inflating: pv-espeak-commits-master/phsource/ph_german \n",
  1858. " inflating: pv-espeak-commits-master/phsource/ph_greek \n",
  1859. " inflating: pv-espeak-commits-master/phsource/ph_greek_ancient \n",
  1860. " inflating: pv-espeak-commits-master/phsource/ph_greenlandic \n",
  1861. " inflating: pv-espeak-commits-master/phsource/ph_guarani \n",
  1862. " inflating: pv-espeak-commits-master/phsource/ph_gujarati \n",
  1863. " inflating: pv-espeak-commits-master/phsource/ph_haitian \n",
  1864. " inflating: pv-espeak-commits-master/phsource/ph_hakka \n",
  1865. " inflating: pv-espeak-commits-master/phsource/ph_hawaiian \n",
  1866. " inflating: pv-espeak-commits-master/phsource/ph_hindi \n",
  1867. " inflating: pv-espeak-commits-master/phsource/ph_hindi_base \n",
  1868. " inflating: pv-espeak-commits-master/phsource/ph_hungarian \n",
  1869. " inflating: pv-espeak-commits-master/phsource/ph_icelandic \n",
  1870. " inflating: pv-espeak-commits-master/phsource/ph_indonesian \n",
  1871. " inflating: pv-espeak-commits-master/phsource/ph_interlingua \n",
  1872. " inflating: pv-espeak-commits-master/phsource/ph_irish \n",
  1873. " inflating: pv-espeak-commits-master/phsource/ph_italian \n",
  1874. " inflating: pv-espeak-commits-master/phsource/ph_japanese \n",
  1875. " inflating: pv-espeak-commits-master/phsource/ph_kannada \n",
  1876. " inflating: pv-espeak-commits-master/phsource/ph_karakalpak \n",
  1877. " inflating: pv-espeak-commits-master/phsource/ph_kazakh \n",
  1878. " inflating: pv-espeak-commits-master/phsource/ph_klingon \n",
  1879. " inflating: pv-espeak-commits-master/phsource/ph_konkani \n",
  1880. " inflating: pv-espeak-commits-master/phsource/ph_korean \n",
  1881. " inflating: pv-espeak-commits-master/phsource/ph_kurdish \n",
  1882. " inflating: pv-espeak-commits-master/phsource/ph_kyrgyz \n",
  1883. " inflating: pv-espeak-commits-master/phsource/ph_langbelta \n",
  1884. " inflating: pv-espeak-commits-master/phsource/ph_latin \n",
  1885. " inflating: pv-espeak-commits-master/phsource/ph_latvian \n",
  1886. " inflating: pv-espeak-commits-master/phsource/ph_lithuanian \n",
  1887. " inflating: pv-espeak-commits-master/phsource/ph_lojban \n",
  1888. " inflating: pv-espeak-commits-master/phsource/ph_lule_saami \n",
  1889. " inflating: pv-espeak-commits-master/phsource/ph_luxembourgish \n",
  1890. " inflating: pv-espeak-commits-master/phsource/ph_macedonian \n",
  1891. " inflating: pv-espeak-commits-master/phsource/ph_malayalam \n",
  1892. " inflating: pv-espeak-commits-master/phsource/ph_maltese \n",
  1893. " inflating: pv-espeak-commits-master/phsource/ph_manipuri \n",
  1894. " inflating: pv-espeak-commits-master/phsource/ph_maori \n",
  1895. " inflating: pv-espeak-commits-master/phsource/ph_marathi \n",
  1896. " inflating: pv-espeak-commits-master/phsource/ph_mixe_mto \n",
  1897. " inflating: pv-espeak-commits-master/phsource/ph_myanmar \n",
  1898. " inflating: pv-espeak-commits-master/phsource/ph_nahuatl \n",
  1899. " inflating: pv-espeak-commits-master/phsource/ph_nepali \n",
  1900. " inflating: pv-espeak-commits-master/phsource/ph_northern-sotho \n",
  1901. " inflating: pv-espeak-commits-master/phsource/ph_norwegian \n",
  1902. " inflating: pv-espeak-commits-master/phsource/ph_oriya \n",
  1903. " inflating: pv-espeak-commits-master/phsource/ph_oromo \n",
  1904. " inflating: pv-espeak-commits-master/phsource/ph_pashto \n",
  1905. " inflating: pv-espeak-commits-master/phsource/ph_polish \n",
  1906. " inflating: pv-espeak-commits-master/phsource/ph_portugal \n",
  1907. " inflating: pv-espeak-commits-master/phsource/ph_pt_brazil \n",
  1908. " inflating: pv-espeak-commits-master/phsource/ph_punjabi \n",
  1909. " inflating: pv-espeak-commits-master/phsource/ph_pyash \n",
  1910. " inflating: pv-espeak-commits-master/phsource/ph_quechua \n",
  1911. " inflating: pv-espeak-commits-master/phsource/ph_quenya \n",
  1912. " inflating: pv-espeak-commits-master/phsource/ph_romanian \n",
  1913. " inflating: pv-espeak-commits-master/phsource/ph_russian \n",
  1914. " inflating: pv-espeak-commits-master/phsource/ph_russian_lv \n",
  1915. " inflating: pv-espeak-commits-master/phsource/ph_s_gaelic \n",
  1916. " inflating: pv-espeak-commits-master/phsource/ph_serbian \n",
  1917. " inflating: pv-espeak-commits-master/phsource/ph_setswana \n",
  1918. " inflating: pv-espeak-commits-master/phsource/ph_shan \n",
  1919. " inflating: pv-espeak-commits-master/phsource/ph_sindarin \n",
  1920. " inflating: pv-espeak-commits-master/phsource/ph_sindhi \n",
  1921. " inflating: pv-espeak-commits-master/phsource/ph_sinhala \n",
  1922. " inflating: pv-espeak-commits-master/phsource/ph_slovak \n",
  1923. " inflating: pv-espeak-commits-master/phsource/ph_slovenian \n",
  1924. " inflating: pv-espeak-commits-master/phsource/ph_spanish \n",
  1925. " inflating: pv-espeak-commits-master/phsource/ph_spanish_la \n",
  1926. " inflating: pv-espeak-commits-master/phsource/ph_swahili \n",
  1927. " inflating: pv-espeak-commits-master/phsource/ph_swedish \n",
  1928. " inflating: pv-espeak-commits-master/phsource/ph_tamil \n",
  1929. " inflating: pv-espeak-commits-master/phsource/ph_tatar \n",
  1930. " inflating: pv-espeak-commits-master/phsource/ph_telugu \n",
  1931. " inflating: pv-espeak-commits-master/phsource/ph_tigrinya \n",
  1932. " inflating: pv-espeak-commits-master/phsource/ph_turkish \n",
  1933. " inflating: pv-espeak-commits-master/phsource/ph_turkmen \n",
  1934. " inflating: pv-espeak-commits-master/phsource/ph_ukrainian \n",
  1935. " inflating: pv-espeak-commits-master/phsource/ph_urdu \n",
  1936. " inflating: pv-espeak-commits-master/phsource/ph_uyghur \n",
  1937. " inflating: pv-espeak-commits-master/phsource/ph_uzbek \n",
  1938. " inflating: pv-espeak-commits-master/phsource/ph_vietnam \n",
  1939. " inflating: pv-espeak-commits-master/phsource/ph_vietnam_hue \n",
  1940. " inflating: pv-espeak-commits-master/phsource/ph_vietnam_sgn \n",
  1941. " inflating: pv-espeak-commits-master/phsource/ph_welsh \n",
  1942. " inflating: pv-espeak-commits-master/phsource/ph_yue \n",
  1943. " inflating: pv-espeak-commits-master/phsource/phonemes \n",
  1944. " creating: pv-espeak-commits-master/phsource/r/\n",
  1945. " inflating: pv-espeak-commits-master/phsource/r/@_ \n",
  1946. " inflating: pv-espeak-commits-master/phsource/r/V_ \n",
  1947. " inflating: pv-espeak-commits-master/phsource/r/V_2_ \n",
  1948. " inflating: pv-espeak-commits-master/phsource/r/_r \n",
  1949. " inflating: pv-espeak-commits-master/phsource/r/a_ \n",
  1950. " inflating: pv-espeak-commits-master/phsource/r/aa \n",
  1951. " inflating: pv-espeak-commits-master/phsource/r/r \n",
  1952. " inflating: pv-espeak-commits-master/phsource/r/r@ \n",
  1953. " inflating: pv-espeak-commits-master/phsource/r/r_ \n",
  1954. " inflating: pv-espeak-commits-master/phsource/r/ra \n",
  1955. " inflating: pv-espeak-commits-master/phsource/r/re \n",
  1956. " inflating: pv-espeak-commits-master/phsource/r/ri \n",
  1957. " inflating: pv-espeak-commits-master/phsource/r/ro \n",
  1958. " inflating: pv-espeak-commits-master/phsource/r/rr \n",
  1959. " inflating: pv-espeak-commits-master/phsource/r/ru \n",
  1960. " inflating: pv-espeak-commits-master/phsource/r/tr \n",
  1961. " inflating: pv-espeak-commits-master/phsource/r/trr \n",
  1962. " inflating: pv-espeak-commits-master/phsource/r/xr \n",
  1963. " creating: pv-espeak-commits-master/phsource/r2/\n",
  1964. " inflating: pv-espeak-commits-master/phsource/r2/_r2 \n",
  1965. " inflating: pv-espeak-commits-master/phsource/r2/r2@ \n",
  1966. " inflating: pv-espeak-commits-master/phsource/r2/r2a \n",
  1967. " inflating: pv-espeak-commits-master/phsource/r2/r2e \n",
  1968. " inflating: pv-espeak-commits-master/phsource/r2/r2i \n",
  1969. " inflating: pv-espeak-commits-master/phsource/r2/r2o \n",
  1970. " inflating: pv-espeak-commits-master/phsource/r2/r2u \n",
  1971. " creating: pv-espeak-commits-master/phsource/r3/\n",
  1972. " inflating: pv-espeak-commits-master/phsource/r3/@tap \n",
  1973. " inflating: pv-espeak-commits-master/phsource/r3/@tap2 \n",
  1974. " inflating: pv-espeak-commits-master/phsource/r3/@tap_rfx \n",
  1975. " inflating: pv-espeak-commits-master/phsource/r3/@tap_rfx_ \n",
  1976. " inflating: pv-espeak-commits-master/phsource/r3/r#_ \n",
  1977. " inflating: pv-espeak-commits-master/phsource/r3/r_ \n",
  1978. " inflating: pv-espeak-commits-master/phsource/r3/r_2 \n",
  1979. " inflating: pv-espeak-commits-master/phsource/r3/r_@ \n",
  1980. " inflating: pv-espeak-commits-master/phsource/r3/r_a \n",
  1981. " inflating: pv-espeak-commits-master/phsource/r3/r_e \n",
  1982. " inflating: pv-espeak-commits-master/phsource/r3/r_i \n",
  1983. " inflating: pv-espeak-commits-master/phsource/r3/r_n \n",
  1984. " inflating: pv-espeak-commits-master/phsource/r3/r_o \n",
  1985. " inflating: pv-espeak-commits-master/phsource/r3/r_ru.wav \n",
  1986. " inflating: pv-espeak-commits-master/phsource/r3/r_ru2 \n",
  1987. " inflating: pv-espeak-commits-master/phsource/r3/r_sr.wav \n",
  1988. " inflating: pv-espeak-commits-master/phsource/r3/r_trill \n",
  1989. " inflating: pv-espeak-commits-master/phsource/r3/r_trill.wav \n",
  1990. " inflating: pv-espeak-commits-master/phsource/r3/r_trill2 \n",
  1991. " inflating: pv-espeak-commits-master/phsource/r3/r_trill2.wav \n",
  1992. " inflating: pv-espeak-commits-master/phsource/r3/r_trill3.wav \n",
  1993. " inflating: pv-espeak-commits-master/phsource/r3/r_trill4.wav \n",
  1994. " inflating: pv-espeak-commits-master/phsource/r3/r_trill_short \n",
  1995. " inflating: pv-espeak-commits-master/phsource/r3/r_u \n",
  1996. " inflating: pv-espeak-commits-master/phsource/r3/r_uvl \n",
  1997. " inflating: pv-espeak-commits-master/phsource/r3/r_uvl.wav \n",
  1998. " inflating: pv-espeak-commits-master/phsource/r3/r_uvl2.wav \n",
  1999. " inflating: pv-espeak-commits-master/phsource/r3/rx.wav \n",
  2000. " inflating: pv-espeak-commits-master/phsource/r3/rz_cs.wav \n",
  2001. " creating: pv-espeak-commits-master/phsource/ufric/\n",
  2002. " inflating: pv-espeak-commits-master/phsource/ufric/ch.wav \n",
  2003. " inflating: pv-espeak-commits-master/phsource/ufric/ch_.wav \n",
  2004. " inflating: pv-espeak-commits-master/phsource/ufric/ch_sr.wav \n",
  2005. " inflating: pv-espeak-commits-master/phsource/ufric/f.wav \n",
  2006. " inflating: pv-espeak-commits-master/phsource/ufric/f_.wav \n",
  2007. " inflating: pv-espeak-commits-master/phsource/ufric/l#.wav \n",
  2008. " inflating: pv-espeak-commits-master/phsource/ufric/l#_2.wav \n",
  2009. " inflating: pv-espeak-commits-master/phsource/ufric/s!.wav \n",
  2010. " inflating: pv-espeak-commits-master/phsource/ufric/s.wav \n",
  2011. " inflating: pv-espeak-commits-master/phsource/ufric/s_.wav \n",
  2012. " inflating: pv-espeak-commits-master/phsource/ufric/s_continue.wav \n",
  2013. " inflating: pv-espeak-commits-master/phsource/ufric/s_pal.wav \n",
  2014. " inflating: pv-espeak-commits-master/phsource/ufric/s_pzd.wav \n",
  2015. " inflating: pv-espeak-commits-master/phsource/ufric/s_pzd_.wav \n",
  2016. " inflating: pv-espeak-commits-master/phsource/ufric/sh.wav \n",
  2017. " inflating: pv-espeak-commits-master/phsource/ufric/sh3.wav \n",
  2018. " inflating: pv-espeak-commits-master/phsource/ufric/sh_.wav \n",
  2019. " inflating: pv-espeak-commits-master/phsource/ufric/sh_pzd.wav \n",
  2020. " inflating: pv-espeak-commits-master/phsource/ufric/sh_pzd2.wav \n",
  2021. " inflating: pv-espeak-commits-master/phsource/ufric/sh_pzd_.wav \n",
  2022. " inflating: pv-espeak-commits-master/phsource/ufric/sh_rfx.wav \n",
  2023. " inflating: pv-espeak-commits-master/phsource/ufric/sx_sv.wav \n",
  2024. " inflating: pv-espeak-commits-master/phsource/ufric/th.wav \n",
  2025. " inflating: pv-espeak-commits-master/phsource/ufric/th_.wav \n",
  2026. " inflating: pv-espeak-commits-master/phsource/ufric/tl#.wav \n",
  2027. " inflating: pv-espeak-commits-master/phsource/ufric/tlh.wav \n",
  2028. " inflating: pv-espeak-commits-master/phsource/ufric/ts_eu.wav \n",
  2029. " inflating: pv-espeak-commits-master/phsource/ufric/tz_eu.wav \n",
  2030. " inflating: pv-espeak-commits-master/phsource/ufric/x.wav \n",
  2031. " inflating: pv-espeak-commits-master/phsource/ufric/x2.wav \n",
  2032. " inflating: pv-espeak-commits-master/phsource/ufric/x_.wav \n",
  2033. " inflating: pv-espeak-commits-master/phsource/ufric/x_hr.wav \n",
  2034. " inflating: pv-espeak-commits-master/phsource/ufric/x_ku.wav \n",
  2035. " inflating: pv-espeak-commits-master/phsource/ufric/x_sr.wav \n",
  2036. " inflating: pv-espeak-commits-master/phsource/ufric/xx.wav \n",
  2037. " inflating: pv-espeak-commits-master/phsource/ufric/z_eu.wav \n",
  2038. " creating: pv-espeak-commits-master/phsource/ustop/\n",
  2039. " inflating: pv-espeak-commits-master/phsource/ustop/c.wav \n",
  2040. " inflating: pv-espeak-commits-master/phsource/ustop/c_ejc.wav \n",
  2041. " inflating: pv-espeak-commits-master/phsource/ustop/k.wav \n",
  2042. " inflating: pv-espeak-commits-master/phsource/ustop/k_.wav \n",
  2043. " inflating: pv-espeak-commits-master/phsource/ustop/k_asp.wav \n",
  2044. " inflating: pv-espeak-commits-master/phsource/ustop/k_asp2.wav \n",
  2045. " inflating: pv-espeak-commits-master/phsource/ustop/k_asp_a.wav \n",
  2046. " inflating: pv-espeak-commits-master/phsource/ustop/k_asp_e.wav \n",
  2047. " inflating: pv-espeak-commits-master/phsource/ustop/k_asp_u.wav \n",
  2048. " inflating: pv-espeak-commits-master/phsource/ustop/k_ejc.wav \n",
  2049. " inflating: pv-espeak-commits-master/phsource/ustop/k_ejc2.wav \n",
  2050. " inflating: pv-espeak-commits-master/phsource/ustop/k_unasp.wav \n",
  2051. " inflating: pv-espeak-commits-master/phsource/ustop/k_unasp2.wav \n",
  2052. " inflating: pv-espeak-commits-master/phsource/ustop/k_unasp_.wav \n",
  2053. " inflating: pv-espeak-commits-master/phsource/ustop/ki.wav \n",
  2054. " inflating: pv-espeak-commits-master/phsource/ustop/ki_ejc.wav \n",
  2055. " inflating: pv-espeak-commits-master/phsource/ustop/ki_unasp2.wav \n",
  2056. " inflating: pv-espeak-commits-master/phsource/ustop/kl.wav \n",
  2057. " inflating: pv-espeak-commits-master/phsource/ustop/kr.wav \n",
  2058. " inflating: pv-espeak-commits-master/phsource/ustop/null.wav \n",
  2059. " inflating: pv-espeak-commits-master/phsource/ustop/p.wav \n",
  2060. " inflating: pv-espeak-commits-master/phsource/ustop/p_.wav \n",
  2061. " inflating: pv-espeak-commits-master/phsource/ustop/p_asp.wav \n",
  2062. " inflating: pv-espeak-commits-master/phsource/ustop/p_ejc.wav \n",
  2063. " inflating: pv-espeak-commits-master/phsource/ustop/p_unasp.wav \n",
  2064. " inflating: pv-espeak-commits-master/phsource/ustop/p_unasp_.wav \n",
  2065. " inflating: pv-espeak-commits-master/phsource/ustop/percus02.wav \n",
  2066. " inflating: pv-espeak-commits-master/phsource/ustop/percus10.wav \n",
  2067. " inflating: pv-espeak-commits-master/phsource/ustop/pl.wav \n",
  2068. " inflating: pv-espeak-commits-master/phsource/ustop/pr.wav \n",
  2069. " inflating: pv-espeak-commits-master/phsource/ustop/q.wav \n",
  2070. " inflating: pv-espeak-commits-master/phsource/ustop/q_u.wav \n",
  2071. " inflating: pv-espeak-commits-master/phsource/ustop/t.wav \n",
  2072. " inflating: pv-espeak-commits-master/phsource/ustop/t_.wav \n",
  2073. " inflating: pv-espeak-commits-master/phsource/ustop/t_dnt.wav \n",
  2074. " inflating: pv-espeak-commits-master/phsource/ustop/t_dnt2.wav \n",
  2075. " inflating: pv-espeak-commits-master/phsource/ustop/t_ejc.wav \n",
  2076. " inflating: pv-espeak-commits-master/phsource/ustop/t_hard.wav \n",
  2077. " inflating: pv-espeak-commits-master/phsource/ustop/t_hard_.wav \n",
  2078. " inflating: pv-espeak-commits-master/phsource/ustop/t_hi.wav \n",
  2079. " inflating: pv-espeak-commits-master/phsource/ustop/t_pzd.wav \n",
  2080. " inflating: pv-espeak-commits-master/phsource/ustop/t_short.wav \n",
  2081. " inflating: pv-espeak-commits-master/phsource/ustop/t_short_.wav \n",
  2082. " inflating: pv-espeak-commits-master/phsource/ustop/t_sr.wav \n",
  2083. " inflating: pv-espeak-commits-master/phsource/ustop/t_unasp.wav \n",
  2084. " inflating: pv-espeak-commits-master/phsource/ustop/t_unasp2.wav \n",
  2085. " inflating: pv-espeak-commits-master/phsource/ustop/t_unasp3.wav \n",
  2086. " inflating: pv-espeak-commits-master/phsource/ustop/th_rfx.wav \n",
  2087. " inflating: pv-espeak-commits-master/phsource/ustop/th_rfx2.wav \n",
  2088. " inflating: pv-espeak-commits-master/phsource/ustop/tr.wav \n",
  2089. " inflating: pv-espeak-commits-master/phsource/ustop/ts.wav \n",
  2090. " inflating: pv-espeak-commits-master/phsource/ustop/ts2.wav \n",
  2091. " inflating: pv-espeak-commits-master/phsource/ustop/ts_.wav \n",
  2092. " inflating: pv-espeak-commits-master/phsource/ustop/ts_pzd.wav \n",
  2093. " inflating: pv-espeak-commits-master/phsource/ustop/ts_pzd2.wav \n",
  2094. " inflating: pv-espeak-commits-master/phsource/ustop/ts_pzd3.wav \n",
  2095. " inflating: pv-espeak-commits-master/phsource/ustop/ts_pzd_.wav \n",
  2096. " inflating: pv-espeak-commits-master/phsource/ustop/ts_rfx.wav \n",
  2097. " inflating: pv-espeak-commits-master/phsource/ustop/ts_rfx_unasp.wav \n",
  2098. " inflating: pv-espeak-commits-master/phsource/ustop/ts_sr.wav \n",
  2099. " inflating: pv-espeak-commits-master/phsource/ustop/ts_unasp.wav \n",
  2100. " inflating: pv-espeak-commits-master/phsource/ustop/tsh.wav \n",
  2101. " inflating: pv-espeak-commits-master/phsource/ustop/tsh2.wav \n",
  2102. " inflating: pv-espeak-commits-master/phsource/ustop/tsh_.wav \n",
  2103. " inflating: pv-espeak-commits-master/phsource/ustop/tsh_asp.wav \n",
  2104. " inflating: pv-espeak-commits-master/phsource/ustop/tsh_pzd.wav \n",
  2105. " inflating: pv-espeak-commits-master/phsource/ustop/tsh_pzd_unasp.wav \n",
  2106. " inflating: pv-espeak-commits-master/phsource/ustop/tsh_sr.wav \n",
  2107. " inflating: pv-espeak-commits-master/phsource/ustop/tsh_unasp.wav \n",
  2108. " inflating: pv-espeak-commits-master/phsource/ustop/tsh_unasp2.wav \n",
  2109. " creating: pv-espeak-commits-master/phsource/vdiph/\n",
  2110. " inflating: pv-espeak-commits-master/phsource/vdiph/&i \n",
  2111. " inflating: pv-espeak-commits-master/phsource/vdiph/&i_2 \n",
  2112. " inflating: pv-espeak-commits-master/phsource/vdiph/&i_3 \n",
  2113. " inflating: pv-espeak-commits-master/phsource/vdiph/&y \n",
  2114. " inflating: pv-espeak-commits-master/phsource/vdiph/0i \n",
  2115. " inflating: pv-espeak-commits-master/phsource/vdiph/0i_2 \n",
  2116. " inflating: pv-espeak-commits-master/phsource/vdiph/8u \n",
  2117. " inflating: pv-espeak-commits-master/phsource/vdiph/@i \n",
  2118. " inflating: pv-espeak-commits-master/phsource/vdiph/@i_2 \n",
  2119. " inflating: pv-espeak-commits-master/phsource/vdiph/@i_3 \n",
  2120. " inflating: pv-espeak-commits-master/phsource/vdiph/@i_4 \n",
  2121. " inflating: pv-espeak-commits-master/phsource/vdiph/@u \n",
  2122. " inflating: pv-espeak-commits-master/phsource/vdiph/@u_2 \n",
  2123. " inflating: pv-espeak-commits-master/phsource/vdiph/@u_3 \n",
  2124. " inflating: pv-espeak-commits-master/phsource/vdiph/@u_en \n",
  2125. " inflating: pv-espeak-commits-master/phsource/vdiph/Vi \n",
  2126. " inflating: pv-espeak-commits-master/phsource/vdiph/Vo \n",
  2127. " inflating: pv-espeak-commits-master/phsource/vdiph/Vu \n",
  2128. " inflating: pv-espeak-commits-master/phsource/vdiph/Vu_2 \n",
  2129. " inflating: pv-espeak-commits-master/phsource/vdiph/Vu_3 \n",
  2130. " inflating: pv-espeak-commits-master/phsource/vdiph/Vu_4 \n",
  2131. " inflating: pv-espeak-commits-master/phsource/vdiph/a#u \n",
  2132. " inflating: pv-espeak-commits-master/phsource/vdiph/aae \n",
  2133. " inflating: pv-espeak-commits-master/phsource/vdiph/aai \n",
  2134. " inflating: pv-espeak-commits-master/phsource/vdiph/aai_2 \n",
  2135. " inflating: pv-espeak-commits-master/phsource/vdiph/aai_3 \n",
  2136. " inflating: pv-espeak-commits-master/phsource/vdiph/aaoo \n",
  2137. " inflating: pv-espeak-commits-master/phsource/vdiph/aau \n",
  2138. " inflating: pv-espeak-commits-master/phsource/vdiph/aau_2 \n",
  2139. " inflating: pv-espeak-commits-master/phsource/vdiph/aau_3 \n",
  2140. " inflating: pv-espeak-commits-master/phsource/vdiph/aau_4 \n",
  2141. " inflating: pv-espeak-commits-master/phsource/vdiph/aau_5 \n",
  2142. " inflating: pv-espeak-commits-master/phsource/vdiph/aau_6 \n",
  2143. " inflating: pv-espeak-commits-master/phsource/vdiph/ae \n",
  2144. " inflating: pv-espeak-commits-master/phsource/vdiph/ae_2 \n",
  2145. " inflating: pv-espeak-commits-master/phsource/vdiph/ai \n",
  2146. " inflating: pv-espeak-commits-master/phsource/vdiph/ai_2 \n",
  2147. " inflating: pv-espeak-commits-master/phsource/vdiph/ai_3 \n",
  2148. " inflating: pv-espeak-commits-master/phsource/vdiph/ai_4 \n",
  2149. " inflating: pv-espeak-commits-master/phsource/vdiph/ai_5 \n",
  2150. " inflating: pv-espeak-commits-master/phsource/vdiph/ai_6 \n",
  2151. " inflating: pv-espeak-commits-master/phsource/vdiph/ai_7 \n",
  2152. " inflating: pv-espeak-commits-master/phsource/vdiph/ai_8 \n",
  2153. " inflating: pv-espeak-commits-master/phsource/vdiph/ai_en \n",
  2154. " inflating: pv-espeak-commits-master/phsource/vdiph/ai_en2 \n",
  2155. " inflating: pv-espeak-commits-master/phsource/vdiph/aoo \n",
  2156. " inflating: pv-espeak-commits-master/phsource/vdiph/au \n",
  2157. " inflating: pv-espeak-commits-master/phsource/vdiph/au# \n",
  2158. " inflating: pv-espeak-commits-master/phsource/vdiph/au_2 \n",
  2159. " inflating: pv-espeak-commits-master/phsource/vdiph/au_3 \n",
  2160. " inflating: pv-espeak-commits-master/phsource/vdiph/au_4 \n",
  2161. " inflating: pv-espeak-commits-master/phsource/vdiph/ee-e \n",
  2162. " inflating: pv-espeak-commits-master/phsource/vdiph/eei \n",
  2163. " inflating: pv-espeak-commits-master/phsource/vdiph/eei_2 \n",
  2164. " inflating: pv-espeak-commits-master/phsource/vdiph/eei_3 \n",
  2165. " inflating: pv-espeak-commits-master/phsource/vdiph/eei_4 \n",
  2166. " inflating: pv-espeak-commits-master/phsource/vdiph/eei_5 \n",
  2167. " inflating: pv-espeak-commits-master/phsource/vdiph/eeu \n",
  2168. " inflating: pv-espeak-commits-master/phsource/vdiph/eeu_2 \n",
  2169. " inflating: pv-espeak-commits-master/phsource/vdiph/eeu_3 \n",
  2170. " inflating: pv-espeak-commits-master/phsource/vdiph/eey \n",
  2171. " inflating: pv-espeak-commits-master/phsource/vdiph/ei \n",
  2172. " inflating: pv-espeak-commits-master/phsource/vdiph/eu \n",
  2173. " inflating: pv-espeak-commits-master/phsource/vdiph/eu_2 \n",
  2174. " inflating: pv-espeak-commits-master/phsource/vdiph/i#i \n",
  2175. " inflating: pv-espeak-commits-master/phsource/vdiph/i@_2 \n",
  2176. " inflating: pv-espeak-commits-master/phsource/vdiph/ii \n",
  2177. " inflating: pv-espeak-commits-master/phsource/vdiph/oi \n",
  2178. " inflating: pv-espeak-commits-master/phsource/vdiph/oi_2 \n",
  2179. " inflating: pv-espeak-commits-master/phsource/vdiph/ooi \n",
  2180. " inflating: pv-espeak-commits-master/phsource/vdiph/ooi_2 \n",
  2181. " inflating: pv-espeak-commits-master/phsource/vdiph/ooi_3 \n",
  2182. " inflating: pv-espeak-commits-master/phsource/vdiph/ooi_4 \n",
  2183. " inflating: pv-espeak-commits-master/phsource/vdiph/oou \n",
  2184. " inflating: pv-espeak-commits-master/phsource/vdiph/ou \n",
  2185. " inflating: pv-espeak-commits-master/phsource/vdiph/ou_2 \n",
  2186. " inflating: pv-espeak-commits-master/phsource/vdiph/ou_3 \n",
  2187. " inflating: pv-espeak-commits-master/phsource/vdiph/ou_4 \n",
  2188. " inflating: pv-espeak-commits-master/phsource/vdiph/u-i \n",
  2189. " inflating: pv-espeak-commits-master/phsource/vdiph/ui \n",
  2190. " inflating: pv-espeak-commits-master/phsource/vdiph/ui_2 \n",
  2191. " inflating: pv-espeak-commits-master/phsource/vdiph/ui_3 \n",
  2192. " inflating: pv-espeak-commits-master/phsource/vdiph/ui_4 \n",
  2193. " inflating: pv-espeak-commits-master/phsource/vdiph/y#i \n",
  2194. " inflating: pv-espeak-commits-master/phsource/vdiph/y#i_2 \n",
  2195. " inflating: pv-espeak-commits-master/phsource/vdiph/y#y \n",
  2196. " inflating: pv-espeak-commits-master/phsource/vdiph/y#y_2 \n",
  2197. " inflating: pv-espeak-commits-master/phsource/vdiph/y#y_3 \n",
  2198. " inflating: pv-espeak-commits-master/phsource/vdiph/yi \n",
  2199. " inflating: pv-espeak-commits-master/phsource/vdiph/yi_fr \n",
  2200. " creating: pv-espeak-commits-master/phsource/vdiph2/\n",
  2201. " inflating: pv-espeak-commits-master/phsource/vdiph2/8@ \n",
  2202. " inflating: pv-espeak-commits-master/phsource/vdiph2/e@ \n",
  2203. " inflating: pv-espeak-commits-master/phsource/vdiph2/e_u \n",
  2204. " inflating: pv-espeak-commits-master/phsource/vdiph2/ea \n",
  2205. " inflating: pv-espeak-commits-master/phsource/vdiph2/ee@ \n",
  2206. " inflating: pv-espeak-commits-master/phsource/vdiph2/ee@_2 \n",
  2207. " inflating: pv-espeak-commits-master/phsource/vdiph2/ei_2 \n",
  2208. " inflating: pv-espeak-commits-master/phsource/vdiph2/ei_3 \n",
  2209. " inflating: pv-espeak-commits-master/phsource/vdiph2/ei_4 \n",
  2210. " inflating: pv-espeak-commits-master/phsource/vdiph2/eo \n",
  2211. " inflating: pv-espeak-commits-master/phsource/vdiph2/i@ \n",
  2212. " inflating: pv-espeak-commits-master/phsource/vdiph2/i@_2 \n",
  2213. " inflating: pv-espeak-commits-master/phsource/vdiph2/i@_3 \n",
  2214. " inflating: pv-espeak-commits-master/phsource/vdiph2/ie \n",
  2215. " inflating: pv-espeak-commits-master/phsource/vdiph2/ie_2 \n",
  2216. " inflating: pv-espeak-commits-master/phsource/vdiph2/ii@ \n",
  2217. " inflating: pv-espeak-commits-master/phsource/vdiph2/ii@_2 \n",
  2218. " inflating: pv-espeak-commits-master/phsource/vdiph2/ii@_3 \n",
  2219. " inflating: pv-espeak-commits-master/phsource/vdiph2/iioo \n",
  2220. " inflating: pv-espeak-commits-master/phsource/vdiph2/iu \n",
  2221. " inflating: pv-espeak-commits-master/phsource/vdiph2/iu_2 \n",
  2222. " inflating: pv-espeak-commits-master/phsource/vdiph2/iu_3 \n",
  2223. " inflating: pv-espeak-commits-master/phsource/vdiph2/iu_4 \n",
  2224. " inflating: pv-espeak-commits-master/phsource/vdiph2/iy \n",
  2225. " inflating: pv-espeak-commits-master/phsource/vdiph2/o@ \n",
  2226. " inflating: pv-espeak-commits-master/phsource/vdiph2/o_oo \n",
  2227. " inflating: pv-espeak-commits-master/phsource/vdiph2/oa \n",
  2228. " inflating: pv-espeak-commits-master/phsource/vdiph2/u#@ \n",
  2229. " inflating: pv-espeak-commits-master/phsource/vdiph2/u-@ \n",
  2230. " inflating: pv-espeak-commits-master/phsource/vdiph2/u@ \n",
  2231. " inflating: pv-espeak-commits-master/phsource/vdiph2/ua \n",
  2232. " inflating: pv-espeak-commits-master/phsource/vdiph2/uaa \n",
  2233. " inflating: pv-espeak-commits-master/phsource/vdiph2/uo \n",
  2234. " inflating: pv-espeak-commits-master/phsource/vdiph2/uu@ \n",
  2235. " inflating: pv-espeak-commits-master/phsource/vdiph2/uw \n",
  2236. " inflating: pv-espeak-commits-master/phsource/vdiph2/uw_2 \n",
  2237. " inflating: pv-espeak-commits-master/phsource/vdiph2/uw_3 \n",
  2238. " inflating: pv-espeak-commits-master/phsource/vdiph2/uw_4 \n",
  2239. " inflating: pv-espeak-commits-master/phsource/vdiph2/uw_6 \n",
  2240. " inflating: pv-espeak-commits-master/phsource/vdiph2/y#@ \n",
  2241. " inflating: pv-espeak-commits-master/phsource/vdiph2/y-y# \n",
  2242. " inflating: pv-espeak-commits-master/phsource/vdiph2/y@ \n",
  2243. " inflating: pv-espeak-commits-master/phsource/vdiph2/ye \n",
  2244. " inflating: pv-espeak-commits-master/phsource/vdiph2/yu \n",
  2245. " creating: pv-espeak-commits-master/phsource/vietnam/\n",
  2246. " inflating: pv-espeak-commits-master/phsource/vietnam/@_2 \n",
  2247. " inflating: pv-espeak-commits-master/phsource/vietnam/O_short \n",
  2248. " inflating: pv-espeak-commits-master/phsource/vietnam/O_short_2 \n",
  2249. " inflating: pv-espeak-commits-master/phsource/vietnam/V \n",
  2250. " inflating: pv-espeak-commits-master/phsource/vietnam/V_2 \n",
  2251. " inflating: pv-espeak-commits-master/phsource/vietnam/_c.wav \n",
  2252. " inflating: pv-espeak-commits-master/phsource/vietnam/_w \n",
  2253. " inflating: pv-espeak-commits-master/phsource/vietnam/a \n",
  2254. " inflating: pv-espeak-commits-master/phsource/vietnam/a_2 \n",
  2255. " inflating: pv-espeak-commits-master/phsource/vietnam/a_x \n",
  2256. " inflating: pv-espeak-commits-master/phsource/vietnam/aa \n",
  2257. " inflating: pv-espeak-commits-master/phsource/vietnam/c.wav \n",
  2258. " inflating: pv-espeak-commits-master/phsource/vietnam/c_2.wav \n",
  2259. " inflating: pv-espeak-commits-master/phsource/vietnam/ch.wav \n",
  2260. " inflating: pv-espeak-commits-master/phsource/vietnam/dd.wav \n",
  2261. " inflating: pv-espeak-commits-master/phsource/vietnam/dd_2.wav \n",
  2262. " extracting: pv-espeak-commits-master/phsource/vietnam/dda.wav \n",
  2263. " inflating: pv-espeak-commits-master/phsource/vietnam/dda_2.wav \n",
  2264. " inflating: pv-espeak-commits-master/phsource/vietnam/e \n",
  2265. " inflating: pv-espeak-commits-master/phsource/vietnam/e_2 \n",
  2266. " inflating: pv-espeak-commits-master/phsource/vietnam/e_e \n",
  2267. " inflating: pv-espeak-commits-master/phsource/vietnam/e_e_2 \n",
  2268. " inflating: pv-espeak-commits-master/phsource/vietnam/e_short_1 \n",
  2269. " inflating: pv-espeak-commits-master/phsource/vietnam/e_short_2 \n",
  2270. " inflating: pv-espeak-commits-master/phsource/vietnam/hi.wav \n",
  2271. " inflating: pv-espeak-commits-master/phsource/vietnam/hu.wav \n",
  2272. " inflating: pv-espeak-commits-master/phsource/vietnam/i \n",
  2273. " inflating: pv-espeak-commits-master/phsource/vietnam/i_2 \n",
  2274. " inflating: pv-espeak-commits-master/phsource/vietnam/ie \n",
  2275. " inflating: pv-espeak-commits-master/phsource/vietnam/ie_2 \n",
  2276. " inflating: pv-espeak-commits-master/phsource/vietnam/kh.wav \n",
  2277. " inflating: pv-espeak-commits-master/phsource/vietnam/n.wav \n",
  2278. " inflating: pv-espeak-commits-master/phsource/vietnam/n^_ \n",
  2279. " inflating: pv-espeak-commits-master/phsource/vietnam/nh.wav \n",
  2280. " inflating: pv-espeak-commits-master/phsource/vietnam/nn \n",
  2281. " inflating: pv-espeak-commits-master/phsource/vietnam/o# \n",
  2282. " inflating: pv-espeak-commits-master/phsource/vietnam/o_2 \n",
  2283. " inflating: pv-espeak-commits-master/phsource/vietnam/oe \n",
  2284. " inflating: pv-espeak-commits-master/phsource/vietnam/oo \n",
  2285. " inflating: pv-espeak-commits-master/phsource/vietnam/oong \n",
  2286. " inflating: pv-espeak-commits-master/phsource/vietnam/th.wav \n",
  2287. " inflating: pv-espeak-commits-master/phsource/vietnam/tr.wav \n",
  2288. " inflating: pv-espeak-commits-master/phsource/vietnam/u \n",
  2289. " inflating: pv-espeak-commits-master/phsource/vietnam/u@ \n",
  2290. " extracting: pv-espeak-commits-master/phsource/vietnam/w.wav \n",
  2291. " inflating: pv-espeak-commits-master/phsource/vietnam/w_ \n",
  2292. " inflating: pv-espeak-commits-master/phsource/vietnam/y \n",
  2293. " inflating: pv-espeak-commits-master/phsource/vietnam/y@ \n",
  2294. " inflating: pv-espeak-commits-master/phsource/vietnam/y_2 \n",
  2295. " creating: pv-espeak-commits-master/phsource/vnasal/\n",
  2296. " inflating: pv-espeak-commits-master/phsource/vnasal/&_n \n",
  2297. " inflating: pv-espeak-commits-master/phsource/vnasal/&u_n \n",
  2298. " inflating: pv-espeak-commits-master/phsource/vnasal/V_n \n",
  2299. " inflating: pv-espeak-commits-master/phsource/vnasal/W_n \n",
  2300. " inflating: pv-espeak-commits-master/phsource/vnasal/a#_n \n",
  2301. " inflating: pv-espeak-commits-master/phsource/vnasal/a#_n2 \n",
  2302. " inflating: pv-espeak-commits-master/phsource/vnasal/a#u_n \n",
  2303. " inflating: pv-espeak-commits-master/phsource/vnasal/a_n \n",
  2304. " inflating: pv-espeak-commits-master/phsource/vnasal/aa_n \n",
  2305. " inflating: pv-espeak-commits-master/phsource/vnasal/aa_n2 \n",
  2306. " inflating: pv-espeak-commits-master/phsource/vnasal/aa_n3 \n",
  2307. " inflating: pv-espeak-commits-master/phsource/vnasal/aa_n4 \n",
  2308. " inflating: pv-espeak-commits-master/phsource/vnasal/ai_n \n",
  2309. " inflating: pv-espeak-commits-master/phsource/vnasal/au_n \n",
  2310. " inflating: pv-espeak-commits-master/phsource/vnasal/e#_n \n",
  2311. " inflating: pv-espeak-commits-master/phsource/vnasal/e_n \n",
  2312. " inflating: pv-espeak-commits-master/phsource/vnasal/ee_n \n",
  2313. " inflating: pv-espeak-commits-master/phsource/vnasal/ee_n2 \n",
  2314. " inflating: pv-espeak-commits-master/phsource/vnasal/ee_u_n \n",
  2315. " inflating: pv-espeak-commits-master/phsource/vnasal/i_n \n",
  2316. " inflating: pv-espeak-commits-master/phsource/vnasal/i_n2 \n",
  2317. " inflating: pv-espeak-commits-master/phsource/vnasal/ii_n \n",
  2318. " inflating: pv-espeak-commits-master/phsource/vnasal/o_n \n",
  2319. " inflating: pv-espeak-commits-master/phsource/vnasal/o_n2 \n",
  2320. " inflating: pv-espeak-commits-master/phsource/vnasal/o_n3 \n",
  2321. " inflating: pv-espeak-commits-master/phsource/vnasal/o_n4 \n",
  2322. " inflating: pv-espeak-commits-master/phsource/vnasal/o_n5 \n",
  2323. " inflating: pv-espeak-commits-master/phsource/vnasal/oi_n \n",
  2324. " inflating: pv-espeak-commits-master/phsource/vnasal/oo_n \n",
  2325. " inflating: pv-espeak-commits-master/phsource/vnasal/oo_n2 \n",
  2326. " inflating: pv-espeak-commits-master/phsource/vnasal/oo_n3 \n",
  2327. " inflating: pv-espeak-commits-master/phsource/vnasal/uI_n \n",
  2328. " inflating: pv-espeak-commits-master/phsource/vnasal/u_n \n",
  2329. " creating: pv-espeak-commits-master/phsource/voc/\n",
  2330. " inflating: pv-espeak-commits-master/phsource/voc/Q \n",
  2331. " inflating: pv-espeak-commits-master/phsource/voc/Q_ \n",
  2332. " inflating: pv-espeak-commits-master/phsource/voc/Q_less \n",
  2333. " inflating: pv-espeak-commits-master/phsource/voc/Q_less2 \n",
  2334. " inflating: pv-espeak-commits-master/phsource/voc/Q_ulv \n",
  2335. " inflating: pv-espeak-commits-master/phsource/voc/bh \n",
  2336. " inflating: pv-espeak-commits-master/phsource/voc/dh \n",
  2337. " inflating: pv-espeak-commits-master/phsource/voc/dh_ \n",
  2338. " inflating: pv-espeak-commits-master/phsource/voc/dh_om \n",
  2339. " inflating: pv-espeak-commits-master/phsource/voc/j \n",
  2340. " inflating: pv-espeak-commits-master/phsource/voc/j2 \n",
  2341. " inflating: pv-espeak-commits-master/phsource/voc/murmur1 \n",
  2342. " inflating: pv-espeak-commits-master/phsource/voc/v \n",
  2343. " inflating: pv-espeak-commits-master/phsource/voc/v# \n",
  2344. " inflating: pv-espeak-commits-master/phsource/voc/v#_ \n",
  2345. " inflating: pv-espeak-commits-master/phsource/voc/v2 \n",
  2346. " inflating: pv-espeak-commits-master/phsource/voc/v_ \n",
  2347. " inflating: pv-espeak-commits-master/phsource/voc/vj \n",
  2348. " inflating: pv-espeak-commits-master/phsource/voc/z \n",
  2349. " inflating: pv-espeak-commits-master/phsource/voc/z_ \n",
  2350. " inflating: pv-espeak-commits-master/phsource/voc/z_pzd \n",
  2351. " inflating: pv-espeak-commits-master/phsource/voc/z_pzd_ \n",
  2352. " inflating: pv-espeak-commits-master/phsource/voc/zh \n",
  2353. " inflating: pv-espeak-commits-master/phsource/voc/zh_ \n",
  2354. " inflating: pv-espeak-commits-master/phsource/voc/zh_2 \n",
  2355. " creating: pv-espeak-commits-master/phsource/vocw/\n",
  2356. " inflating: pv-espeak-commits-master/phsource/vocw/Q.wav \n",
  2357. " inflating: pv-espeak-commits-master/phsource/vocw/Q2.wav \n",
  2358. " inflating: pv-espeak-commits-master/phsource/vocw/Q_.wav \n",
  2359. " inflating: pv-espeak-commits-master/phsource/vocw/dh.wav \n",
  2360. " inflating: pv-espeak-commits-master/phsource/vocw/v.wav \n",
  2361. " inflating: pv-espeak-commits-master/phsource/vocw/x.wav \n",
  2362. " inflating: pv-espeak-commits-master/phsource/vocw/zh.wav \n",
  2363. " inflating: pv-espeak-commits-master/phsource/vocw/zh_rfx.wav \n",
  2364. " creating: pv-espeak-commits-master/phsource/vowel/\n",
  2365. " inflating: pv-espeak-commits-master/phsource/vowel/& \n",
  2366. " inflating: pv-espeak-commits-master/phsource/vowel/&_2 \n",
  2367. " inflating: pv-espeak-commits-master/phsource/vowel/&_3 \n",
  2368. " inflating: pv-espeak-commits-master/phsource/vowel/0 \n",
  2369. " inflating: pv-espeak-commits-master/phsource/vowel/0_2 \n",
  2370. " inflating: pv-espeak-commits-master/phsource/vowel/0_3 \n",
  2371. " inflating: pv-espeak-commits-master/phsource/vowel/3_2 \n",
  2372. " inflating: pv-espeak-commits-master/phsource/vowel/3_3 \n",
  2373. " inflating: pv-espeak-commits-master/phsource/vowel/3_en \n",
  2374. " inflating: pv-espeak-commits-master/phsource/vowel/8 \n",
  2375. " inflating: pv-espeak-commits-master/phsource/vowel/8_2 \n",
  2376. " inflating: pv-espeak-commits-master/phsource/vowel/8_3 \n",
  2377. " inflating: pv-espeak-commits-master/phsource/vowel/8_4 \n",
  2378. " inflating: pv-espeak-commits-master/phsource/vowel/8_5 \n",
  2379. " inflating: pv-espeak-commits-master/phsource/vowel/8_6 \n",
  2380. " inflating: pv-espeak-commits-master/phsource/vowel/8_7 \n",
  2381. " inflating: pv-espeak-commits-master/phsource/vowel/@ \n",
  2382. " inflating: pv-espeak-commits-master/phsource/vowel/@- \n",
  2383. " inflating: pv-espeak-commits-master/phsource/vowel/@_2 \n",
  2384. " inflating: pv-espeak-commits-master/phsource/vowel/@_3 \n",
  2385. " inflating: pv-espeak-commits-master/phsource/vowel/@_4 \n",
  2386. " inflating: pv-espeak-commits-master/phsource/vowel/@_5 \n",
  2387. " inflating: pv-espeak-commits-master/phsource/vowel/@_6 \n",
  2388. " inflating: pv-espeak-commits-master/phsource/vowel/@_bck \n",
  2389. " inflating: pv-espeak-commits-master/phsource/vowel/@_fnt \n",
  2390. " inflating: pv-espeak-commits-master/phsource/vowel/@_fr \n",
  2391. " inflating: pv-espeak-commits-master/phsource/vowel/@_hgh \n",
  2392. " inflating: pv-espeak-commits-master/phsource/vowel/@_low \n",
  2393. " inflating: pv-espeak-commits-master/phsource/vowel/@_low2 \n",
  2394. " inflating: pv-espeak-commits-master/phsource/vowel/V \n",
  2395. " inflating: pv-espeak-commits-master/phsource/vowel/V_2 \n",
  2396. " inflating: pv-espeak-commits-master/phsource/vowel/V_3 \n",
  2397. " inflating: pv-espeak-commits-master/phsource/vowel/V_4 \n",
  2398. " inflating: pv-espeak-commits-master/phsource/vowel/V_5 \n",
  2399. " inflating: pv-espeak-commits-master/phsource/vowel/V_6 \n",
  2400. " inflating: pv-espeak-commits-master/phsource/vowel/V_7 \n",
  2401. " inflating: pv-espeak-commits-master/phsource/vowel/a \n",
  2402. " inflating: pv-espeak-commits-master/phsource/vowel/a# \n",
  2403. " inflating: pv-espeak-commits-master/phsource/vowel/a#_2 \n",
  2404. " inflating: pv-espeak-commits-master/phsource/vowel/a#_3 \n",
  2405. " inflating: pv-espeak-commits-master/phsource/vowel/a#_4 \n",
  2406. " inflating: pv-espeak-commits-master/phsource/vowel/a_2 \n",
  2407. " inflating: pv-espeak-commits-master/phsource/vowel/a_3 \n",
  2408. " inflating: pv-espeak-commits-master/phsource/vowel/a_4 \n",
  2409. " inflating: pv-espeak-commits-master/phsource/vowel/a_5 \n",
  2410. " inflating: pv-espeak-commits-master/phsource/vowel/a_6 \n",
  2411. " inflating: pv-espeak-commits-master/phsource/vowel/a_7 \n",
  2412. " inflating: pv-espeak-commits-master/phsource/vowel/a_8 \n",
  2413. " inflating: pv-espeak-commits-master/phsource/vowel/aa \n",
  2414. " inflating: pv-espeak-commits-master/phsource/vowel/aa# \n",
  2415. " inflating: pv-espeak-commits-master/phsource/vowel/aa_2 \n",
  2416. " inflating: pv-espeak-commits-master/phsource/vowel/aa_3 \n",
  2417. " inflating: pv-espeak-commits-master/phsource/vowel/aa_4 \n",
  2418. " inflating: pv-espeak-commits-master/phsource/vowel/aa_5 \n",
  2419. " inflating: pv-espeak-commits-master/phsource/vowel/aa_6 \n",
  2420. " inflating: pv-espeak-commits-master/phsource/vowel/aa_7 \n",
  2421. " inflating: pv-espeak-commits-master/phsource/vowel/aa_8 \n",
  2422. " inflating: pv-espeak-commits-master/phsource/vowel/aa_9 \n",
  2423. " inflating: pv-espeak-commits-master/phsource/vowel/e \n",
  2424. " inflating: pv-espeak-commits-master/phsource/vowel/e# \n",
  2425. " inflating: pv-espeak-commits-master/phsource/vowel/e_2 \n",
  2426. " inflating: pv-espeak-commits-master/phsource/vowel/e_3 \n",
  2427. " inflating: pv-espeak-commits-master/phsource/vowel/e_4 \n",
  2428. " inflating: pv-espeak-commits-master/phsource/vowel/e_5 \n",
  2429. " inflating: pv-espeak-commits-master/phsource/vowel/e_6 \n",
  2430. " inflating: pv-espeak-commits-master/phsource/vowel/e_7 \n",
  2431. " inflating: pv-espeak-commits-master/phsource/vowel/e_8 \n",
  2432. " inflating: pv-espeak-commits-master/phsource/vowel/e_9 \n",
  2433. " inflating: pv-espeak-commits-master/phsource/vowel/e_e \n",
  2434. " inflating: pv-espeak-commits-master/phsource/vowel/e_mid \n",
  2435. " inflating: pv-espeak-commits-master/phsource/vowel/e_mid2 \n",
  2436. " inflating: pv-espeak-commits-master/phsource/vowel/ee \n",
  2437. " inflating: pv-espeak-commits-master/phsource/vowel/ee# \n",
  2438. " inflating: pv-espeak-commits-master/phsource/vowel/ee#_2 \n",
  2439. " inflating: pv-espeak-commits-master/phsource/vowel/ee_1 \n",
  2440. " inflating: pv-espeak-commits-master/phsource/vowel/ee_2 \n",
  2441. " inflating: pv-espeak-commits-master/phsource/vowel/ee_3 \n",
  2442. " inflating: pv-espeak-commits-master/phsource/vowel/ee_4 \n",
  2443. " inflating: pv-espeak-commits-master/phsource/vowel/ee_5 \n",
  2444. " inflating: pv-espeak-commits-master/phsource/vowel/ee_6 \n",
  2445. " inflating: pv-espeak-commits-master/phsource/vowel/ee_7 \n",
  2446. " inflating: pv-espeak-commits-master/phsource/vowel/i \n",
  2447. " inflating: pv-espeak-commits-master/phsource/vowel/i# \n",
  2448. " inflating: pv-espeak-commits-master/phsource/vowel/i#_2 \n",
  2449. " inflating: pv-espeak-commits-master/phsource/vowel/i#_4 \n",
  2450. " inflating: pv-espeak-commits-master/phsource/vowel/i#_5 \n",
  2451. " inflating: pv-espeak-commits-master/phsource/vowel/i#_6 \n",
  2452. " inflating: pv-espeak-commits-master/phsource/vowel/i#_7 \n",
  2453. " inflating: pv-espeak-commits-master/phsource/vowel/i_2 \n",
  2454. " inflating: pv-espeak-commits-master/phsource/vowel/i_3 \n",
  2455. " inflating: pv-espeak-commits-master/phsource/vowel/i_4 \n",
  2456. " inflating: pv-espeak-commits-master/phsource/vowel/i_5 \n",
  2457. " inflating: pv-espeak-commits-master/phsource/vowel/i_6 \n",
  2458. " inflating: pv-espeak-commits-master/phsource/vowel/i_7 \n",
  2459. " inflating: pv-espeak-commits-master/phsource/vowel/i_8 \n",
  2460. " inflating: pv-espeak-commits-master/phsource/vowel/i_en \n",
  2461. " inflating: pv-espeak-commits-master/phsource/vowel/i_fnt \n",
  2462. " inflating: pv-espeak-commits-master/phsource/vowel/ii \n",
  2463. " inflating: pv-espeak-commits-master/phsource/vowel/ii# \n",
  2464. " inflating: pv-espeak-commits-master/phsource/vowel/ii#_2 \n",
  2465. " inflating: pv-espeak-commits-master/phsource/vowel/ii#_3 \n",
  2466. " inflating: pv-espeak-commits-master/phsource/vowel/ii_2 \n",
  2467. " inflating: pv-espeak-commits-master/phsource/vowel/ii_3 \n",
  2468. " inflating: pv-espeak-commits-master/phsource/vowel/ii_4 \n",
  2469. " inflating: pv-espeak-commits-master/phsource/vowel/ii_5 \n",
  2470. " inflating: pv-espeak-commits-master/phsource/vowel/ii_6 \n",
  2471. " inflating: pv-espeak-commits-master/phsource/vowel/ii_7 \n",
  2472. " inflating: pv-espeak-commits-master/phsource/vowel/ii_8 \n",
  2473. " inflating: pv-espeak-commits-master/phsource/vowel/ii_final \n",
  2474. " inflating: pv-espeak-commits-master/phsource/vowel/o \n",
  2475. " inflating: pv-espeak-commits-master/phsource/vowel/o- \n",
  2476. " inflating: pv-espeak-commits-master/phsource/vowel/o-_2 \n",
  2477. " inflating: pv-espeak-commits-master/phsource/vowel/o-_3 \n",
  2478. " inflating: pv-espeak-commits-master/phsource/vowel/o-_4 \n",
  2479. " inflating: pv-espeak-commits-master/phsource/vowel/o_2 \n",
  2480. " inflating: pv-espeak-commits-master/phsource/vowel/o_3 \n",
  2481. " inflating: pv-espeak-commits-master/phsource/vowel/o_4 \n",
  2482. " inflating: pv-espeak-commits-master/phsource/vowel/o_5 \n",
  2483. " inflating: pv-espeak-commits-master/phsource/vowel/o_6 \n",
  2484. " inflating: pv-espeak-commits-master/phsource/vowel/o_7 \n",
  2485. " inflating: pv-espeak-commits-master/phsource/vowel/o_8 \n",
  2486. " inflating: pv-espeak-commits-master/phsource/vowel/o_mid \n",
  2487. " inflating: pv-espeak-commits-master/phsource/vowel/o_mid2 \n",
  2488. " inflating: pv-espeak-commits-master/phsource/vowel/oe \n",
  2489. " inflating: pv-espeak-commits-master/phsource/vowel/oe_2 \n",
  2490. " inflating: pv-espeak-commits-master/phsource/vowel/oe_3 \n",
  2491. " inflating: pv-espeak-commits-master/phsource/vowel/oe_4 \n",
  2492. " inflating: pv-espeak-commits-master/phsource/vowel/oo \n",
  2493. " inflating: pv-espeak-commits-master/phsource/vowel/oo_1 \n",
  2494. " inflating: pv-espeak-commits-master/phsource/vowel/oo_2 \n",
  2495. " inflating: pv-espeak-commits-master/phsource/vowel/oo_3 \n",
  2496. " inflating: pv-espeak-commits-master/phsource/vowel/oo_4 \n",
  2497. " inflating: pv-espeak-commits-master/phsource/vowel/oo_5 \n",
  2498. " inflating: pv-espeak-commits-master/phsource/vowel/oo_en \n",
  2499. " inflating: pv-espeak-commits-master/phsource/vowel/u \n",
  2500. " inflating: pv-espeak-commits-master/phsource/vowel/u# \n",
  2501. " inflating: pv-espeak-commits-master/phsource/vowel/u#_2 \n",
  2502. " inflating: pv-espeak-commits-master/phsource/vowel/u#_3 \n",
  2503. " inflating: pv-espeak-commits-master/phsource/vowel/u#_4 \n",
  2504. " inflating: pv-espeak-commits-master/phsource/vowel/u#_5 \n",
  2505. " inflating: pv-espeak-commits-master/phsource/vowel/u#_7 \n",
  2506. " inflating: pv-espeak-commits-master/phsource/vowel/u_2 \n",
  2507. " inflating: pv-espeak-commits-master/phsource/vowel/u_3 \n",
  2508. " inflating: pv-espeak-commits-master/phsource/vowel/u_5 \n",
  2509. " inflating: pv-espeak-commits-master/phsource/vowel/u_6 \n",
  2510. " inflating: pv-espeak-commits-master/phsource/vowel/u_7 \n",
  2511. " inflating: pv-espeak-commits-master/phsource/vowel/u_bck \n",
  2512. " inflating: pv-espeak-commits-master/phsource/vowel/u_bck2 \n",
  2513. " inflating: pv-espeak-commits-master/phsource/vowel/u_bck3 \n",
  2514. " inflating: pv-espeak-commits-master/phsource/vowel/u_fnt \n",
  2515. " inflating: pv-espeak-commits-master/phsource/vowel/u_fnt2 \n",
  2516. " inflating: pv-espeak-commits-master/phsource/vowel/u_unr \n",
  2517. " inflating: pv-espeak-commits-master/phsource/vowel/uu \n",
  2518. " inflating: pv-espeak-commits-master/phsource/vowel/uu# \n",
  2519. " inflating: pv-espeak-commits-master/phsource/vowel/uu#_2 \n",
  2520. " inflating: pv-espeak-commits-master/phsource/vowel/uu_2 \n",
  2521. " inflating: pv-espeak-commits-master/phsource/vowel/uu_3 \n",
  2522. " inflating: pv-espeak-commits-master/phsource/vowel/uu_4 \n",
  2523. " inflating: pv-espeak-commits-master/phsource/vowel/uu_bck \n",
  2524. " inflating: pv-espeak-commits-master/phsource/vowel/y \n",
  2525. " inflating: pv-espeak-commits-master/phsource/vowel/y# \n",
  2526. " inflating: pv-espeak-commits-master/phsource/vowel/y## \n",
  2527. " inflating: pv-espeak-commits-master/phsource/vowel/y#_2 \n",
  2528. " inflating: pv-espeak-commits-master/phsource/vowel/y#_3 \n",
  2529. " inflating: pv-espeak-commits-master/phsource/vowel/y#_4 \n",
  2530. " inflating: pv-espeak-commits-master/phsource/vowel/y_2 \n",
  2531. " inflating: pv-espeak-commits-master/phsource/vowel/y_3 \n",
  2532. " inflating: pv-espeak-commits-master/phsource/vowel/y_4 \n",
  2533. " inflating: pv-espeak-commits-master/phsource/vowel/y_5 \n",
  2534. " inflating: pv-espeak-commits-master/phsource/vowel/yy \n",
  2535. " inflating: pv-espeak-commits-master/phsource/vowel/yy_3 \n",
  2536. " inflating: pv-espeak-commits-master/phsource/vowel/yy_4 \n",
  2537. " creating: pv-espeak-commits-master/phsource/vowelr/\n",
  2538. " inflating: pv-espeak-commits-master/phsource/vowelr/V3_r \n",
  2539. " inflating: pv-espeak-commits-master/phsource/vowelr/V_r \n",
  2540. " inflating: pv-espeak-commits-master/phsource/vowelr/aa_r \n",
  2541. " inflating: pv-espeak-commits-master/phsource/vowelr/e_r \n",
  2542. " inflating: pv-espeak-commits-master/phsource/vowelr/i_r \n",
  2543. " inflating: pv-espeak-commits-master/phsource/vowelr/o_r \n",
  2544. " inflating: pv-espeak-commits-master/phsource/vowelr/oo_r \n",
  2545. " inflating: pv-espeak-commits-master/phsource/vowelr/r-voc \n",
  2546. " inflating: pv-espeak-commits-master/phsource/vowelr/r-voc1 \n",
  2547. " creating: pv-espeak-commits-master/phsource/vweak/\n",
  2548. " inflating: pv-espeak-commits-master/phsource/vweak/@ \n",
  2549. " inflating: pv-espeak-commits-master/phsource/vweak/a \n",
  2550. " creating: pv-espeak-commits-master/phsource/vwl_af/\n",
  2551. " inflating: pv-espeak-commits-master/phsource/vwl_af/@ \n",
  2552. " inflating: pv-espeak-commits-master/phsource/vwl_af/I \n",
  2553. " inflating: pv-espeak-commits-master/phsource/vwl_af/r@ \n",
  2554. " inflating: pv-espeak-commits-master/phsource/vwl_af/rx.wav \n",
  2555. " creating: pv-espeak-commits-master/phsource/vwl_ar/\n",
  2556. " inflating: pv-espeak-commits-master/phsource/vwl_ar/H2.wav \n",
  2557. " inflating: pv-espeak-commits-master/phsource/vwl_ar/SA1.wav \n",
  2558. " inflating: pv-espeak-commits-master/phsource/vwl_ar/ZH4.wav \n",
  2559. " inflating: pv-espeak-commits-master/phsource/vwl_ar/ain.wav \n",
  2560. " inflating: pv-espeak-commits-master/phsource/vwl_ar/ain2.wav \n",
  2561. " inflating: pv-espeak-commits-master/phsource/vwl_ar/da7.wav \n",
  2562. " inflating: pv-espeak-commits-master/phsource/vwl_ar/dhad.wav \n",
  2563. " inflating: pv-espeak-commits-master/phsource/vwl_ar/ghain6.wav \n",
  2564. " inflating: pv-espeak-commits-master/phsource/vwl_ar/hah.wav \n",
  2565. " inflating: pv-espeak-commits-master/phsource/vwl_ar/kha.wav \n",
  2566. " inflating: pv-espeak-commits-master/phsource/vwl_ar/shin.wav \n",
  2567. " inflating: pv-espeak-commits-master/phsource/vwl_ar/zah.wav \n",
  2568. " creating: pv-espeak-commits-master/phsource/vwl_de/\n",
  2569. " inflating: pv-espeak-commits-master/phsource/vwl_de/uu_@ \n",
  2570. " inflating: pv-espeak-commits-master/phsource/vwl_de/y# \n",
  2571. " creating: pv-espeak-commits-master/phsource/vwl_en/\n",
  2572. " inflating: pv-espeak-commits-master/phsource/vwl_en/@L \n",
  2573. " inflating: pv-espeak-commits-master/phsource/vwl_en/@L_2 \n",
  2574. " inflating: pv-espeak-commits-master/phsource/vwl_en/aI@ \n",
  2575. " inflating: pv-espeak-commits-master/phsource/vwl_en/aI@_2 \n",
  2576. " inflating: pv-espeak-commits-master/phsource/vwl_en/aU@ \n",
  2577. " inflating: pv-espeak-commits-master/phsource/vwl_en/ooi@ \n",
  2578. " inflating: pv-espeak-commits-master/phsource/vwl_en/u_L \n",
  2579. " creating: pv-espeak-commits-master/phsource/vwl_en_n/\n",
  2580. " inflating: pv-espeak-commits-master/phsource/vwl_en_n/O@ \n",
  2581. " inflating: pv-espeak-commits-master/phsource/vwl_en_n/aa_5 \n",
  2582. " creating: pv-espeak-commits-master/phsource/vwl_en_rp/\n",
  2583. " inflating: pv-espeak-commits-master/phsource/vwl_en_rp/aU@ \n",
  2584. " inflating: pv-espeak-commits-master/phsource/vwl_en_rp/aa \n",
  2585. " inflating: pv-espeak-commits-master/phsource/vwl_en_rp/i@ \n",
  2586. " creating: pv-espeak-commits-master/phsource/vwl_en_us/\n",
  2587. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/3_us \n",
  2588. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/3_us2 \n",
  2589. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/a \n",
  2590. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/aU@ \n",
  2591. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/aar \n",
  2592. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/ai \n",
  2593. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/ai3 \n",
  2594. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/ai@ \n",
  2595. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/ar \n",
  2596. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/ee \n",
  2597. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/er \n",
  2598. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/ir \n",
  2599. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/oor \n",
  2600. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/or \n",
  2601. " inflating: pv-espeak-commits-master/phsource/vwl_en_us/ur \n",
  2602. " creating: pv-espeak-commits-master/phsource/vwl_en_us_nyc/\n",
  2603. " inflating: pv-espeak-commits-master/phsource/vwl_en_us_nyc/0_3 \n",
  2604. " inflating: pv-espeak-commits-master/phsource/vwl_en_us_nyc/@i \n",
  2605. " inflating: pv-espeak-commits-master/phsource/vwl_en_us_nyc/a \n",
  2606. " inflating: pv-espeak-commits-master/phsource/vwl_en_us_nyc/a_raised \n",
  2607. " inflating: pv-espeak-commits-master/phsource/vwl_en_us_nyc/aa_8 \n",
  2608. " creating: pv-espeak-commits-master/phsource/vwl_es/\n",
  2609. " inflating: pv-espeak-commits-master/phsource/vwl_es/oo_ \n",
  2610. " inflating: pv-espeak-commits-master/phsource/vwl_es/ooi \n",
  2611. " inflating: pv-espeak-commits-master/phsource/vwl_es/ooi_ \n",
  2612. " creating: pv-espeak-commits-master/phsource/vwl_fr/\n",
  2613. " inflating: pv-espeak-commits-master/phsource/vwl_fr/@2r \n",
  2614. " inflating: pv-espeak-commits-master/phsource/vwl_fr/@R \n",
  2615. " inflating: pv-espeak-commits-master/phsource/vwl_fr/@R2 \n",
  2616. " inflating: pv-espeak-commits-master/phsource/vwl_fr/_r \n",
  2617. " inflating: pv-espeak-commits-master/phsource/vwl_fr/a2r \n",
  2618. " inflating: pv-espeak-commits-master/phsource/vwl_fr/aa2r \n",
  2619. " inflating: pv-espeak-commits-master/phsource/vwl_fr/br \n",
  2620. " inflating: pv-espeak-commits-master/phsource/vwl_fr/e2r \n",
  2621. " inflating: pv-espeak-commits-master/phsource/vwl_fr/e_2r \n",
  2622. " inflating: pv-espeak-commits-master/phsource/vwl_fr/ee2r \n",
  2623. " inflating: pv-espeak-commits-master/phsource/vwl_fr/i2r \n",
  2624. " inflating: pv-espeak-commits-master/phsource/vwl_fr/j \n",
  2625. " inflating: pv-espeak-commits-master/phsource/vwl_fr/lo \n",
  2626. " inflating: pv-espeak-commits-master/phsource/vwl_fr/o2r \n",
  2627. " inflating: pv-espeak-commits-master/phsource/vwl_fr/oo2r \n",
  2628. " inflating: pv-espeak-commits-master/phsource/vwl_fr/r \n",
  2629. " inflating: pv-espeak-commits-master/phsource/vwl_fr/r@ \n",
  2630. " inflating: pv-espeak-commits-master/phsource/vwl_fr/r@2 \n",
  2631. " inflating: pv-espeak-commits-master/phsource/vwl_fr/r_ \n",
  2632. " inflating: pv-espeak-commits-master/phsource/vwl_fr/r_@ \n",
  2633. " inflating: pv-espeak-commits-master/phsource/vwl_fr/r_a \n",
  2634. " inflating: pv-espeak-commits-master/phsource/vwl_fr/r_an \n",
  2635. " inflating: pv-espeak-commits-master/phsource/vwl_fr/r_e \n",
  2636. " inflating: pv-espeak-commits-master/phsource/vwl_fr/r_i \n",
  2637. " inflating: pv-espeak-commits-master/phsource/vwl_fr/r_n \n",
  2638. " inflating: pv-espeak-commits-master/phsource/vwl_fr/r_o \n",
  2639. " inflating: pv-espeak-commits-master/phsource/vwl_fr/r_u \n",
  2640. " inflating: pv-espeak-commits-master/phsource/vwl_fr/r_y \n",
  2641. " inflating: pv-espeak-commits-master/phsource/vwl_fr/ra \n",
  2642. " inflating: pv-espeak-commits-master/phsource/vwl_fr/raa \n",
  2643. " inflating: pv-espeak-commits-master/phsource/vwl_fr/re \n",
  2644. " inflating: pv-espeak-commits-master/phsource/vwl_fr/re2 \n",
  2645. " inflating: pv-espeak-commits-master/phsource/vwl_fr/ree \n",
  2646. " inflating: pv-espeak-commits-master/phsource/vwl_fr/ri \n",
  2647. " inflating: pv-espeak-commits-master/phsource/vwl_fr/rj \n",
  2648. " inflating: pv-espeak-commits-master/phsource/vwl_fr/ro \n",
  2649. " inflating: pv-espeak-commits-master/phsource/vwl_fr/roo \n",
  2650. " inflating: pv-espeak-commits-master/phsource/vwl_fr/rr \n",
  2651. " inflating: pv-espeak-commits-master/phsource/vwl_fr/ru \n",
  2652. " inflating: pv-espeak-commits-master/phsource/vwl_fr/rw \n",
  2653. " inflating: pv-espeak-commits-master/phsource/vwl_fr/ry \n",
  2654. " inflating: pv-espeak-commits-master/phsource/vwl_fr/tr \n",
  2655. " inflating: pv-espeak-commits-master/phsource/vwl_fr/trr \n",
  2656. " inflating: pv-espeak-commits-master/phsource/vwl_fr/u2r \n",
  2657. " inflating: pv-espeak-commits-master/phsource/vwl_fr/wa \n",
  2658. " inflating: pv-espeak-commits-master/phsource/vwl_fr/y2r \n",
  2659. " creating: pv-espeak-commits-master/phsource/vwl_hi/\n",
  2660. " inflating: pv-espeak-commits-master/phsource/vwl_hi/A \n",
  2661. " inflating: pv-espeak-commits-master/phsource/vwl_hi/I \n",
  2662. " inflating: pv-espeak-commits-master/phsource/vwl_hi/aa_9 \n",
  2663. " inflating: pv-espeak-commits-master/phsource/vwl_hi/l-voc \n",
  2664. " inflating: pv-espeak-commits-master/phsource/vwl_hi/r-voc \n",
  2665. " creating: pv-espeak-commits-master/phsource/vwl_it/\n",
  2666. " inflating: pv-espeak-commits-master/phsource/vwl_it/a \n",
  2667. " inflating: pv-espeak-commits-master/phsource/vwl_it/e_open \n",
  2668. " inflating: pv-espeak-commits-master/phsource/vwl_it/i \n",
  2669. " inflating: pv-espeak-commits-master/phsource/vwl_it/o \n",
  2670. " inflating: pv-espeak-commits-master/phsource/vwl_it/o_open \n",
  2671. " inflating: pv-espeak-commits-master/phsource/vwl_it/u \n",
  2672. " creating: pv-espeak-commits-master/phsource/vwl_lv/\n",
  2673. " inflating: pv-espeak-commits-master/phsource/vwl_lv/a \n",
  2674. " inflating: pv-espeak-commits-master/phsource/vwl_lv/aa \n",
  2675. " inflating: pv-espeak-commits-master/phsource/vwl_lv/ai \n",
  2676. " inflating: pv-espeak-commits-master/phsource/vwl_lv/au \n",
  2677. " inflating: pv-espeak-commits-master/phsource/vwl_lv/e \n",
  2678. " inflating: pv-espeak-commits-master/phsource/vwl_lv/e2 \n",
  2679. " inflating: pv-espeak-commits-master/phsource/vwl_lv/ee \n",
  2680. " inflating: pv-espeak-commits-master/phsource/vwl_lv/ee2 \n",
  2681. " inflating: pv-espeak-commits-master/phsource/vwl_lv/ei \n",
  2682. " inflating: pv-espeak-commits-master/phsource/vwl_lv/i \n",
  2683. " inflating: pv-espeak-commits-master/phsource/vwl_lv/ie \n",
  2684. " inflating: pv-espeak-commits-master/phsource/vwl_lv/ii \n",
  2685. " inflating: pv-espeak-commits-master/phsource/vwl_lv/iu \n",
  2686. " inflating: pv-espeak-commits-master/phsource/vwl_lv/o \n",
  2687. " inflating: pv-espeak-commits-master/phsource/vwl_lv/oi \n",
  2688. " inflating: pv-espeak-commits-master/phsource/vwl_lv/oo \n",
  2689. " inflating: pv-espeak-commits-master/phsource/vwl_lv/u \n",
  2690. " inflating: pv-espeak-commits-master/phsource/vwl_lv/ua \n",
  2691. " inflating: pv-espeak-commits-master/phsource/vwl_lv/ui \n",
  2692. " inflating: pv-espeak-commits-master/phsource/vwl_lv/uu \n",
  2693. " inflating: pv-espeak-commits-master/phsource/vwl_lv/y \n",
  2694. " inflating: pv-espeak-commits-master/phsource/vwl_lv/yy \n",
  2695. " creating: pv-espeak-commits-master/phsource/vwl_no/\n",
  2696. " inflating: pv-espeak-commits-master/phsource/vwl_no/& \n",
  2697. " inflating: pv-espeak-commits-master/phsource/vwl_no/@ \n",
  2698. " inflating: pv-espeak-commits-master/phsource/vwl_no/@2 \n",
  2699. " inflating: pv-espeak-commits-master/phsource/vwl_no/@_close \n",
  2700. " inflating: pv-espeak-commits-master/phsource/vwl_no/aU \n",
  2701. " inflating: pv-espeak-commits-master/phsource/vwl_no/au- \n",
  2702. " inflating: pv-espeak-commits-master/phsource/vwl_no/e \n",
  2703. " inflating: pv-espeak-commits-master/phsource/vwl_no/ee \n",
  2704. " inflating: pv-espeak-commits-master/phsource/vwl_no/i \n",
  2705. " inflating: pv-espeak-commits-master/phsource/vwl_no/ii \n",
  2706. " inflating: pv-espeak-commits-master/phsource/vwl_no/o \n",
  2707. " inflating: pv-espeak-commits-master/phsource/vwl_no/oo \n",
  2708. " inflating: pv-espeak-commits-master/phsource/vwl_no/u# \n",
  2709. " inflating: pv-espeak-commits-master/phsource/vwl_no/u#2 \n",
  2710. " inflating: pv-espeak-commits-master/phsource/vwl_no/y \n",
  2711. " inflating: pv-espeak-commits-master/phsource/vwl_no/y# \n",
  2712. " inflating: pv-espeak-commits-master/phsource/vwl_no/y#y \n",
  2713. " inflating: pv-espeak-commits-master/phsource/vwl_no/yy \n",
  2714. " creating: pv-espeak-commits-master/phsource/vwl_ro/\n",
  2715. " inflating: pv-espeak-commits-master/phsource/vwl_ro/ii- \n",
  2716. " inflating: pv-espeak-commits-master/phsource/vwl_ro/li \n",
  2717. " inflating: pv-espeak-commits-master/phsource/vwl_ro/mi \n",
  2718. " inflating: pv-espeak-commits-master/phsource/vwl_ro/ni \n",
  2719. " inflating: pv-espeak-commits-master/phsource/vwl_ro/ri \n",
  2720. " creating: pv-espeak-commits-master/phsource/vwl_ru/\n",
  2721. " inflating: pv-espeak-commits-master/phsource/vwl_ru/8 \n",
  2722. " inflating: pv-espeak-commits-master/phsource/vwl_ru/E# \n",
  2723. " inflating: pv-espeak-commits-master/phsource/vwl_ru/E@ \n",
  2724. " inflating: pv-espeak-commits-master/phsource/vwl_ru/a \n",
  2725. " inflating: pv-espeak-commits-master/phsource/vwl_ru/aa \n",
  2726. " inflating: pv-espeak-commits-master/phsource/vwl_ru/e \n",
  2727. " inflating: pv-espeak-commits-master/phsource/vwl_ru/ee \n",
  2728. " inflating: pv-espeak-commits-master/phsource/vwl_ru/i \n",
  2729. " inflating: pv-espeak-commits-master/phsource/vwl_ru/i# \n",
  2730. " inflating: pv-espeak-commits-master/phsource/vwl_ru/ii \n",
  2731. " inflating: pv-espeak-commits-master/phsource/vwl_ru/ii# \n",
  2732. " inflating: pv-espeak-commits-master/phsource/vwl_ru/ii- \n",
  2733. " inflating: pv-espeak-commits-master/phsource/vwl_ru/ja \n",
  2734. " inflating: pv-espeak-commits-master/phsource/vwl_ru/ju \n",
  2735. " inflating: pv-espeak-commits-master/phsource/vwl_ru/o \n",
  2736. " inflating: pv-espeak-commits-master/phsource/vwl_ru/oo \n",
  2737. " inflating: pv-espeak-commits-master/phsource/vwl_ru/u \n",
  2738. " inflating: pv-espeak-commits-master/phsource/vwl_ru/u# \n",
  2739. " inflating: pv-espeak-commits-master/phsource/vwl_ru/u#u \n",
  2740. " creating: pv-espeak-commits-master/phsource/vwl_sv/\n",
  2741. " inflating: pv-espeak-commits-master/phsource/vwl_sv/r.wav \n",
  2742. " inflating: pv-espeak-commits-master/phsource/vwl_sv/r_sv \n",
  2743. " inflating: pv-espeak-commits-master/phsource/vwl_sv/r_sv2 \n",
  2744. " inflating: pv-espeak-commits-master/phsource/vwl_sv/r_sv3 \n",
  2745. " creating: pv-espeak-commits-master/phsource/vwl_tn/\n",
  2746. " inflating: pv-espeak-commits-master/phsource/vwl_tn/@ \n",
  2747. " inflating: pv-espeak-commits-master/phsource/vwl_tn/I \n",
  2748. " inflating: pv-espeak-commits-master/phsource/vwl_tn/r@ \n",
  2749. " inflating: pv-espeak-commits-master/phsource/vwl_tn/rx.wav \n",
  2750. " creating: pv-espeak-commits-master/phsource/vwl_zh/\n",
  2751. " inflating: pv-espeak-commits-master/phsource/vwl_zh/a_n \n",
  2752. " inflating: pv-espeak-commits-master/phsource/vwl_zh/aang \n",
  2753. " inflating: pv-espeak-commits-master/phsource/vwl_zh/aau \n",
  2754. " inflating: pv-espeak-commits-master/phsource/vwl_zh/ang \n",
  2755. " inflating: pv-espeak-commits-master/phsource/vwl_zh/eng \n",
  2756. " inflating: pv-espeak-commits-master/phsource/vwl_zh/iaa \n",
  2757. " inflating: pv-espeak-commits-master/phsource/vwl_zh/iaau \n",
  2758. " inflating: pv-espeak-commits-master/phsource/vwl_zh/ie \n",
  2759. " inflating: pv-espeak-commits-master/phsource/vwl_zh/ing \n",
  2760. " inflating: pv-espeak-commits-master/phsource/vwl_zh/iou \n",
  2761. " inflating: pv-espeak-commits-master/phsource/vwl_zh/ng \n",
  2762. " inflating: pv-espeak-commits-master/phsource/vwl_zh/oeng \n",
  2763. " inflating: pv-espeak-commits-master/phsource/vwl_zh/ong \n",
  2764. " inflating: pv-espeak-commits-master/phsource/vwl_zh/uaa \n",
  2765. " inflating: pv-espeak-commits-master/phsource/vwl_zh/uai \n",
  2766. " inflating: pv-espeak-commits-master/phsource/vwl_zh/uei \n",
  2767. " inflating: pv-espeak-commits-master/phsource/vwl_zh/ung \n",
  2768. " inflating: pv-espeak-commits-master/phsource/vwl_zh/uo \n",
  2769. " inflating: pv-espeak-commits-master/phsource/vwl_zh/y& \n",
  2770. " inflating: pv-espeak-commits-master/phsource/vwl_zh/yee \n",
  2771. " creating: pv-espeak-commits-master/phsource/w/\n",
  2772. " inflating: pv-espeak-commits-master/phsource/w/_w \n",
  2773. " inflating: pv-espeak-commits-master/phsource/w/iw_ \n",
  2774. " inflating: pv-espeak-commits-master/phsource/w/w \n",
  2775. " inflating: pv-espeak-commits-master/phsource/w/w2 \n",
  2776. " inflating: pv-espeak-commits-master/phsource/w/w@ \n",
  2777. " inflating: pv-espeak-commits-master/phsource/w/w_ \n",
  2778. " inflating: pv-espeak-commits-master/phsource/w/wa \n",
  2779. " inflating: pv-espeak-commits-master/phsource/w/we \n",
  2780. " inflating: pv-espeak-commits-master/phsource/w/wi \n",
  2781. " inflating: pv-espeak-commits-master/phsource/w/wi2 \n",
  2782. " inflating: pv-espeak-commits-master/phsource/w/wo \n",
  2783. " inflating: pv-espeak-commits-master/phsource/w/wu \n",
  2784. " inflating: pv-espeak-commits-master/phsource/w/xw \n",
  2785. " creating: pv-espeak-commits-master/phsource/x/\n",
  2786. " inflating: pv-espeak-commits-master/phsource/x/b.wav \n",
  2787. " inflating: pv-espeak-commits-master/phsource/x/b_.wav \n",
  2788. " inflating: pv-espeak-commits-master/phsource/x/d.wav \n",
  2789. " inflating: pv-espeak-commits-master/phsource/x/d_.wav \n",
  2790. " inflating: pv-espeak-commits-master/phsource/x/d_dnt.wav \n",
  2791. " inflating: pv-espeak-commits-master/phsource/x/d_pzd.wav \n",
  2792. " inflating: pv-espeak-commits-master/phsource/x/dz_pzd.wav \n",
  2793. " inflating: pv-espeak-commits-master/phsource/x/dz_pzd2.wav \n",
  2794. " inflating: pv-espeak-commits-master/phsource/x/dz_pzd_.wav \n",
  2795. " inflating: pv-espeak-commits-master/phsource/x/dzh.wav \n",
  2796. " inflating: pv-espeak-commits-master/phsource/x/dzh_.wav \n",
  2797. " inflating: pv-espeak-commits-master/phsource/x/g.wav \n",
  2798. " inflating: pv-espeak-commits-master/phsource/x/g2.wav \n",
  2799. " inflating: pv-espeak-commits-master/phsource/x/g2_.wav \n",
  2800. " inflating: pv-espeak-commits-master/phsource/x/g3.wav \n",
  2801. " inflating: pv-espeak-commits-master/phsource/x/g_.wav \n",
  2802. " creating: pv-espeak-commits-master/src/\n",
  2803. " inflating: pv-espeak-commits-master/src/CMakeLists.txt \n",
  2804. " creating: pv-espeak-commits-master/src/compat/\n",
  2805. " inflating: pv-espeak-commits-master/src/compat/getopt.c \n",
  2806. " inflating: pv-espeak-commits-master/src/espeak-ng.1.ronn \n",
  2807. " inflating: pv-espeak-commits-master/src/espeak-ng.c \n",
  2808. " creating: pv-espeak-commits-master/src/include/\n",
  2809. " creating: pv-espeak-commits-master/src/include/compat/\n",
  2810. " inflating: pv-espeak-commits-master/src/include/compat/endian.h \n",
  2811. " inflating: pv-espeak-commits-master/src/include/compat/getopt.h \n",
  2812. " inflating: pv-espeak-commits-master/src/include/compat/math.h \n",
  2813. " inflating: pv-espeak-commits-master/src/include/compat/stdint.h \n",
  2814. " inflating: pv-espeak-commits-master/src/include/compat/stdio.h \n",
  2815. " inflating: pv-espeak-commits-master/src/include/compat/string.h \n",
  2816. " inflating: pv-espeak-commits-master/src/include/compat/strings.h \n",
  2817. " creating: pv-espeak-commits-master/src/include/compat/sys/\n",
  2818. " inflating: pv-espeak-commits-master/src/include/compat/sys/stat.h \n",
  2819. " inflating: pv-espeak-commits-master/src/include/compat/unistd.h \n",
  2820. " inflating: pv-espeak-commits-master/src/include/compat/wchar.h \n",
  2821. " inflating: pv-espeak-commits-master/src/include/compat/wctype.h \n",
  2822. " creating: pv-espeak-commits-master/src/include/espeak-ng/\n",
  2823. " inflating: pv-espeak-commits-master/src/include/espeak-ng/encoding.h \n",
  2824. " inflating: pv-espeak-commits-master/src/include/espeak-ng/espeak_ng.h \n",
  2825. " inflating: pv-espeak-commits-master/src/include/espeak-ng/speak_lib.h \n",
  2826. " creating: pv-espeak-commits-master/src/include/espeak/\n",
  2827. " linking: pv-espeak-commits-master/src/include/espeak/speak_lib.h -> ../espeak-ng/speak_lib.h \n",
  2828. " creating: pv-espeak-commits-master/src/libespeak-ng/\n",
  2829. " inflating: pv-espeak-commits-master/src/libespeak-ng/CMakeLists.txt \n",
  2830. " inflating: pv-espeak-commits-master/src/libespeak-ng/common.c \n",
  2831. " inflating: pv-espeak-commits-master/src/libespeak-ng/common.h \n",
  2832. " inflating: pv-espeak-commits-master/src/libespeak-ng/compiledata.c \n",
  2833. " inflating: pv-espeak-commits-master/src/libespeak-ng/compiledict.c \n",
  2834. " inflating: pv-espeak-commits-master/src/libespeak-ng/compiledict.h \n",
  2835. " inflating: pv-espeak-commits-master/src/libespeak-ng/compilembrola.c \n",
  2836. " inflating: pv-espeak-commits-master/src/libespeak-ng/config.h.in \n",
  2837. " inflating: pv-espeak-commits-master/src/libespeak-ng/dictionary.c \n",
  2838. " inflating: pv-espeak-commits-master/src/libespeak-ng/dictionary.h \n",
  2839. " inflating: pv-espeak-commits-master/src/libespeak-ng/encoding.c \n",
  2840. " inflating: pv-espeak-commits-master/src/libespeak-ng/error.c \n",
  2841. " inflating: pv-espeak-commits-master/src/libespeak-ng/error.h \n",
  2842. " inflating: pv-espeak-commits-master/src/libespeak-ng/espeak_api.c \n",
  2843. " inflating: pv-espeak-commits-master/src/libespeak-ng/espeak_command.c \n",
  2844. " inflating: pv-espeak-commits-master/src/libespeak-ng/espeak_command.h \n",
  2845. " inflating: pv-espeak-commits-master/src/libespeak-ng/event.c \n",
  2846. " inflating: pv-espeak-commits-master/src/libespeak-ng/event.h \n",
  2847. " inflating: pv-espeak-commits-master/src/libespeak-ng/fifo.c \n",
  2848. " inflating: pv-espeak-commits-master/src/libespeak-ng/fifo.h \n",
  2849. " inflating: pv-espeak-commits-master/src/libespeak-ng/ieee80.c \n",
  2850. " inflating: pv-espeak-commits-master/src/libespeak-ng/ieee80.h \n",
  2851. " inflating: pv-espeak-commits-master/src/libespeak-ng/intonation.c \n",
  2852. " inflating: pv-espeak-commits-master/src/libespeak-ng/intonation.h \n",
  2853. " inflating: pv-espeak-commits-master/src/libespeak-ng/klatt.c \n",
  2854. " inflating: pv-espeak-commits-master/src/libespeak-ng/klatt.h \n",
  2855. " inflating: pv-espeak-commits-master/src/libespeak-ng/langopts.c \n",
  2856. " inflating: pv-espeak-commits-master/src/libespeak-ng/langopts.h \n",
  2857. " inflating: pv-espeak-commits-master/src/libespeak-ng/mbrola.h \n",
  2858. " inflating: pv-espeak-commits-master/src/libespeak-ng/mbrowrap.c \n",
  2859. " inflating: pv-espeak-commits-master/src/libespeak-ng/mbrowrap.h \n",
  2860. " inflating: pv-espeak-commits-master/src/libespeak-ng/mnemonics.c \n",
  2861. " inflating: pv-espeak-commits-master/src/libespeak-ng/mnemonics.h \n",
  2862. " inflating: pv-espeak-commits-master/src/libespeak-ng/numbers.c \n",
  2863. " inflating: pv-espeak-commits-master/src/libespeak-ng/numbers.h \n",
  2864. " inflating: pv-espeak-commits-master/src/libespeak-ng/phoneme.c \n",
  2865. " inflating: pv-espeak-commits-master/src/libespeak-ng/phoneme.h \n",
  2866. " inflating: pv-espeak-commits-master/src/libespeak-ng/phonemelist.c \n",
  2867. " inflating: pv-espeak-commits-master/src/libespeak-ng/phonemelist.h \n",
  2868. " inflating: pv-espeak-commits-master/src/libespeak-ng/readclause.c \n",
  2869. " inflating: pv-espeak-commits-master/src/libespeak-ng/readclause.h \n",
  2870. " inflating: pv-espeak-commits-master/src/libespeak-ng/sPlayer.c \n",
  2871. " inflating: pv-espeak-commits-master/src/libespeak-ng/sPlayer.h \n",
  2872. " inflating: pv-espeak-commits-master/src/libespeak-ng/setlengths.c \n",
  2873. " inflating: pv-espeak-commits-master/src/libespeak-ng/setlengths.h \n",
  2874. " inflating: pv-espeak-commits-master/src/libespeak-ng/sintab.h \n",
  2875. " inflating: pv-espeak-commits-master/src/libespeak-ng/soundicon.c \n",
  2876. " inflating: pv-espeak-commits-master/src/libespeak-ng/soundicon.h \n",
  2877. " inflating: pv-espeak-commits-master/src/libespeak-ng/spect.c \n",
  2878. " inflating: pv-espeak-commits-master/src/libespeak-ng/spect.h \n",
  2879. " inflating: pv-espeak-commits-master/src/libespeak-ng/speech.c \n",
  2880. " inflating: pv-espeak-commits-master/src/libespeak-ng/speech.h \n",
  2881. " inflating: pv-espeak-commits-master/src/libespeak-ng/ssml.c \n",
  2882. " inflating: pv-espeak-commits-master/src/libespeak-ng/ssml.h \n",
  2883. " inflating: pv-espeak-commits-master/src/libespeak-ng/synth_mbrola.c \n",
  2884. " inflating: pv-espeak-commits-master/src/libespeak-ng/synthdata.c \n",
  2885. " inflating: pv-espeak-commits-master/src/libespeak-ng/synthdata.h \n",
  2886. " inflating: pv-espeak-commits-master/src/libespeak-ng/synthesize.c \n",
  2887. " inflating: pv-espeak-commits-master/src/libespeak-ng/synthesize.h \n",
  2888. " inflating: pv-espeak-commits-master/src/libespeak-ng/tr_languages.c \n",
  2889. " inflating: pv-espeak-commits-master/src/libespeak-ng/translate.c \n",
  2890. " inflating: pv-espeak-commits-master/src/libespeak-ng/translate.h \n",
  2891. " inflating: pv-espeak-commits-master/src/libespeak-ng/translateword.c \n",
  2892. " inflating: pv-espeak-commits-master/src/libespeak-ng/translateword.h \n",
  2893. " inflating: pv-espeak-commits-master/src/libespeak-ng/voice.h \n",
  2894. " inflating: pv-espeak-commits-master/src/libespeak-ng/voices.c \n",
  2895. " inflating: pv-espeak-commits-master/src/libespeak-ng/wavegen.c \n",
  2896. " inflating: pv-espeak-commits-master/src/libespeak-ng/wavegen.h \n",
  2897. " inflating: pv-espeak-commits-master/src/speak-ng.1.ronn \n",
  2898. " inflating: pv-espeak-commits-master/src/speak-ng.c \n",
  2899. " extracting: pv-espeak-commits-master/src/speak-ng.cpp \n",
  2900. " creating: pv-espeak-commits-master/src/speechPlayer/\n",
  2901. " inflating: pv-espeak-commits-master/src/speechPlayer/CMakeLists.txt \n",
  2902. " creating: pv-espeak-commits-master/src/speechPlayer/include/\n",
  2903. " inflating: pv-espeak-commits-master/src/speechPlayer/include/speechPlayer.h \n",
  2904. " creating: pv-espeak-commits-master/src/speechPlayer/src/\n",
  2905. " inflating: pv-espeak-commits-master/src/speechPlayer/src/frame.cpp \n",
  2906. " inflating: pv-espeak-commits-master/src/speechPlayer/src/frame.h \n",
  2907. " inflating: pv-espeak-commits-master/src/speechPlayer/src/sample.h \n",
  2908. " inflating: pv-espeak-commits-master/src/speechPlayer/src/speechPlayer.cpp \n",
  2909. " inflating: pv-espeak-commits-master/src/speechPlayer/src/speechPlayer.h \n",
  2910. " inflating: pv-espeak-commits-master/src/speechPlayer/src/speechWaveGenerator.cpp \n",
  2911. " inflating: pv-espeak-commits-master/src/speechPlayer/src/speechWaveGenerator.h \n",
  2912. " inflating: pv-espeak-commits-master/src/speechPlayer/src/utils.h \n",
  2913. " inflating: pv-espeak-commits-master/src/speechPlayer/src/waveGenerator.h \n",
  2914. " creating: pv-espeak-commits-master/src/ucd-tools/\n",
  2915. " inflating: pv-espeak-commits-master/src/ucd-tools/.gitignore \n",
  2916. " extracting: pv-espeak-commits-master/src/ucd-tools/AUTHORS \n",
  2917. " inflating: pv-espeak-commits-master/src/ucd-tools/CHANGELOG.md \n",
  2918. " inflating: pv-espeak-commits-master/src/ucd-tools/CMakeLists.txt \n",
  2919. " inflating: pv-espeak-commits-master/src/ucd-tools/COPYING \n",
  2920. " inflating: pv-espeak-commits-master/src/ucd-tools/COPYING.UCD \n",
  2921. " inflating: pv-espeak-commits-master/src/ucd-tools/Makefile.am \n",
  2922. " inflating: pv-espeak-commits-master/src/ucd-tools/README.md \n",
  2923. " creating: pv-espeak-commits-master/src/ucd-tools/_layouts/\n",
  2924. " inflating: pv-espeak-commits-master/src/ucd-tools/_layouts/webpage.html \n",
  2925. " inflating: pv-espeak-commits-master/src/ucd-tools/autogen.sh \n",
  2926. " inflating: pv-espeak-commits-master/src/ucd-tools/configure.ac \n",
  2927. " creating: pv-espeak-commits-master/src/ucd-tools/data/\n",
  2928. " creating: pv-espeak-commits-master/src/ucd-tools/data/csur/\n",
  2929. " inflating: pv-espeak-commits-master/src/ucd-tools/data/csur/Klingon.txt \n",
  2930. " creating: pv-espeak-commits-master/src/ucd-tools/data/espeak-ng/\n",
  2931. " inflating: pv-espeak-commits-master/src/ucd-tools/data/espeak-ng/PropList.txt \n",
  2932. " inflating: pv-espeak-commits-master/src/ucd-tools/data/espeak-ng/emoji-data.txt \n",
  2933. " creating: pv-espeak-commits-master/src/ucd-tools/docs/\n",
  2934. " inflating: pv-espeak-commits-master/src/ucd-tools/docs/ucd-tools.conf \n",
  2935. " creating: pv-espeak-commits-master/src/ucd-tools/m4/\n",
  2936. " inflating: pv-espeak-commits-master/src/ucd-tools/m4/ax_check_compile_flag.m4 \n",
  2937. " creating: pv-espeak-commits-master/src/ucd-tools/src/\n",
  2938. " inflating: pv-espeak-commits-master/src/ucd-tools/src/case.c \n",
  2939. " inflating: pv-espeak-commits-master/src/ucd-tools/src/categories.c \n",
  2940. " inflating: pv-espeak-commits-master/src/ucd-tools/src/ctype.c \n",
  2941. " creating: pv-espeak-commits-master/src/ucd-tools/src/include/\n",
  2942. " creating: pv-espeak-commits-master/src/ucd-tools/src/include/ucd/\n",
  2943. " inflating: pv-espeak-commits-master/src/ucd-tools/src/include/ucd/ucd.h \n",
  2944. " inflating: pv-espeak-commits-master/src/ucd-tools/src/proplist.c \n",
  2945. " inflating: pv-espeak-commits-master/src/ucd-tools/src/scripts.c \n",
  2946. " inflating: pv-espeak-commits-master/src/ucd-tools/src/tostring.c \n",
  2947. " creating: pv-espeak-commits-master/src/ucd-tools/tests/\n",
  2948. " inflating: pv-espeak-commits-master/src/ucd-tools/tests/printcdata.c \n",
  2949. " inflating: pv-espeak-commits-master/src/ucd-tools/tests/printucddata.c \n",
  2950. " inflating: pv-espeak-commits-master/src/ucd-tools/tests/printucddata_cpp.cpp \n",
  2951. " creating: pv-espeak-commits-master/src/ucd-tools/tools/\n",
  2952. " inflating: pv-espeak-commits-master/src/ucd-tools/tools/case.py \n",
  2953. " inflating: pv-espeak-commits-master/src/ucd-tools/tools/categories.py \n",
  2954. " inflating: pv-espeak-commits-master/src/ucd-tools/tools/mkencodingtable \n",
  2955. " inflating: pv-espeak-commits-master/src/ucd-tools/tools/printdata.py \n",
  2956. " inflating: pv-espeak-commits-master/src/ucd-tools/tools/scripts.py \n",
  2957. " inflating: pv-espeak-commits-master/src/ucd-tools/tools/ucd.py \n",
  2958. " creating: pv-espeak-commits-master/src/windows/\n",
  2959. " creating: pv-espeak-commits-master/src/windows/Debug/\n",
  2960. " inflating: pv-espeak-commits-master/src/windows/Debug/[email protected] \n",
  2961. " inflating: pv-espeak-commits-master/src/windows/Debug/output_e.wav \n",
  2962. " inflating: pv-espeak-commits-master/src/windows/Debug/output_i.wav \n",
  2963. " creating: pv-espeak-commits-master/src/windows/com/\n",
  2964. " inflating: pv-espeak-commits-master/src/windows/com/comentrypoints.c \n",
  2965. " inflating: pv-espeak-commits-master/src/windows/com/ttsengine.cpp \n",
  2966. " inflating: pv-espeak-commits-master/src/windows/config.h \n",
  2967. " inflating: pv-espeak-commits-master/src/windows/data.vcxproj \n",
  2968. " inflating: pv-espeak-commits-master/src/windows/data.vcxproj.filters \n",
  2969. " inflating: pv-espeak-commits-master/src/windows/espeak-ng.sln \n",
  2970. " inflating: pv-espeak-commits-master/src/windows/espeak-ng.vcxproj \n",
  2971. " inflating: pv-espeak-commits-master/src/windows/espeak-ng.vcxproj.filters \n",
  2972. " creating: pv-espeak-commits-master/src/windows/installer/\n",
  2973. " inflating: pv-espeak-commits-master/src/windows/installer/License_GPLv3.rtf \n",
  2974. " inflating: pv-espeak-commits-master/src/windows/installer/Product.wxs \n",
  2975. " inflating: pv-espeak-commits-master/src/windows/installer/installer.wixproj \n",
  2976. " inflating: pv-espeak-commits-master/src/windows/libespeak-ng.def \n",
  2977. " inflating: pv-espeak-commits-master/src/windows/libespeak-ng.vcxproj \n",
  2978. " inflating: pv-espeak-commits-master/src/windows/libespeak-ng.vcxproj.filters \n",
  2979. " creating: pv-espeak-commits-master/tests/\n",
  2980. " inflating: pv-espeak-commits-master/tests/CMakeLists.txt \n",
  2981. " inflating: pv-espeak-commits-master/tests/api.c \n",
  2982. " inflating: pv-espeak-commits-master/tests/bom.test \n",
  2983. " inflating: pv-espeak-commits-master/tests/cmd_options.test \n",
  2984. " inflating: pv-espeak-commits-master/tests/common \n",
  2985. " inflating: pv-espeak-commits-master/tests/crash.test \n",
  2986. " creating: pv-espeak-commits-master/tests/crash_vectors/\n",
  2987. " inflating: pv-espeak-commits-master/tests/crash_vectors/cve-2023-49990.txt \n",
  2988. " inflating: pv-espeak-commits-master/tests/crash_vectors/cve-2023-49991.txt \n",
  2989. " inflating: pv-espeak-commits-master/tests/crash_vectors/cve-2023-49992.txt \n",
  2990. " inflating: pv-espeak-commits-master/tests/crash_vectors/cve-2023-49993.txt \n",
  2991. " extracting: pv-espeak-commits-master/tests/crash_vectors/cve-2023-49994.txt \n",
  2992. " inflating: pv-espeak-commits-master/tests/dictionary.test \n",
  2993. " extracting: pv-espeak-commits-master/tests/dummy.cpp \n",
  2994. " inflating: pv-espeak-commits-master/tests/encoding.c \n",
  2995. " creating: pv-espeak-commits-master/tests/fuzzing/\n",
  2996. " inflating: pv-espeak-commits-master/tests/fuzzing/README.md \n",
  2997. " inflating: pv-espeak-commits-master/tests/fuzzing/create_dict_corpus_file.py \n",
  2998. " inflating: pv-espeak-commits-master/tests/fuzzing/minimize-corpus.sh \n",
  2999. " inflating: pv-espeak-commits-master/tests/fuzzing/synth_fuzzer.c \n",
  3000. " inflating: pv-espeak-commits-master/tests/fuzzrunner.c \n",
  3001. " inflating: pv-espeak-commits-master/tests/ieee80.c \n",
  3002. " inflating: pv-espeak-commits-master/tests/klatt.test \n",
  3003. " inflating: pv-espeak-commits-master/tests/language-numbers-cardinal.test \n",
  3004. " inflating: pv-espeak-commits-master/tests/language-numbers-ordinal.test \n",
  3005. " inflating: pv-espeak-commits-master/tests/language-phonemes.test \n",
  3006. " inflating: pv-espeak-commits-master/tests/language-pronunciation.test \n",
  3007. " inflating: pv-espeak-commits-master/tests/language-replace.test \n",
  3008. " inflating: pv-espeak-commits-master/tests/mbrola.test \n",
  3009. " inflating: pv-espeak-commits-master/tests/non-executable-files-with-executable-bit.test \n",
  3010. " inflating: pv-espeak-commits-master/tests/readclause.c \n",
  3011. " inflating: pv-espeak-commits-master/tests/ssml-fuzzer.c \n",
  3012. " creating: pv-espeak-commits-master/tests/ssml-fuzzer/\n",
  3013. " inflating: pv-espeak-commits-master/tests/ssml-fuzzer/100e74d96310ff38a0747812810a713d21dab708.ssml \n",
  3014. " inflating: pv-espeak-commits-master/tests/ssml-fuzzer/ca53d4601ced9346305e5b66b1e3d2012395ab25.ssml \n",
  3015. " extracting: pv-espeak-commits-master/tests/ssml-fuzzer/cf29484e6a29123590ba3400bb1d4d834e2f3d03.ssml \n",
  3016. " inflating: pv-espeak-commits-master/tests/ssml.test \n",
  3017. " creating: pv-espeak-commits-master/tests/ssml/\n",
  3018. " inflating: pv-espeak-commits-master/tests/ssml/badly-escaped1.expected \n",
  3019. " extracting: pv-espeak-commits-master/tests/ssml/badly-escaped1.ssml \n",
  3020. " extracting: pv-espeak-commits-master/tests/ssml/badly-escaped2.expected \n",
  3021. " extracting: pv-espeak-commits-master/tests/ssml/badly-escaped2.ssml \n",
  3022. " inflating: pv-espeak-commits-master/tests/ssml/billion-laughs.expected \n",
  3023. " inflating: pv-espeak-commits-master/tests/ssml/billion-laughs.ssml \n",
  3024. " extracting: pv-espeak-commits-master/tests/ssml/external-entity.expected \n",
  3025. " inflating: pv-espeak-commits-master/tests/ssml/external-entity.ssml \n",
  3026. " inflating: pv-espeak-commits-master/tests/ssml/language-switch.expected \n",
  3027. " inflating: pv-espeak-commits-master/tests/ssml/language-switch.ssml \n",
  3028. " extracting: pv-espeak-commits-master/tests/ssml/malformed-tag1.expected \n",
  3029. " extracting: pv-espeak-commits-master/tests/ssml/malformed-tag1.ssml \n",
  3030. " inflating: pv-espeak-commits-master/tests/ssml/references.expected \n",
  3031. " inflating: pv-espeak-commits-master/tests/ssml/references.ssml2 \n",
  3032. " inflating: pv-espeak-commits-master/tests/ssml/spec-example-1.expected \n",
  3033. " inflating: pv-espeak-commits-master/tests/ssml/spec-example-1.ssml \n",
  3034. " inflating: pv-espeak-commits-master/tests/test_assert.h \n",
  3035. " inflating: pv-espeak-commits-master/tests/translate.test \n",
  3036. " inflating: pv-espeak-commits-master/tests/variants.test \n",
  3037. " inflating: pv-espeak-commits-master/tests/voices.test \n",
  3038. " inflating: pv-espeak-commits-master/tests/windows-data.test \n",
  3039. " inflating: pv-espeak-commits-master/tests/windows-installer.test \n",
  3040. " creating: pv-espeak-commits-master/tools/\n",
  3041. " inflating: pv-espeak-commits-master/tools/emoji \n",
  3042. " creating: pv-espeak-commits-master/vim/\n",
  3043. " creating: pv-espeak-commits-master/vim/ftdetect/\n",
  3044. " inflating: pv-espeak-commits-master/vim/ftdetect/espeakfiletype.vim \n",
  3045. " creating: pv-espeak-commits-master/vim/registry/\n",
  3046. " inflating: pv-espeak-commits-master/vim/registry/espeak.yaml \n",
  3047. " creating: pv-espeak-commits-master/vim/syntax/\n",
  3048. " inflating: pv-espeak-commits-master/vim/syntax/espeaklist.vim \n",
  3049. " inflating: pv-espeak-commits-master/vim/syntax/espeakrules.vim \n",
  3050. "finishing deferred symbolic links:\n",
  3051. " pv-espeak-commits-master/src/include/espeak/speak_lib.h -> ../espeak-ng/speak_lib.h\n"
  3052. ]
  3053. }
  3054. ]
  3055. },
  3056. {
  3057. "cell_type": "code",
  3058. "source": [
  3059. "mv pv-espeak-commits-master espeak-ng"
  3060. ],
  3061. "metadata": {
  3062. "id": "VT7zc5Uo4IC1"
  3063. },
  3064. "execution_count": null,
  3065. "outputs": []
  3066. },
  3067. {
  3068. "cell_type": "code",
  3069. "source": [
  3070. "!sudo apt-get install make autoconf automake libtool pkg-config\n",
  3071. "!sudo apt-get install gcc g++\n",
  3072. "!sudo apt-get install libsonic-dev\n",
  3073. "!sudo apt-get install ronn\n",
  3074. "!sudo apt-get install kramdown\n",
  3075. "!sudo apt-get install libpcaudio-dev"
  3076. ],
  3077. "metadata": {
  3078. "id": "3zVTEd7rBawg",
  3079. "colab": {
  3080. "base_uri": "https://localhost:8080/"
  3081. },
  3082. "outputId": "8e9c1716-98a0-4a0b-93f5-549ac3efae33"
  3083. },
  3084. "execution_count": null,
  3085. "outputs": [
  3086. {
  3087. "output_type": "stream",
  3088. "name": "stdout",
  3089. "text": [
  3090. "Reading package lists... Done\n",
  3091. "Building dependency tree... Done\n",
  3092. "Reading state information... Done\n",
  3093. "autoconf is already the newest version (2.71-2).\n",
  3094. "autoconf set to manually installed.\n",
  3095. "automake is already the newest version (1:1.16.5-1.3).\n",
  3096. "automake set to manually installed.\n",
  3097. "make is already the newest version (4.3-4.1build1).\n",
  3098. "make set to manually installed.\n",
  3099. "The following packages were automatically installed and are no longer required:\n",
  3100. " libbz2-dev libpkgconf3 libreadline-dev\n",
  3101. "Use 'sudo apt autoremove' to remove them.\n",
  3102. "Suggested packages:\n",
  3103. " libtool-doc gcj-jdk\n",
  3104. "The following packages will be REMOVED:\n",
  3105. " pkgconf r-base-dev\n",
  3106. "The following NEW packages will be installed:\n",
  3107. " libtool pkg-config\n",
  3108. "0 upgraded, 2 newly installed, 2 to remove and 34 not upgraded.\n",
  3109. "Need to get 212 kB of archives.\n",
  3110. "After this operation, 1,217 kB of additional disk space will be used.\n",
  3111. "Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB]\n",
  3112. "Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtool all 2.4.6-15build2 [164 kB]\n",
  3113. "Fetched 212 kB in 1s (272 kB/s)\n",
  3114. "debconf: unable to initialize frontend: Dialog\n",
  3115. "debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 78, <> line 2.)\n",
  3116. "debconf: falling back to frontend: Readline\n",
  3117. "debconf: unable to initialize frontend: Readline\n",
  3118. "debconf: (This frontend requires a controlling tty.)\n",
  3119. "debconf: falling back to frontend: Teletype\n",
  3120. "dpkg-preconfigure: unable to re-open stdin: \n",
  3121. "(Reading database ... 126102 files and directories currently installed.)\n",
  3122. "Removing r-base-dev (4.5.0-3.2204.0) ...\n",
  3123. "dpkg: pkgconf: dependency problems, but removing anyway as you requested:\n",
  3124. " libsndfile1-dev:amd64 depends on pkg-config; however:\n",
  3125. " Package pkg-config is not installed.\n",
  3126. " Package pkgconf which provides pkg-config is to be removed.\n",
  3127. " libopencv-dev depends on pkg-config; however:\n",
  3128. " Package pkg-config is not installed.\n",
  3129. " Package pkgconf which provides pkg-config is to be removed.\n",
  3130. " libmkl-dev:amd64 depends on pkg-config; however:\n",
  3131. " Package pkg-config is not installed.\n",
  3132. " Package pkgconf which provides pkg-config is to be removed.\n",
  3133. " libjack-dev depends on pkg-config; however:\n",
  3134. " Package pkg-config is not installed.\n",
  3135. " Package pkgconf which provides pkg-config is to be removed.\n",
  3136. " libgphoto2-dev:amd64 depends on pkg-config; however:\n",
  3137. " Package pkg-config is not installed.\n",
  3138. " Package pkgconf which provides pkg-config is to be removed.\n",
  3139. " libglib2.0-dev:amd64 depends on pkg-config; however:\n",
  3140. " Package pkg-config is not installed.\n",
  3141. " Package pkgconf which provides pkg-config is to be removed.\n",
  3142. " libfontconfig-dev:amd64 depends on pkg-config; however:\n",
  3143. " Package pkg-config is not installed.\n",
  3144. " Package pkgconf which provides pkg-config is to be removed.\n",
  3145. "\n",
  3146. "Removing pkgconf (1.8.0-1) ...\n",
  3147. "Removing 'diversion of /usr/bin/pkg-config to /usr/bin/pkg-config.real by pkgconf'\n",
  3148. "Removing 'diversion of /usr/share/aclocal/pkg.m4 to /usr/share/aclocal/pkg.real.m4 by pkgconf'\n",
  3149. "Removing 'diversion of /usr/share/man/man1/pkg-config.1.gz to /usr/share/man/man1/pkg-config.real.1.gz by pkgconf'\n",
  3150. "Removing 'diversion of /usr/share/pkg-config-crosswrapper to /usr/share/pkg-config-crosswrapper.real by pkgconf'\n",
  3151. "Selecting previously unselected package pkg-config.\n",
  3152. "(Reading database ... 126078 files and directories currently installed.)\n",
  3153. "Preparing to unpack .../pkg-config_0.29.2-1ubuntu3_amd64.deb ...\n",
  3154. "Unpacking pkg-config (0.29.2-1ubuntu3) ...\n",
  3155. "Selecting previously unselected package libtool.\n",
  3156. "Preparing to unpack .../libtool_2.4.6-15build2_all.deb ...\n",
  3157. "Unpacking libtool (2.4.6-15build2) ...\n",
  3158. "Setting up libtool (2.4.6-15build2) ...\n",
  3159. "Setting up pkg-config (0.29.2-1ubuntu3) ...\n",
  3160. "Processing triggers for man-db (2.10.2-1) ...\n",
  3161. "Reading package lists... Done\n",
  3162. "Building dependency tree... Done\n",
  3163. "Reading state information... Done\n",
  3164. "g++ is already the newest version (4:11.2.0-1ubuntu1).\n",
  3165. "g++ set to manually installed.\n",
  3166. "gcc is already the newest version (4:11.2.0-1ubuntu1).\n",
  3167. "gcc set to manually installed.\n",
  3168. "The following packages were automatically installed and are no longer required:\n",
  3169. " libbz2-dev libpkgconf3 libreadline-dev\n",
  3170. "Use 'sudo apt autoremove' to remove them.\n",
  3171. "0 upgraded, 0 newly installed, 0 to remove and 34 not upgraded.\n",
  3172. "Reading package lists... Done\n",
  3173. "Building dependency tree... Done\n",
  3174. "Reading state information... Done\n",
  3175. "The following packages were automatically installed and are no longer required:\n",
  3176. " libbz2-dev libpkgconf3 libreadline-dev\n",
  3177. "Use 'sudo apt autoremove' to remove them.\n",
  3178. "The following additional packages will be installed:\n",
  3179. " libsonic0\n",
  3180. "Suggested packages:\n",
  3181. " sonic\n",
  3182. "The following NEW packages will be installed:\n",
  3183. " libsonic-dev libsonic0\n",
  3184. "0 upgraded, 2 newly installed, 0 to remove and 34 not upgraded.\n",
  3185. "Need to get 60.1 kB of archives.\n",
  3186. "After this operation, 120 kB of additional disk space will be used.\n",
  3187. "Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsonic0 amd64 0.2.0-11build1 [10.3 kB]\n",
  3188. "Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsonic-dev amd64 0.2.0-11build1 [49.8 kB]\n",
  3189. "Fetched 60.1 kB in 0s (142 kB/s)\n",
  3190. "debconf: unable to initialize frontend: Dialog\n",
  3191. "debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 78, <> line 2.)\n",
  3192. "debconf: falling back to frontend: Readline\n",
  3193. "debconf: unable to initialize frontend: Readline\n",
  3194. "debconf: (This frontend requires a controlling tty.)\n",
  3195. "debconf: falling back to frontend: Teletype\n",
  3196. "dpkg-preconfigure: unable to re-open stdin: \n",
  3197. "Selecting previously unselected package libsonic0:amd64.\n",
  3198. "(Reading database ... 126113 files and directories currently installed.)\n",
  3199. "Preparing to unpack .../libsonic0_0.2.0-11build1_amd64.deb ...\n",
  3200. "Unpacking libsonic0:amd64 (0.2.0-11build1) ...\n",
  3201. "Selecting previously unselected package libsonic-dev:amd64.\n",
  3202. "Preparing to unpack .../libsonic-dev_0.2.0-11build1_amd64.deb ...\n",
  3203. "Unpacking libsonic-dev:amd64 (0.2.0-11build1) ...\n",
  3204. "Setting up libsonic0:amd64 (0.2.0-11build1) ...\n",
  3205. "Setting up libsonic-dev:amd64 (0.2.0-11build1) ...\n",
  3206. "Processing triggers for libc-bin (2.35-0ubuntu3.8) ...\n",
  3207. "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_0.so.3 is not a symbolic link\n",
  3208. "\n",
  3209. "/sbin/ldconfig.real: /usr/local/lib/libumf.so.0 is not a symbolic link\n",
  3210. "\n",
  3211. "/sbin/ldconfig.real: /usr/local/lib/libtbbbind.so.3 is not a symbolic link\n",
  3212. "\n",
  3213. "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_opencl.so.0 is not a symbolic link\n",
  3214. "\n",
  3215. "/sbin/ldconfig.real: /usr/local/lib/libhwloc.so.15 is not a symbolic link\n",
  3216. "\n",
  3217. "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero.so.0 is not a symbolic link\n",
  3218. "\n",
  3219. "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc.so.2 is not a symbolic link\n",
  3220. "\n",
  3221. "/sbin/ldconfig.real: /usr/local/lib/libtcm_debug.so.1 is not a symbolic link\n",
  3222. "\n",
  3223. "/sbin/ldconfig.real: /usr/local/lib/libtcm.so.1 is not a symbolic link\n",
  3224. "\n",
  3225. "/sbin/ldconfig.real: /usr/local/lib/libur_loader.so.0 is not a symbolic link\n",
  3226. "\n",
  3227. "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_5.so.3 is not a symbolic link\n",
  3228. "\n",
  3229. "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc_proxy.so.2 is not a symbolic link\n",
  3230. "\n",
  3231. "/sbin/ldconfig.real: /usr/local/lib/libtbb.so.12 is not a symbolic link\n",
  3232. "\n",
  3233. "Reading package lists... Done\n",
  3234. "Building dependency tree... Done\n",
  3235. "Reading state information... Done\n",
  3236. "The following packages were automatically installed and are no longer required:\n",
  3237. " libbz2-dev libpkgconf3 libreadline-dev\n",
  3238. "Use 'sudo apt autoremove' to remove them.\n",
  3239. "The following additional packages will be installed:\n",
  3240. " fonts-droid-fallback fonts-lato fonts-noto-mono fonts-urw-base35 ghostscript\n",
  3241. " groff gsfonts imagemagick imagemagick-6-common imagemagick-6.q16\n",
  3242. " libdjvulibre-text libdjvulibre21 libfftw3-double3 libgs9 libgs9-common\n",
  3243. " libidn12 libijs-0.35 libjbig2dec0 libjxr-tools libjxr0 liblqr-1-0\n",
  3244. " libmagickcore-6.q16-6 libmagickcore-6.q16-6-extra libmagickwand-6.q16-6\n",
  3245. " libnetpbm10 libruby3.0 libwmflite-0.2-7 netpbm poppler-data psutils racc\n",
  3246. " rake ruby ruby-kramdown ruby-mini-portile2 ruby-mustache ruby-net-telnet\n",
  3247. " ruby-nokogiri ruby-pkg-config ruby-ronn ruby-rouge ruby-rubygems\n",
  3248. " ruby-webrick ruby-xmlrpc ruby3.0 rubygems-integration\n",
  3249. "Suggested packages:\n",
  3250. " fonts-noto fonts-freefont-otf | fonts-freefont-ttf fonts-texgyre\n",
  3251. " ghostscript-x imagemagick-doc autotrace cups-bsd | lpr | lprng enscript gimp\n",
  3252. " gnuplot grads hp2xx html2ps libwmf-bin mplayer povray radiance sane-utils\n",
  3253. " texlive-base-bin transfig ufraw-batch libfftw3-bin libfftw3-dev inkscape\n",
  3254. " poppler-utils fonts-japanese-mincho | fonts-ipafont-mincho\n",
  3255. " fonts-japanese-gothic | fonts-ipafont-gothic fonts-arphic-ukai\n",
  3256. " fonts-arphic-uming fonts-nanum ri ruby-dev libjs-mathjax\n",
  3257. " ruby-kramdown-parser-gfm bundler\n",
  3258. "The following NEW packages will be installed:\n",
  3259. " fonts-droid-fallback fonts-lato fonts-noto-mono fonts-urw-base35 ghostscript\n",
  3260. " groff gsfonts imagemagick imagemagick-6-common imagemagick-6.q16\n",
  3261. " libdjvulibre-text libdjvulibre21 libfftw3-double3 libgs9 libgs9-common\n",
  3262. " libidn12 libijs-0.35 libjbig2dec0 libjxr-tools libjxr0 liblqr-1-0\n",
  3263. " libmagickcore-6.q16-6 libmagickcore-6.q16-6-extra libmagickwand-6.q16-6\n",
  3264. " libnetpbm10 libruby3.0 libwmflite-0.2-7 netpbm poppler-data psutils racc\n",
  3265. " rake ronn ruby ruby-kramdown ruby-mini-portile2 ruby-mustache\n",
  3266. " ruby-net-telnet ruby-nokogiri ruby-pkg-config ruby-ronn ruby-rouge\n",
  3267. " ruby-rubygems ruby-webrick ruby-xmlrpc ruby3.0 rubygems-integration\n",
  3268. "0 upgraded, 47 newly installed, 0 to remove and 34 not upgraded.\n",
  3269. "Need to get 38.6 MB of archives.\n",
  3270. "After this operation, 142 MB of additional disk space will be used.\n",
  3271. "Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 fonts-droid-fallback all 1:6.0.1r16-1.1build1 [1,805 kB]\n",
  3272. "Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 fonts-lato all 2.0-2.1 [2,696 kB]\n",
  3273. "Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfftw3-double3 amd64 3.3.8-2ubuntu8 [770 kB]\n",
  3274. "Get:4 http://archive.ubuntu.com/ubuntu jammy/universe amd64 liblqr-1-0 amd64 0.4.2-2.1 [27.7 kB]\n",
  3275. "Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 imagemagick-6-common all 8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5 [64.3 kB]\n",
  3276. "Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libmagickcore-6.q16-6 amd64 8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5 [1,795 kB]\n",
  3277. "Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libmagickwand-6.q16-6 amd64 8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5 [328 kB]\n",
  3278. "Get:8 http://archive.ubuntu.com/ubuntu jammy/main amd64 poppler-data all 0.4.11-1 [2,171 kB]\n",
  3279. "Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 fonts-noto-mono all 20201225-1build1 [397 kB]\n",
  3280. "Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 fonts-urw-base35 all 20200910-1 [6,367 kB]\n",
  3281. "Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgs9-common all 9.55.0~dfsg1-0ubuntu5.11 [753 kB]\n",
  3282. "Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libidn12 amd64 1.38-4ubuntu1 [60.0 kB]\n",
  3283. "Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 libijs-0.35 amd64 0.35-15build2 [16.5 kB]\n",
  3284. "Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjbig2dec0 amd64 0.19-3build2 [64.7 kB]\n",
  3285. "Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgs9 amd64 9.55.0~dfsg1-0ubuntu5.11 [5,031 kB]\n",
  3286. "Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 ghostscript amd64 9.55.0~dfsg1-0ubuntu5.11 [49.4 kB]\n",
  3287. "Get:17 http://archive.ubuntu.com/ubuntu jammy/universe amd64 groff amd64 1.22.4-8build1 [4,104 kB]\n",
  3288. "Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 gsfonts all 1:8.11+urwcyr1.0.7~pre44-4.5 [3,120 kB]\n",
  3289. "Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 imagemagick-6.q16 amd64 8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5 [224 kB]\n",
  3290. "Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 imagemagick amd64 8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5 [14.6 kB]\n",
  3291. "Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdjvulibre-text all 3.5.28-2build2 [50.9 kB]\n",
  3292. "Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdjvulibre21 amd64 3.5.28-2build2 [624 kB]\n",
  3293. "Get:23 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libjxr0 amd64 1.2~git20170615.f752187-5 [174 kB]\n",
  3294. "Get:24 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libjxr-tools amd64 1.2~git20170615.f752187-5 [16.0 kB]\n",
  3295. "Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 libwmflite-0.2-7 amd64 0.2.12-5ubuntu1 [68.9 kB]\n",
  3296. "Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libmagickcore-6.q16-6-extra amd64 8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5 [70.1 kB]\n",
  3297. "Get:27 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libnetpbm10 amd64 2:10.0-15.4 [59.1 kB]\n",
  3298. "Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 rubygems-integration all 1.18 [5,336 B]\n",
  3299. "Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 ruby3.0 amd64 3.0.2-7ubuntu2.10 [50.1 kB]\n",
  3300. "Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 ruby-rubygems all 3.3.5-2 [228 kB]\n",
  3301. "Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 ruby amd64 1:3.0~exp1 [5,100 B]\n",
  3302. "Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 rake all 13.0.6-2 [61.7 kB]\n",
  3303. "Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 ruby-net-telnet all 0.1.1-2 [12.6 kB]\n",
  3304. "Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 ruby-webrick all 1.7.0-3ubuntu0.1 [52.1 kB]\n",
  3305. "Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 ruby-xmlrpc all 0.3.2-1ubuntu0.1 [24.9 kB]\n",
  3306. "Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libruby3.0 amd64 3.0.2-7ubuntu2.10 [5,114 kB]\n",
  3307. "Get:37 http://archive.ubuntu.com/ubuntu jammy/universe amd64 netpbm amd64 2:10.0-15.4 [1,007 kB]\n",
  3308. "Get:38 http://archive.ubuntu.com/ubuntu jammy/universe amd64 psutils amd64 1.17.dfsg-4 [56.2 kB]\n",
  3309. "Get:39 http://archive.ubuntu.com/ubuntu jammy/universe amd64 racc all 1.4.14-2 [77.6 kB]\n",
  3310. "Get:40 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ruby-kramdown all 2.3.1-4 [234 kB]\n",
  3311. "Get:41 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ruby-mustache all 1.1.1-2 [26.6 kB]\n",
  3312. "Get:42 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ruby-mini-portile2 all 2.7.1-1 [13.9 kB]\n",
  3313. "Get:43 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ruby-pkg-config all 1.4.6-2 [8,058 B]\n",
  3314. "Get:44 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ruby-nokogiri amd64 1.13.1+dfsg-2 [256 kB]\n",
  3315. "Get:45 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ruby-ronn all 0.9.1-2 [24.4 kB]\n",
  3316. "Get:46 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ronn all 0.9.1-2 [8,784 B]\n",
  3317. "Get:47 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ruby-rouge all 3.28.0-1 [421 kB]\n",
  3318. "Fetched 38.6 MB in 3s (14.3 MB/s)\n",
  3319. "debconf: unable to initialize frontend: Dialog\n",
  3320. "debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 78, <> line 47.)\n",
  3321. "debconf: falling back to frontend: Readline\n",
  3322. "debconf: unable to initialize frontend: Readline\n",
  3323. "debconf: (This frontend requires a controlling tty.)\n",
  3324. "debconf: falling back to frontend: Teletype\n",
  3325. "dpkg-preconfigure: unable to re-open stdin: \n",
  3326. "Selecting previously unselected package fonts-droid-fallback.\n",
  3327. "(Reading database ... 126127 files and directories currently installed.)\n",
  3328. "Preparing to unpack .../00-fonts-droid-fallback_1%3a6.0.1r16-1.1build1_all.deb ...\n",
  3329. "Unpacking fonts-droid-fallback (1:6.0.1r16-1.1build1) ...\n",
  3330. "Selecting previously unselected package fonts-lato.\n",
  3331. "Preparing to unpack .../01-fonts-lato_2.0-2.1_all.deb ...\n",
  3332. "Unpacking fonts-lato (2.0-2.1) ...\n",
  3333. "Selecting previously unselected package libfftw3-double3:amd64.\n",
  3334. "Preparing to unpack .../02-libfftw3-double3_3.3.8-2ubuntu8_amd64.deb ...\n",
  3335. "Unpacking libfftw3-double3:amd64 (3.3.8-2ubuntu8) ...\n",
  3336. "Selecting previously unselected package liblqr-1-0:amd64.\n",
  3337. "Preparing to unpack .../03-liblqr-1-0_0.4.2-2.1_amd64.deb ...\n",
  3338. "Unpacking liblqr-1-0:amd64 (0.4.2-2.1) ...\n",
  3339. "Selecting previously unselected package imagemagick-6-common.\n",
  3340. "Preparing to unpack .../04-imagemagick-6-common_8%3a6.9.11.60+dfsg-1.3ubuntu0.22.04.5_all.deb ...\n",
  3341. "Unpacking imagemagick-6-common (8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5) ...\n",
  3342. "Selecting previously unselected package libmagickcore-6.q16-6:amd64.\n",
  3343. "Preparing to unpack .../05-libmagickcore-6.q16-6_8%3a6.9.11.60+dfsg-1.3ubuntu0.22.04.5_amd64.deb ...\n",
  3344. "Unpacking libmagickcore-6.q16-6:amd64 (8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5) ...\n",
  3345. "Selecting previously unselected package libmagickwand-6.q16-6:amd64.\n",
  3346. "Preparing to unpack .../06-libmagickwand-6.q16-6_8%3a6.9.11.60+dfsg-1.3ubuntu0.22.04.5_amd64.deb ...\n",
  3347. "Unpacking libmagickwand-6.q16-6:amd64 (8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5) ...\n",
  3348. "Selecting previously unselected package poppler-data.\n",
  3349. "Preparing to unpack .../07-poppler-data_0.4.11-1_all.deb ...\n",
  3350. "Unpacking poppler-data (0.4.11-1) ...\n",
  3351. "Selecting previously unselected package fonts-noto-mono.\n",
  3352. "Preparing to unpack .../08-fonts-noto-mono_20201225-1build1_all.deb ...\n",
  3353. "Unpacking fonts-noto-mono (20201225-1build1) ...\n",
  3354. "Selecting previously unselected package fonts-urw-base35.\n",
  3355. "Preparing to unpack .../09-fonts-urw-base35_20200910-1_all.deb ...\n",
  3356. "Unpacking fonts-urw-base35 (20200910-1) ...\n",
  3357. "Selecting previously unselected package libgs9-common.\n",
  3358. "Preparing to unpack .../10-libgs9-common_9.55.0~dfsg1-0ubuntu5.11_all.deb ...\n",
  3359. "Unpacking libgs9-common (9.55.0~dfsg1-0ubuntu5.11) ...\n",
  3360. "Selecting previously unselected package libidn12:amd64.\n",
  3361. "Preparing to unpack .../11-libidn12_1.38-4ubuntu1_amd64.deb ...\n",
  3362. "Unpacking libidn12:amd64 (1.38-4ubuntu1) ...\n",
  3363. "Selecting previously unselected package libijs-0.35:amd64.\n",
  3364. "Preparing to unpack .../12-libijs-0.35_0.35-15build2_amd64.deb ...\n",
  3365. "Unpacking libijs-0.35:amd64 (0.35-15build2) ...\n",
  3366. "Selecting previously unselected package libjbig2dec0:amd64.\n",
  3367. "Preparing to unpack .../13-libjbig2dec0_0.19-3build2_amd64.deb ...\n",
  3368. "Unpacking libjbig2dec0:amd64 (0.19-3build2) ...\n",
  3369. "Selecting previously unselected package libgs9:amd64.\n",
  3370. "Preparing to unpack .../14-libgs9_9.55.0~dfsg1-0ubuntu5.11_amd64.deb ...\n",
  3371. "Unpacking libgs9:amd64 (9.55.0~dfsg1-0ubuntu5.11) ...\n",
  3372. "Selecting previously unselected package ghostscript.\n",
  3373. "Preparing to unpack .../15-ghostscript_9.55.0~dfsg1-0ubuntu5.11_amd64.deb ...\n",
  3374. "Unpacking ghostscript (9.55.0~dfsg1-0ubuntu5.11) ...\n",
  3375. "Selecting previously unselected package groff.\n",
  3376. "Preparing to unpack .../16-groff_1.22.4-8build1_amd64.deb ...\n",
  3377. "Unpacking groff (1.22.4-8build1) ...\n",
  3378. "Selecting previously unselected package gsfonts.\n",
  3379. "Preparing to unpack .../17-gsfonts_1%3a8.11+urwcyr1.0.7~pre44-4.5_all.deb ...\n",
  3380. "Unpacking gsfonts (1:8.11+urwcyr1.0.7~pre44-4.5) ...\n",
  3381. "Selecting previously unselected package imagemagick-6.q16.\n",
  3382. "Preparing to unpack .../18-imagemagick-6.q16_8%3a6.9.11.60+dfsg-1.3ubuntu0.22.04.5_amd64.deb ...\n",
  3383. "Unpacking imagemagick-6.q16 (8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5) ...\n",
  3384. "Selecting previously unselected package imagemagick.\n",
  3385. "Preparing to unpack .../19-imagemagick_8%3a6.9.11.60+dfsg-1.3ubuntu0.22.04.5_amd64.deb ...\n",
  3386. "Unpacking imagemagick (8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5) ...\n",
  3387. "Selecting previously unselected package libdjvulibre-text.\n",
  3388. "Preparing to unpack .../20-libdjvulibre-text_3.5.28-2build2_all.deb ...\n",
  3389. "Unpacking libdjvulibre-text (3.5.28-2build2) ...\n",
  3390. "Selecting previously unselected package libdjvulibre21:amd64.\n",
  3391. "Preparing to unpack .../21-libdjvulibre21_3.5.28-2build2_amd64.deb ...\n",
  3392. "Unpacking libdjvulibre21:amd64 (3.5.28-2build2) ...\n",
  3393. "Selecting previously unselected package libjxr0:amd64.\n",
  3394. "Preparing to unpack .../22-libjxr0_1.2~git20170615.f752187-5_amd64.deb ...\n",
  3395. "Unpacking libjxr0:amd64 (1.2~git20170615.f752187-5) ...\n",
  3396. "Selecting previously unselected package libjxr-tools.\n",
  3397. "Preparing to unpack .../23-libjxr-tools_1.2~git20170615.f752187-5_amd64.deb ...\n",
  3398. "Unpacking libjxr-tools (1.2~git20170615.f752187-5) ...\n",
  3399. "Selecting previously unselected package libwmflite-0.2-7:amd64.\n",
  3400. "Preparing to unpack .../24-libwmflite-0.2-7_0.2.12-5ubuntu1_amd64.deb ...\n",
  3401. "Unpacking libwmflite-0.2-7:amd64 (0.2.12-5ubuntu1) ...\n",
  3402. "Selecting previously unselected package libmagickcore-6.q16-6-extra:amd64.\n",
  3403. "Preparing to unpack .../25-libmagickcore-6.q16-6-extra_8%3a6.9.11.60+dfsg-1.3ubuntu0.22.04.5_amd64.deb ...\n",
  3404. "Unpacking libmagickcore-6.q16-6-extra:amd64 (8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5) ...\n",
  3405. "Selecting previously unselected package libnetpbm10.\n",
  3406. "Preparing to unpack .../26-libnetpbm10_2%3a10.0-15.4_amd64.deb ...\n",
  3407. "Unpacking libnetpbm10 (2:10.0-15.4) ...\n",
  3408. "Selecting previously unselected package rubygems-integration.\n",
  3409. "Preparing to unpack .../27-rubygems-integration_1.18_all.deb ...\n",
  3410. "Unpacking rubygems-integration (1.18) ...\n",
  3411. "Selecting previously unselected package ruby3.0.\n",
  3412. "Preparing to unpack .../28-ruby3.0_3.0.2-7ubuntu2.10_amd64.deb ...\n",
  3413. "Unpacking ruby3.0 (3.0.2-7ubuntu2.10) ...\n",
  3414. "Selecting previously unselected package ruby-rubygems.\n",
  3415. "Preparing to unpack .../29-ruby-rubygems_3.3.5-2_all.deb ...\n",
  3416. "Unpacking ruby-rubygems (3.3.5-2) ...\n",
  3417. "Selecting previously unselected package ruby.\n",
  3418. "Preparing to unpack .../30-ruby_1%3a3.0~exp1_amd64.deb ...\n",
  3419. "Unpacking ruby (1:3.0~exp1) ...\n",
  3420. "Selecting previously unselected package rake.\n",
  3421. "Preparing to unpack .../31-rake_13.0.6-2_all.deb ...\n",
  3422. "Unpacking rake (13.0.6-2) ...\n",
  3423. "Selecting previously unselected package ruby-net-telnet.\n",
  3424. "Preparing to unpack .../32-ruby-net-telnet_0.1.1-2_all.deb ...\n",
  3425. "Unpacking ruby-net-telnet (0.1.1-2) ...\n",
  3426. "Selecting previously unselected package ruby-webrick.\n",
  3427. "Preparing to unpack .../33-ruby-webrick_1.7.0-3ubuntu0.1_all.deb ...\n",
  3428. "Unpacking ruby-webrick (1.7.0-3ubuntu0.1) ...\n",
  3429. "Selecting previously unselected package ruby-xmlrpc.\n",
  3430. "Preparing to unpack .../34-ruby-xmlrpc_0.3.2-1ubuntu0.1_all.deb ...\n",
  3431. "Unpacking ruby-xmlrpc (0.3.2-1ubuntu0.1) ...\n",
  3432. "Selecting previously unselected package libruby3.0:amd64.\n",
  3433. "Preparing to unpack .../35-libruby3.0_3.0.2-7ubuntu2.10_amd64.deb ...\n",
  3434. "Unpacking libruby3.0:amd64 (3.0.2-7ubuntu2.10) ...\n",
  3435. "Selecting previously unselected package netpbm.\n",
  3436. "Preparing to unpack .../36-netpbm_2%3a10.0-15.4_amd64.deb ...\n",
  3437. "Unpacking netpbm (2:10.0-15.4) ...\n",
  3438. "Selecting previously unselected package psutils.\n",
  3439. "Preparing to unpack .../37-psutils_1.17.dfsg-4_amd64.deb ...\n",
  3440. "Unpacking psutils (1.17.dfsg-4) ...\n",
  3441. "Selecting previously unselected package racc.\n",
  3442. "Preparing to unpack .../38-racc_1.4.14-2_all.deb ...\n",
  3443. "Unpacking racc (1.4.14-2) ...\n",
  3444. "Selecting previously unselected package ruby-kramdown.\n",
  3445. "Preparing to unpack .../39-ruby-kramdown_2.3.1-4_all.deb ...\n",
  3446. "Unpacking ruby-kramdown (2.3.1-4) ...\n",
  3447. "Selecting previously unselected package ruby-mustache.\n",
  3448. "Preparing to unpack .../40-ruby-mustache_1.1.1-2_all.deb ...\n",
  3449. "Unpacking ruby-mustache (1.1.1-2) ...\n",
  3450. "Selecting previously unselected package ruby-mini-portile2.\n",
  3451. "Preparing to unpack .../41-ruby-mini-portile2_2.7.1-1_all.deb ...\n",
  3452. "Unpacking ruby-mini-portile2 (2.7.1-1) ...\n",
  3453. "Selecting previously unselected package ruby-pkg-config.\n",
  3454. "Preparing to unpack .../42-ruby-pkg-config_1.4.6-2_all.deb ...\n",
  3455. "Unpacking ruby-pkg-config (1.4.6-2) ...\n",
  3456. "Selecting previously unselected package ruby-nokogiri.\n",
  3457. "Preparing to unpack .../43-ruby-nokogiri_1.13.1+dfsg-2_amd64.deb ...\n",
  3458. "Unpacking ruby-nokogiri (1.13.1+dfsg-2) ...\n",
  3459. "Selecting previously unselected package ruby-ronn.\n",
  3460. "Preparing to unpack .../44-ruby-ronn_0.9.1-2_all.deb ...\n",
  3461. "Unpacking ruby-ronn (0.9.1-2) ...\n",
  3462. "Selecting previously unselected package ronn.\n",
  3463. "Preparing to unpack .../45-ronn_0.9.1-2_all.deb ...\n",
  3464. "Unpacking ronn (0.9.1-2) ...\n",
  3465. "Selecting previously unselected package ruby-rouge.\n",
  3466. "Preparing to unpack .../46-ruby-rouge_3.28.0-1_all.deb ...\n",
  3467. "Unpacking ruby-rouge (3.28.0-1) ...\n",
  3468. "Setting up imagemagick-6-common (8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5) ...\n",
  3469. "Setting up fonts-lato (2.0-2.1) ...\n",
  3470. "Setting up fonts-noto-mono (20201225-1build1) ...\n",
  3471. "Setting up libwmflite-0.2-7:amd64 (0.2.12-5ubuntu1) ...\n",
  3472. "Setting up libijs-0.35:amd64 (0.35-15build2) ...\n",
  3473. "Setting up libjxr0:amd64 (1.2~git20170615.f752187-5) ...\n",
  3474. "Setting up ruby-mini-portile2 (2.7.1-1) ...\n",
  3475. "Setting up rubygems-integration (1.18) ...\n",
  3476. "Setting up libnetpbm10 (2:10.0-15.4) ...\n",
  3477. "Setting up fonts-urw-base35 (20200910-1) ...\n",
  3478. "Setting up poppler-data (0.4.11-1) ...\n",
  3479. "Setting up groff (1.22.4-8build1) ...\n",
  3480. "Setting up libjbig2dec0:amd64 (0.19-3build2) ...\n",
  3481. "Setting up gsfonts (1:8.11+urwcyr1.0.7~pre44-4.5) ...\n",
  3482. "Setting up ruby-net-telnet (0.1.1-2) ...\n",
  3483. "Setting up libidn12:amd64 (1.38-4ubuntu1) ...\n",
  3484. "Setting up netpbm (2:10.0-15.4) ...\n",
  3485. "Setting up libfftw3-double3:amd64 (3.3.8-2ubuntu8) ...\n",
  3486. "Setting up ruby-webrick (1.7.0-3ubuntu0.1) ...\n",
  3487. "Setting up liblqr-1-0:amd64 (0.4.2-2.1) ...\n",
  3488. "Setting up fonts-droid-fallback (1:6.0.1r16-1.1build1) ...\n",
  3489. "Setting up libdjvulibre-text (3.5.28-2build2) ...\n",
  3490. "Setting up psutils (1.17.dfsg-4) ...\n",
  3491. "Setting up ruby-xmlrpc (0.3.2-1ubuntu0.1) ...\n",
  3492. "Setting up libgs9-common (9.55.0~dfsg1-0ubuntu5.11) ...\n",
  3493. "Setting up libjxr-tools (1.2~git20170615.f752187-5) ...\n",
  3494. "Setting up libgs9:amd64 (9.55.0~dfsg1-0ubuntu5.11) ...\n",
  3495. "Setting up libdjvulibre21:amd64 (3.5.28-2build2) ...\n",
  3496. "Setting up ghostscript (9.55.0~dfsg1-0ubuntu5.11) ...\n",
  3497. "Setting up libmagickcore-6.q16-6:amd64 (8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5) ...\n",
  3498. "Setting up libmagickwand-6.q16-6:amd64 (8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5) ...\n",
  3499. "Setting up libmagickcore-6.q16-6-extra:amd64 (8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5) ...\n",
  3500. "Setting up imagemagick-6.q16 (8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5) ...\n",
  3501. "update-alternatives: using /usr/bin/compare-im6.q16 to provide /usr/bin/compare (compare) in auto mode\n",
  3502. "update-alternatives: using /usr/bin/compare-im6.q16 to provide /usr/bin/compare-im6 (compare-im6) in auto mode\n",
  3503. "update-alternatives: using /usr/bin/animate-im6.q16 to provide /usr/bin/animate (animate) in auto mode\n",
  3504. "update-alternatives: using /usr/bin/animate-im6.q16 to provide /usr/bin/animate-im6 (animate-im6) in auto mode\n",
  3505. "update-alternatives: using /usr/bin/convert-im6.q16 to provide /usr/bin/convert (convert) in auto mode\n",
  3506. "update-alternatives: using /usr/bin/convert-im6.q16 to provide /usr/bin/convert-im6 (convert-im6) in auto mode\n",
  3507. "update-alternatives: using /usr/bin/composite-im6.q16 to provide /usr/bin/composite (composite) in auto mode\n",
  3508. "update-alternatives: using /usr/bin/composite-im6.q16 to provide /usr/bin/composite-im6 (composite-im6) in auto mode\n",
  3509. "update-alternatives: using /usr/bin/conjure-im6.q16 to provide /usr/bin/conjure (conjure) in auto mode\n",
  3510. "update-alternatives: using /usr/bin/conjure-im6.q16 to provide /usr/bin/conjure-im6 (conjure-im6) in auto mode\n",
  3511. "update-alternatives: using /usr/bin/import-im6.q16 to provide /usr/bin/import (import) in auto mode\n",
  3512. "update-alternatives: using /usr/bin/import-im6.q16 to provide /usr/bin/import-im6 (import-im6) in auto mode\n",
  3513. "update-alternatives: using /usr/bin/identify-im6.q16 to provide /usr/bin/identify (identify) in auto mode\n",
  3514. "update-alternatives: using /usr/bin/identify-im6.q16 to provide /usr/bin/identify-im6 (identify-im6) in auto mode\n",
  3515. "update-alternatives: using /usr/bin/stream-im6.q16 to provide /usr/bin/stream (stream) in auto mode\n",
  3516. "update-alternatives: using /usr/bin/stream-im6.q16 to provide /usr/bin/stream-im6 (stream-im6) in auto mode\n",
  3517. "update-alternatives: using /usr/bin/display-im6.q16 to provide /usr/bin/display (display) in auto mode\n",
  3518. "update-alternatives: using /usr/bin/display-im6.q16 to provide /usr/bin/display-im6 (display-im6) in auto mode\n",
  3519. "update-alternatives: using /usr/bin/montage-im6.q16 to provide /usr/bin/montage (montage) in auto mode\n",
  3520. "update-alternatives: using /usr/bin/montage-im6.q16 to provide /usr/bin/montage-im6 (montage-im6) in auto mode\n",
  3521. "update-alternatives: using /usr/bin/mogrify-im6.q16 to provide /usr/bin/mogrify (mogrify) in auto mode\n",
  3522. "update-alternatives: using /usr/bin/mogrify-im6.q16 to provide /usr/bin/mogrify-im6 (mogrify-im6) in auto mode\n",
  3523. "Setting up imagemagick (8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5) ...\n",
  3524. "Setting up ruby-rubygems (3.3.5-2) ...\n",
  3525. "Setting up rake (13.0.6-2) ...\n",
  3526. "Setting up libruby3.0:amd64 (3.0.2-7ubuntu2.10) ...\n",
  3527. "Setting up ruby3.0 (3.0.2-7ubuntu2.10) ...\n",
  3528. "Setting up ruby-kramdown (2.3.1-4) ...\n",
  3529. "Setting up ruby (1:3.0~exp1) ...\n",
  3530. "Setting up racc (1.4.14-2) ...\n",
  3531. "Setting up ruby-pkg-config (1.4.6-2) ...\n",
  3532. "Setting up ruby-rouge (3.28.0-1) ...\n",
  3533. "Setting up ruby-mustache (1.1.1-2) ...\n",
  3534. "Setting up ruby-nokogiri (1.13.1+dfsg-2) ...\n",
  3535. "Setting up ruby-ronn (0.9.1-2) ...\n",
  3536. "Setting up ronn (0.9.1-2) ...\n",
  3537. "Processing triggers for fontconfig (2.13.1-4.2ubuntu5) ...\n",
  3538. "Processing triggers for hicolor-icon-theme (0.17-2) ...\n",
  3539. "Processing triggers for libc-bin (2.35-0ubuntu3.8) ...\n",
  3540. "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_0.so.3 is not a symbolic link\n",
  3541. "\n",
  3542. "/sbin/ldconfig.real: /usr/local/lib/libumf.so.0 is not a symbolic link\n",
  3543. "\n",
  3544. "/sbin/ldconfig.real: /usr/local/lib/libtbbbind.so.3 is not a symbolic link\n",
  3545. "\n",
  3546. "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_opencl.so.0 is not a symbolic link\n",
  3547. "\n",
  3548. "/sbin/ldconfig.real: /usr/local/lib/libhwloc.so.15 is not a symbolic link\n",
  3549. "\n",
  3550. "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero.so.0 is not a symbolic link\n",
  3551. "\n",
  3552. "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc.so.2 is not a symbolic link\n",
  3553. "\n",
  3554. "/sbin/ldconfig.real: /usr/local/lib/libtcm_debug.so.1 is not a symbolic link\n",
  3555. "\n",
  3556. "/sbin/ldconfig.real: /usr/local/lib/libtcm.so.1 is not a symbolic link\n",
  3557. "\n",
  3558. "/sbin/ldconfig.real: /usr/local/lib/libur_loader.so.0 is not a symbolic link\n",
  3559. "\n",
  3560. "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_5.so.3 is not a symbolic link\n",
  3561. "\n",
  3562. "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc_proxy.so.2 is not a symbolic link\n",
  3563. "\n",
  3564. "/sbin/ldconfig.real: /usr/local/lib/libtbb.so.12 is not a symbolic link\n",
  3565. "\n",
  3566. "Processing triggers for man-db (2.10.2-1) ...\n",
  3567. "Processing triggers for mailcap (3.70+nmu1ubuntu1) ...\n",
  3568. "Reading package lists... Done\n",
  3569. "Building dependency tree... Done\n",
  3570. "Reading state information... Done\n",
  3571. "The following packages were automatically installed and are no longer required:\n",
  3572. " libbz2-dev libpkgconf3 libreadline-dev\n",
  3573. "Use 'sudo apt autoremove' to remove them.\n",
  3574. "The following NEW packages will be installed:\n",
  3575. " kramdown\n",
  3576. "0 upgraded, 1 newly installed, 0 to remove and 34 not upgraded.\n",
  3577. "Need to get 7,596 B of archives.\n",
  3578. "After this operation, 19.5 kB of additional disk space will be used.\n",
  3579. "Get:1 http://archive.ubuntu.com/ubuntu jammy/universe amd64 kramdown all 2.3.1-4 [7,596 B]\n",
  3580. "Fetched 7,596 B in 0s (88.4 kB/s)\n",
  3581. "debconf: unable to initialize frontend: Dialog\n",
  3582. "debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 78, <> line 1.)\n",
  3583. "debconf: falling back to frontend: Readline\n",
  3584. "debconf: unable to initialize frontend: Readline\n",
  3585. "debconf: (This frontend requires a controlling tty.)\n",
  3586. "debconf: falling back to frontend: Teletype\n",
  3587. "dpkg-preconfigure: unable to re-open stdin: \n",
  3588. "Selecting previously unselected package kramdown.\n",
  3589. "(Reading database ... 132964 files and directories currently installed.)\n",
  3590. "Preparing to unpack .../kramdown_2.3.1-4_all.deb ...\n",
  3591. "Unpacking kramdown (2.3.1-4) ...\n",
  3592. "Setting up kramdown (2.3.1-4) ...\n",
  3593. "Processing triggers for man-db (2.10.2-1) ...\n",
  3594. "Reading package lists... Done\n",
  3595. "Building dependency tree... Done\n",
  3596. "Reading state information... Done\n",
  3597. "The following packages were automatically installed and are no longer required:\n",
  3598. " libbz2-dev libpkgconf3 libreadline-dev\n",
  3599. "Use 'sudo apt autoremove' to remove them.\n",
  3600. "The following additional packages will be installed:\n",
  3601. " libpcaudio0\n",
  3602. "The following NEW packages will be installed:\n",
  3603. " libpcaudio-dev libpcaudio0\n",
  3604. "0 upgraded, 2 newly installed, 0 to remove and 34 not upgraded.\n",
  3605. "Need to get 17.9 kB of archives.\n",
  3606. "After this operation, 82.9 kB of additional disk space will be used.\n",
  3607. "Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 libpcaudio0 amd64 1.1-6build2 [8,956 B]\n",
  3608. "Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 libpcaudio-dev amd64 1.1-6build2 [8,908 B]\n",
  3609. "Fetched 17.9 kB in 0s (210 kB/s)\n",
  3610. "debconf: unable to initialize frontend: Dialog\n",
  3611. "debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 78, <> line 2.)\n",
  3612. "debconf: falling back to frontend: Readline\n",
  3613. "debconf: unable to initialize frontend: Readline\n",
  3614. "debconf: (This frontend requires a controlling tty.)\n",
  3615. "debconf: falling back to frontend: Teletype\n",
  3616. "dpkg-preconfigure: unable to re-open stdin: \n",
  3617. "Selecting previously unselected package libpcaudio0:amd64.\n",
  3618. "(Reading database ... 132967 files and directories currently installed.)\n",
  3619. "Preparing to unpack .../libpcaudio0_1.1-6build2_amd64.deb ...\n",
  3620. "Unpacking libpcaudio0:amd64 (1.1-6build2) ...\n",
  3621. "Selecting previously unselected package libpcaudio-dev:amd64.\n",
  3622. "Preparing to unpack .../libpcaudio-dev_1.1-6build2_amd64.deb ...\n",
  3623. "Unpacking libpcaudio-dev:amd64 (1.1-6build2) ...\n",
  3624. "Setting up libpcaudio0:amd64 (1.1-6build2) ...\n",
  3625. "Setting up libpcaudio-dev:amd64 (1.1-6build2) ...\n",
  3626. "Processing triggers for libc-bin (2.35-0ubuntu3.8) ...\n",
  3627. "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_0.so.3 is not a symbolic link\n",
  3628. "\n",
  3629. "/sbin/ldconfig.real: /usr/local/lib/libumf.so.0 is not a symbolic link\n",
  3630. "\n",
  3631. "/sbin/ldconfig.real: /usr/local/lib/libtbbbind.so.3 is not a symbolic link\n",
  3632. "\n",
  3633. "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_opencl.so.0 is not a symbolic link\n",
  3634. "\n",
  3635. "/sbin/ldconfig.real: /usr/local/lib/libhwloc.so.15 is not a symbolic link\n",
  3636. "\n",
  3637. "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero.so.0 is not a symbolic link\n",
  3638. "\n",
  3639. "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc.so.2 is not a symbolic link\n",
  3640. "\n",
  3641. "/sbin/ldconfig.real: /usr/local/lib/libtcm_debug.so.1 is not a symbolic link\n",
  3642. "\n",
  3643. "/sbin/ldconfig.real: /usr/local/lib/libtcm.so.1 is not a symbolic link\n",
  3644. "\n",
  3645. "/sbin/ldconfig.real: /usr/local/lib/libur_loader.so.0 is not a symbolic link\n",
  3646. "\n",
  3647. "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_5.so.3 is not a symbolic link\n",
  3648. "\n",
  3649. "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc_proxy.so.2 is not a symbolic link\n",
  3650. "\n",
  3651. "/sbin/ldconfig.real: /usr/local/lib/libtbb.so.12 is not a symbolic link\n",
  3652. "\n"
  3653. ]
  3654. }
  3655. ]
  3656. },
  3657. {
  3658. "cell_type": "code",
  3659. "source": [
  3660. "!sudo apt-get update\n",
  3661. "!sudo apt-get install libjansson-dev"
  3662. ],
  3663. "metadata": {
  3664. "colab": {
  3665. "base_uri": "https://localhost:8080/"
  3666. },
  3667. "id": "BuPUdKBJ55p3",
  3668. "outputId": "c9cf193e-a3bd-423f-d92a-03ccdd2dfe1e"
  3669. },
  3670. "execution_count": null,
  3671. "outputs": [
  3672. {
  3673. "output_type": "stream",
  3674. "name": "stdout",
  3675. "text": [
  3676. "\r0% [Working]\r \rHit:1 http://archive.ubuntu.com/ubuntu jammy InRelease\n",
  3677. "\r0% [Connecting to security.ubuntu.com (185.125.190.81)] [Connecting to cloud.r-\r \rGet:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB]\n",
  3678. "\r0% [2 InRelease 15.6 kB/128 kB 12%] [Connecting to security.ubuntu.com (185.125\r0% [Waiting for headers] [Waiting for headers] [Connected to cloud.r-project.or\r \rHit:3 https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64 InRelease\n",
  3679. "\r0% [Waiting for headers] [Waiting for headers] [Waiting for headers] [Waiting f\r \rGet:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB]\n",
  3680. "\r0% [4 InRelease 5,484 B/127 kB 4%] [Waiting for headers] [Waiting for headers] \r \rGet:5 https://cloud.r-project.org/bin/linux/ubuntu jammy-cran40/ InRelease [3,632 B]\n",
  3681. "\r0% [4 InRelease 40.2 kB/127 kB 32%] [Waiting for headers] [5 InRelease 3,632 B/\r0% [4 InRelease 40.2 kB/127 kB 32%] [Waiting for headers] [Waiting for headers]\r \rGet:6 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB]\n",
  3682. "Get:7 https://r2u.stat.illinois.edu/ubuntu jammy InRelease [6,555 B]\n",
  3683. "Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3,211 kB]\n",
  3684. "Hit:9 https://ppa.launchpadcontent.net/deadsnakes/ppa/ubuntu jammy InRelease\n",
  3685. "Hit:10 https://ppa.launchpadcontent.net/graphics-drivers/ppa/ubuntu jammy InRelease\n",
  3686. "Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,546 kB]\n",
  3687. "Hit:12 https://ppa.launchpadcontent.net/ubuntugis/ppa/ubuntu jammy InRelease\n",
  3688. "Get:13 https://r2u.stat.illinois.edu/ubuntu jammy/main amd64 Packages [2,723 kB]\n",
  3689. "Get:14 https://r2u.stat.illinois.edu/ubuntu jammy/main all Packages [8,931 kB]\n",
  3690. "Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1,245 kB]\n",
  3691. "Get:16 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [2,901 kB]\n",
  3692. "Fetched 21.0 MB in 2s (9,019 kB/s)\n",
  3693. "Reading package lists... Done\n",
  3694. "W: Skipping acquire of configured file 'main/source/Sources' as repository 'https://r2u.stat.illinois.edu/ubuntu jammy InRelease' does not seem to provide it (sources.list entry misspelt?)\n",
  3695. "Reading package lists... Done\n",
  3696. "Building dependency tree... Done\n",
  3697. "Reading state information... Done\n",
  3698. "The following packages were automatically installed and are no longer required:\n",
  3699. " libbz2-dev libpkgconf3 libreadline-dev\n",
  3700. "Use 'sudo apt autoremove' to remove them.\n",
  3701. "The following additional packages will be installed:\n",
  3702. " libjansson4\n",
  3703. "The following NEW packages will be installed:\n",
  3704. " libjansson-dev libjansson4\n",
  3705. "0 upgraded, 2 newly installed, 0 to remove and 35 not upgraded.\n",
  3706. "Need to get 67.7 kB of archives.\n",
  3707. "After this operation, 237 kB of additional disk space will be used.\n",
  3708. "Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjansson4 amd64 2.13.1-1.1build3 [32.4 kB]\n",
  3709. "Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjansson-dev amd64 2.13.1-1.1build3 [35.3 kB]\n",
  3710. "Fetched 67.7 kB in 0s (483 kB/s)\n",
  3711. "debconf: unable to initialize frontend: Dialog\n",
  3712. "debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 78, <> line 2.)\n",
  3713. "debconf: falling back to frontend: Readline\n",
  3714. "debconf: unable to initialize frontend: Readline\n",
  3715. "debconf: (This frontend requires a controlling tty.)\n",
  3716. "debconf: falling back to frontend: Teletype\n",
  3717. "dpkg-preconfigure: unable to re-open stdin: \n",
  3718. "Selecting previously unselected package libjansson4:amd64.\n",
  3719. "(Reading database ... 132981 files and directories currently installed.)\n",
  3720. "Preparing to unpack .../libjansson4_2.13.1-1.1build3_amd64.deb ...\n",
  3721. "Unpacking libjansson4:amd64 (2.13.1-1.1build3) ...\n",
  3722. "Selecting previously unselected package libjansson-dev:amd64.\n",
  3723. "Preparing to unpack .../libjansson-dev_2.13.1-1.1build3_amd64.deb ...\n",
  3724. "Unpacking libjansson-dev:amd64 (2.13.1-1.1build3) ...\n",
  3725. "Setting up libjansson4:amd64 (2.13.1-1.1build3) ...\n",
  3726. "Setting up libjansson-dev:amd64 (2.13.1-1.1build3) ...\n",
  3727. "Processing triggers for libc-bin (2.35-0ubuntu3.8) ...\n",
  3728. "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_0.so.3 is not a symbolic link\n",
  3729. "\n",
  3730. "/sbin/ldconfig.real: /usr/local/lib/libumf.so.0 is not a symbolic link\n",
  3731. "\n",
  3732. "/sbin/ldconfig.real: /usr/local/lib/libtbbbind.so.3 is not a symbolic link\n",
  3733. "\n",
  3734. "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_opencl.so.0 is not a symbolic link\n",
  3735. "\n",
  3736. "/sbin/ldconfig.real: /usr/local/lib/libhwloc.so.15 is not a symbolic link\n",
  3737. "\n",
  3738. "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero.so.0 is not a symbolic link\n",
  3739. "\n",
  3740. "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc.so.2 is not a symbolic link\n",
  3741. "\n",
  3742. "/sbin/ldconfig.real: /usr/local/lib/libtcm_debug.so.1 is not a symbolic link\n",
  3743. "\n",
  3744. "/sbin/ldconfig.real: /usr/local/lib/libtcm.so.1 is not a symbolic link\n",
  3745. "\n",
  3746. "/sbin/ldconfig.real: /usr/local/lib/libur_loader.so.0 is not a symbolic link\n",
  3747. "\n",
  3748. "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_5.so.3 is not a symbolic link\n",
  3749. "\n",
  3750. "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc_proxy.so.2 is not a symbolic link\n",
  3751. "\n",
  3752. "/sbin/ldconfig.real: /usr/local/lib/libtbb.so.12 is not a symbolic link\n",
  3753. "\n"
  3754. ]
  3755. }
  3756. ]
  3757. },
  3758. {
  3759. "cell_type": "code",
  3760. "source": [
  3761. "import os\n",
  3762. "os.chdir('espeak-ng')"
  3763. ],
  3764. "metadata": {
  3765. "id": "NGnZWEZBBkTP"
  3766. },
  3767. "execution_count": null,
  3768. "outputs": []
  3769. },
  3770. {
  3771. "cell_type": "code",
  3772. "source": [
  3773. "!make clean\n",
  3774. "!./autogen.sh\n",
  3775. "!./configure --prefix=/usr\n",
  3776. "!make\n",
  3777. "!sudo make LIBDIR=/usr/lib/x86_64-linux-gnu install"
  3778. ],
  3779. "metadata": {
  3780. "colab": {
  3781. "base_uri": "https://localhost:8080/"
  3782. },
  3783. "id": "9Pr6CrA8BnUm",
  3784. "outputId": "f157d654-7fd8-45df-a540-7f9ec18e17f8"
  3785. },
  3786. "execution_count": null,
  3787. "outputs": [
  3788. {
  3789. "output_type": "stream",
  3790. "name": "stdout",
  3791. "text": [
  3792. "make: *** No rule to make target 'clean'. Stop.\n",
  3793. "libtoolize: putting auxiliary files in '.'.\n",
  3794. "libtoolize: copying file './ltmain.sh'\n",
  3795. "libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.\n",
  3796. "libtoolize: copying file 'm4/libtool.m4'\n",
  3797. "libtoolize: copying file 'm4/ltoptions.m4'\n",
  3798. "libtoolize: copying file 'm4/ltsugar.m4'\n",
  3799. "libtoolize: copying file 'm4/ltversion.m4'\n",
  3800. "libtoolize: copying file 'm4/lt~obsolete.m4'\n",
  3801. "configure.ac:4: installing './compile'\n",
  3802. "configure.ac:4: installing './config.guess'\n",
  3803. "configure.ac:4: installing './config.sub'\n",
  3804. "configure.ac:3: installing './install-sh'\n",
  3805. "configure.ac:3: installing './missing'\n",
  3806. "Makefile.am:112: warning: shell dirname $@: non-POSIX variable name\n",
  3807. "Makefile.am:112: (probably a GNU make extension)\n",
  3808. "Makefile.am:115: warning: shell dirname $@: non-POSIX variable name\n",
  3809. "Makefile.am:115: (probably a GNU make extension)\n",
  3810. "Makefile.am:117: warning: wildcard docs/*.md: non-POSIX variable name\n",
  3811. "Makefile.am:117: (probably a GNU make extension)\n",
  3812. "Makefile.am:117: warning: wildcard docs/*/*.md: non-POSIX variable name\n",
  3813. "Makefile.am:117: (probably a GNU make extension)\n",
  3814. "Makefile.am:117: warning: wildcard docs/*/*/*.md: non-POSIX variable name\n",
  3815. "Makefile.am:117: (probably a GNU make extension)\n",
  3816. "Makefile.am:324: warning: filter-out tests/windows-data.test,$(wildcard tests/*.test: non-POSIX variable name\n",
  3817. "Makefile.am:324: (probably a GNU make extension)\n",
  3818. "Makefile.am:367: warning: wildcard tests/ssml/*.ssml tests/ssml-fuzzer/*.ssml: non-POSIX variable name\n",
  3819. "Makefile.am:367: (probably a GNU make extension)\n",
  3820. "Makefile.am:374: warning: wildcard tests/ssml/*.expected: non-POSIX variable name\n",
  3821. "Makefile.am:374: (probably a GNU make extension)\n",
  3822. "Makefile.am:384: warning: wildcard phsource/*: non-POSIX variable name\n",
  3823. "Makefile.am:384: (probably a GNU make extension)\n",
  3824. "Makefile.am:384: warning: wildcard phsource/*/*: non-POSIX variable name\n",
  3825. "Makefile.am:384: (probably a GNU make extension)\n",
  3826. "Makefile.am:384: warning: wildcard phsource/*/*/*: non-POSIX variable name\n",
  3827. "Makefile.am:384: (probably a GNU make extension)\n",
  3828. "Makefile.am:389: warning: wildcard espeak-ng-data/lang/*: non-POSIX variable name\n",
  3829. "Makefile.am:389: (probably a GNU make extension)\n",
  3830. "Makefile.am:389: warning: wildcard espeak-ng-data/lang/*/*: non-POSIX variable name\n",
  3831. "Makefile.am:389: (probably a GNU make extension)\n",
  3832. "Makefile.am:389: warning: wildcard espeak-ng-data/voices/*/*: non-POSIX variable name\n",
  3833. "Makefile.am:389: (probably a GNU make extension)\n",
  3834. "Makefile.am:394: warning: filter-out phsource/phonemes.stamp,$(PHSOURCE: non-POSIX variable name\n",
  3835. "Makefile.am:394: (probably a GNU make extension)\n",
  3836. "Makefile.am:394: warning: filter-out espeak-ng-data/voices/!v/Mr serious,$(LANGDATA: non-POSIX variable name\n",
  3837. "Makefile.am:394: (probably a GNU make extension)\n",
  3838. "Makefile.am:419: warning: '%'-style pattern rules are a GNU make extension\n",
  3839. "Makefile.am:430: warning: '%'-style pattern rules are a GNU make extension\n",
  3840. "Makefile.am:441: warning: '%'-style pattern rules are a GNU make extension\n",
  3841. "Makefile.am:444: warning: *F: non-POSIX variable name\n",
  3842. "Makefile.am:566: warning: wildcard dictsource/*_emoji: non-POSIX variable name\n",
  3843. "Makefile.am:566: (probably a GNU make extension)\n",
  3844. "Makefile.am:566: warning: wildcard dictsource/*_extra: non-POSIX variable name\n",
  3845. "Makefile.am:566: (probably a GNU make extension)\n",
  3846. "Makefile.am:566: warning: wildcard dictsource/*_list: non-POSIX variable name\n",
  3847. "Makefile.am:566: (probably a GNU make extension)\n",
  3848. "Makefile.am:566: warning: wildcard dictsource/*_rules: non-POSIX variable name\n",
  3849. "Makefile.am:566: (probably a GNU make extension)\n",
  3850. "Makefile.am:566: warning: wildcard dictsource/extra/*: non-POSIX variable name\n",
  3851. "Makefile.am:566: (probably a GNU make extension)\n",
  3852. "Makefile.am:979: warning: wildcard phsource/mbrola/*: non-POSIX variable name\n",
  3853. "Makefile.am:979: (probably a GNU make extension)\n",
  3854. "Makefile.am:985: warning: '%'-style pattern rules are a GNU make extension\n",
  3855. "Makefile.am:991: warning: all-local was already defined in condition TRUE, which includes condition OPT_MBROLA ...\n",
  3856. "Makefile.am:51: ... 'all-local' previously defined here\n",
  3857. "Makefile.am: installing './INSTALL'\n",
  3858. "Makefile.am: installing './depcomp'\n",
  3859. "configure.ac:78: warning: The macro `AC_PROG_LIBTOOL' is obsolete.\n",
  3860. "configure.ac:78: You should run autoupdate.\n",
  3861. "aclocal.m4:121: AC_PROG_LIBTOOL is expanded from...\n",
  3862. "configure.ac:78: the top level\n",
  3863. "checking for a BSD-compatible install... /usr/bin/install -c\n",
  3864. "checking whether build environment is sane... yes\n",
  3865. "checking for a race-free mkdir -p... /usr/bin/mkdir -p\n",
  3866. "checking for gawk... no\n",
  3867. "checking for mawk... mawk\n",
  3868. "checking whether make sets $(MAKE)... yes\n",
  3869. "checking whether make supports nested variables... yes\n",
  3870. "checking build system type... x86_64-pc-linux-gnu\n",
  3871. "checking host system type... x86_64-pc-linux-gnu\n",
  3872. "checking how to print strings... printf\n",
  3873. "checking whether make supports the include directive... yes (GNU style)\n",
  3874. "checking for gcc... gcc\n",
  3875. "checking whether the C compiler works... yes\n",
  3876. "checking for C compiler default output file name... a.out\n",
  3877. "checking for suffix of executables... \n",
  3878. "checking whether we are cross compiling... no\n",
  3879. "checking for suffix of object files... o\n",
  3880. "checking whether the compiler supports GNU C... yes\n",
  3881. "checking whether gcc accepts -g... yes\n",
  3882. "checking for gcc option to enable C11 features... none needed\n",
  3883. "checking whether gcc understands -c and -o together... yes\n",
  3884. "checking dependency style of gcc... gcc3\n",
  3885. "checking for a sed that does not truncate output... /usr/bin/sed\n",
  3886. "checking for grep that handles long lines and -e... /usr/bin/grep\n",
  3887. "checking for egrep... /usr/bin/grep -E\n",
  3888. "checking for fgrep... /usr/bin/grep -F\n",
  3889. "checking for ld used by gcc... /usr/bin/ld\n",
  3890. "checking if the linker (/usr/bin/ld) is GNU ld... yes\n",
  3891. "checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B\n",
  3892. "checking the name lister (/usr/bin/nm -B) interface... BSD nm\n",
  3893. "checking whether ln -s works... yes\n",
  3894. "checking the maximum length of command line arguments... 1572864\n",
  3895. "checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop\n",
  3896. "checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop\n",
  3897. "checking for /usr/bin/ld option to reload object files... -r\n",
  3898. "checking for objdump... objdump\n",
  3899. "checking how to recognize dependent libraries... pass_all\n",
  3900. "checking for dlltool... no\n",
  3901. "checking how to associate runtime and link libraries... printf %s\\n\n",
  3902. "checking for ar... ar\n",
  3903. "checking for archiver @FILE support... @\n",
  3904. "checking for strip... strip\n",
  3905. "checking for ranlib... ranlib\n",
  3906. "checking command to parse /usr/bin/nm -B output from gcc object... ok\n",
  3907. "checking for sysroot... no\n",
  3908. "checking for a working dd... /usr/bin/dd\n",
  3909. "checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1\n",
  3910. "checking for mt... no\n",
  3911. "checking if : is a manifest tool... no\n",
  3912. "checking for stdio.h... yes\n",
  3913. "checking for stdlib.h... yes\n",
  3914. "checking for string.h... yes\n",
  3915. "checking for inttypes.h... yes\n",
  3916. "checking for stdint.h... yes\n",
  3917. "checking for strings.h... yes\n",
  3918. "checking for sys/stat.h... yes\n",
  3919. "checking for sys/types.h... yes\n",
  3920. "checking for unistd.h... yes\n",
  3921. "checking for vfork.h... no\n",
  3922. "checking for dlfcn.h... yes\n",
  3923. "checking for objdir... .libs\n",
  3924. "checking if gcc supports -fno-rtti -fno-exceptions... no\n",
  3925. "checking for gcc option to produce PIC... -fPIC -DPIC\n",
  3926. "checking if gcc PIC flag -fPIC -DPIC works... yes\n",
  3927. "checking if gcc static flag -static works... yes\n",
  3928. "checking if gcc supports -c -o file.o... yes\n",
  3929. "checking if gcc supports -c -o file.o... (cached) yes\n",
  3930. "checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes\n",
  3931. "checking whether -lc should be explicitly linked in... no\n",
  3932. "checking dynamic linker characteristics... GNU/Linux ld.so\n",
  3933. "checking how to hardcode library paths into programs... immediate\n",
  3934. "checking whether stripping libraries is possible... yes\n",
  3935. "checking if libtool supports shared libraries... yes\n",
  3936. "checking whether to build shared libraries... yes\n",
  3937. "checking whether to build static libraries... yes\n",
  3938. "checking whether make supports nested variables... (cached) yes\n",
  3939. "checking whether make supports nested variables... (cached) yes\n",
  3940. "checking for gcc... (cached) gcc\n",
  3941. "checking whether the compiler supports GNU C... (cached) yes\n",
  3942. "checking whether gcc accepts -g... (cached) yes\n",
  3943. "checking for gcc option to enable C11 features... (cached) none needed\n",
  3944. "checking whether gcc understands -c and -o together... (cached) yes\n",
  3945. "checking dependency style of gcc... (cached) gcc3\n",
  3946. "checking for g++... g++\n",
  3947. "checking whether the compiler supports GNU C++... yes\n",
  3948. "checking whether g++ accepts -g... yes\n",
  3949. "checking for g++ option to enable C++11 features... none needed\n",
  3950. "checking dependency style of g++... gcc3\n",
  3951. "checking how to run the C++ preprocessor... g++ -E\n",
  3952. "checking for ld used by g++... /usr/bin/ld -m elf_x86_64\n",
  3953. "checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes\n",
  3954. "checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes\n",
  3955. "checking for g++ option to produce PIC... -fPIC -DPIC\n",
  3956. "checking if g++ PIC flag -fPIC -DPIC works... yes\n",
  3957. "checking if g++ static flag -static works... yes\n",
  3958. "checking if g++ supports -c -o file.o... yes\n",
  3959. "checking if g++ supports -c -o file.o... (cached) yes\n",
  3960. "checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes\n",
  3961. "checking dynamic linker characteristics... (cached) GNU/Linux ld.so\n",
  3962. "checking how to hardcode library paths into programs... immediate\n",
  3963. "checking whether make sets $(MAKE)... (cached) yes\n",
  3964. "checking whether ln -s works... yes\n",
  3965. "checking for gradle... no\n",
  3966. "checking if gcc supports C99 without any flags... yes\n",
  3967. "checking if gcc supports C99 with the -std=c99 flag... yes\n",
  3968. "checking if gcc supports C99... -std=c99\n",
  3969. "checking if targeting FreeBSD... no\n",
  3970. "checking for endian.h... yes\n",
  3971. "checking for fcntl.h... yes\n",
  3972. "checking for getopt.h... yes\n",
  3973. "checking for locale.h... yes\n",
  3974. "checking for stddef.h... yes\n",
  3975. "checking for stdbool.h... yes\n",
  3976. "checking for sys/endian.h... no\n",
  3977. "checking for sys/time.h... yes\n",
  3978. "checking for wchar.h... yes\n",
  3979. "checking for wctype.h... yes\n",
  3980. "checking for size_t... yes\n",
  3981. "checking for ssize_t... yes\n",
  3982. "checking for uint16_t... yes\n",
  3983. "checking for uint32_t... yes\n",
  3984. "checking for uint64_t... yes\n",
  3985. "checking for pid_t... yes\n",
  3986. "checking for fork... yes\n",
  3987. "checking for vfork... yes\n",
  3988. "checking for working fork... yes\n",
  3989. "checking for working vfork... (cached) yes\n",
  3990. "checking for working strcoll... yes\n",
  3991. "checking for error_at_line... yes\n",
  3992. "checking for dup2... yes\n",
  3993. "checking for getopt_long... yes\n",
  3994. "checking for gettimeofday... yes\n",
  3995. "checking for malloc... yes\n",
  3996. "checking for memchr... yes\n",
  3997. "checking for memmove... yes\n",
  3998. "checking for memset... yes\n",
  3999. "checking for mkdir... yes\n",
  4000. "checking for mkstemp... yes\n",
  4001. "checking for pow... no\n",
  4002. "checking for realloc... yes\n",
  4003. "checking for setlocale... yes\n",
  4004. "checking for sqrt... no\n",
  4005. "checking for strchr... yes\n",
  4006. "checking for strdup... yes\n",
  4007. "checking for strerror... yes\n",
  4008. "checking for strrchr... yes\n",
  4009. "checking for strstr... yes\n",
  4010. "checking for json-c/json.h... yes\n",
  4011. "checking for json_object_from_file in -ljson-c... yes\n",
  4012. "checking for pcaudiolib/audio.h... yes\n",
  4013. "checking for sonic.h... yes\n",
  4014. "checking for sonicCreateStream in -lsonic... yes\n",
  4015. "checking for valgrind/memcheck.h... no\n",
  4016. "checking for ronn... ronn\n",
  4017. "checking for kramdown... kramdown\n",
  4018. "checking whether C compiler accepts -Wimplicit... yes\n",
  4019. "checking whether C compiler accepts -Wint-conversion... yes\n",
  4020. "checking whether C compiler accepts -Wmissing-prototypes... yes\n",
  4021. "checking whether C compiler accepts -Wreturn-type... yes\n",
  4022. "checking whether C compiler accepts -Wuninitialized... yes\n",
  4023. "checking whether C compiler accepts -Wunused... yes\n",
  4024. "checking whether C compiler accepts -Wunused-parameter... yes\n",
  4025. "checking whether C compiler accepts -fwrapv... yes\n",
  4026. "checking that generated files are newer than configure... done\n",
  4027. "configure: creating ./config.status\n",
  4028. "config.status: creating Makefile\n",
  4029. "config.status: creating espeak-ng.pc\n",
  4030. "config.status: creating config.h\n",
  4031. "config.status: executing depfiles commands\n",
  4032. "config.status: executing libtool commands\n",
  4033. "configure:\n",
  4034. "\n",
  4035. " Configuration for eSpeak NG complete.\n",
  4036. "\n",
  4037. " Source code location: .\n",
  4038. "\n",
  4039. " C99 Compiler: gcc\n",
  4040. " C99 Compiler flags: -fwrapv -Wunused-parameter -Wunused -Wuninitialized -Wreturn-type -Wmissing-prototypes -Wint-conversion -Wimplicit -g -O2 -std=c99\n",
  4041. "\n",
  4042. " Sonic: yes\n",
  4043. " PCAudioLib: yes\n",
  4044. "\n",
  4045. " gradle (Android): \n",
  4046. "\n",
  4047. " Klatt: yes\n",
  4048. " speechPlayer: yes\n",
  4049. " MBROLA: yes\n",
  4050. " Async: yes\n",
  4051. "\n",
  4052. " Extended Dictionaries:\n",
  4053. " Russian: yes\n",
  4054. " Chinese (Mandarin): yes\n",
  4055. " Chinese (Cantonese): yes\n",
  4056. "\n",
  4057. "Makefile:3129: warning: ignoring prerequisites on suffix rule definition\n",
  4058. "make all-am\n",
  4059. "make[1]: Entering directory '/content/espeak-ng'\n",
  4060. "Makefile:3129: warning: ignoring prerequisites on suffix rule definition\n",
  4061. " CC src/speak-ng.o\n",
  4062. "In file included from \u001b[01m\u001b[Ksrc/speak-ng.c:23\u001b[m\u001b[K:\n",
  4063. "\u001b[01m\u001b[Ksrc/espeak-ng.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[Kmain\u001b[m\u001b[K’:\n",
  4064. "\u001b[01m\u001b[Ksrc/espeak-ng.c:832:17:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4065. " 832 | \u001b[01;35m\u001b[Kfread(p_text, 1, filesize, f_text)\u001b[m\u001b[K;\n",
  4066. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4067. " CC src/ucd-tools/src/libespeak_ng_la-case.lo\n",
  4068. " CC src/ucd-tools/src/libespeak_ng_la-categories.lo\n",
  4069. " CC src/ucd-tools/src/libespeak_ng_la-ctype.lo\n",
  4070. " CC src/ucd-tools/src/libespeak_ng_la-proplist.lo\n",
  4071. " CC src/ucd-tools/src/libespeak_ng_la-scripts.lo\n",
  4072. " CC src/ucd-tools/src/libespeak_ng_la-tostring.lo\n",
  4073. " CC src/libespeak-ng/la-common.lo\n",
  4074. " CC src/libespeak-ng/la-compiledata.lo\n",
  4075. "\u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[KLoadDataFile.part.0.constprop.isra\u001b[m\u001b[K’:\n",
  4076. "\u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:924:47:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%s\u001b[m\u001b[K’ directive output may be truncated writing up to 199 bytes into a region of size 180 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-truncation=\u0007-Wformat-truncation=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4077. " 924 | snprintf(filename, sizeof(filename), \"\u001b[01;35m\u001b[K%s\u001b[m\u001b[K/%s\", ctx->phsrc, path);\n",
  4078. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K\n",
  4079. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4080. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4081. " from \u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:27\u001b[m\u001b[K:\n",
  4082. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:71:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___snprintf_chk\u001b[m\u001b[K’ output 2 or more bytes (assuming 201) into a destination of size 180\n",
  4083. " 71 | return \u001b[01;36m\u001b[K__builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4084. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4085. " 72 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4086. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4087. " 73 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4088. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4089. "\u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[Kespeak_ng_CompilePhonemeDataPath\u001b[m\u001b[K’:\n",
  4090. "\u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:2368:27:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K/phonemes\u001b[m\u001b[K’ directive writing 9 bytes into a region of size between 1 and 200 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4091. " 2368 | sprintf(fname, \"%s\u001b[01;35m\u001b[K/phonemes\u001b[m\u001b[K\", ctx->phsrc);\n",
  4092. " | \u001b[01;35m\u001b[K^~~~~~~~~\u001b[m\u001b[K\n",
  4093. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4094. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4095. " from \u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:27\u001b[m\u001b[K:\n",
  4096. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 10 and 209 bytes into a destination of size 200\n",
  4097. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4098. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4099. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4100. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4101. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4102. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4103. "\u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:2376:28:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%s\u001b[m\u001b[K’ directive writing 17 bytes into a region of size between 0 and 199 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4104. " 2376 | sprintf(fname, \"%s/\u001b[01;35m\u001b[K%s\u001b[m\u001b[K\", phdst, \u001b[32m\u001b[K\"phondata-manifest\"\u001b[m\u001b[K);\n",
  4105. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K \u001b[32m\u001b[K~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4106. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4107. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4108. " from \u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:27\u001b[m\u001b[K:\n",
  4109. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 19 and 218 bytes into a destination of size 200\n",
  4110. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4111. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4112. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4113. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4114. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4115. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4116. "\u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:2394:28:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%s\u001b[m\u001b[K’ directive writing 8 bytes into a region of size between 0 and 199 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4117. " 2394 | sprintf(fname, \"%s/\u001b[01;35m\u001b[K%s\u001b[m\u001b[K\", phdst, \u001b[32m\u001b[K\"phondata\"\u001b[m\u001b[K);\n",
  4118. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K \u001b[32m\u001b[K~~~~~~~~~~\u001b[m\u001b[K\n",
  4119. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4120. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4121. " from \u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:27\u001b[m\u001b[K:\n",
  4122. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 10 and 209 bytes into a destination of size 200\n",
  4123. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4124. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4125. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4126. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4127. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4128. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4129. "\u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:2404:28:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%s\u001b[m\u001b[K’ directive writing 9 bytes into a region of size between 0 and 199 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4130. " 2404 | sprintf(fname, \"%s/\u001b[01;35m\u001b[K%s\u001b[m\u001b[K\", phdst, \u001b[32m\u001b[K\"phonindex\"\u001b[m\u001b[K);\n",
  4131. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K \u001b[32m\u001b[K~~~~~~~~~~~\u001b[m\u001b[K\n",
  4132. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4133. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4134. " from \u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:27\u001b[m\u001b[K:\n",
  4135. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 11 and 210 bytes into a destination of size 200\n",
  4136. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4137. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4138. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4139. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4140. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4141. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4142. "\u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:2415:28:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%s\u001b[m\u001b[K’ directive writing 7 bytes into a region of size between 0 and 199 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4143. " 2415 | sprintf(fname, \"%s/\u001b[01;35m\u001b[K%s\u001b[m\u001b[K\", phdst, \u001b[32m\u001b[K\"phontab\"\u001b[m\u001b[K);\n",
  4144. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K \u001b[32m\u001b[K~~~~~~~~~\u001b[m\u001b[K\n",
  4145. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4146. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4147. " from \u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:27\u001b[m\u001b[K:\n",
  4148. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 9 and 208 bytes into a destination of size 200\n",
  4149. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4150. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4151. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4152. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4153. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4154. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4155. "\u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:2427:27:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K/compile_prog_log\u001b[m\u001b[K’ directive writing 17 bytes into a region of size between 1 and 200 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4156. " 2427 | sprintf(fname, \"%s\u001b[01;35m\u001b[K/compile_prog_log\u001b[m\u001b[K\", ctx->phsrc);\n",
  4157. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4158. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4159. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4160. " from \u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:27\u001b[m\u001b[K:\n",
  4161. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 18 and 217 bytes into a destination of size 200\n",
  4162. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4163. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4164. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4165. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4166. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4167. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4168. "\u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:2278:42:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%s\u001b[m\u001b[K’ directive writing up to 255 bytes into a region of size between 80 and 279 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4169. " 2278 | sprintf(buf, \"%s/\u001b[01;35m\u001b[K%s\u001b[m\u001b[K\", ctx->phsrc, ctx->item_string);\n",
  4170. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K\n",
  4171. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4172. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4173. " from \u001b[01m\u001b[Ksrc/libespeak-ng/compiledata.c:27\u001b[m\u001b[K:\n",
  4174. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 2 and 456 bytes into a destination of size 280\n",
  4175. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4176. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4177. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4178. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4179. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4180. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4181. " CC src/libespeak-ng/la-compiledict.lo\n",
  4182. "\u001b[01m\u001b[Ksrc/libespeak-ng/compiledict.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[Kespeak_ng_CompileDictionary\u001b[m\u001b[K’:\n",
  4183. "\u001b[01m\u001b[Ksrc/libespeak-ng/compiledict.c:1558:30:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[Krules.txt\u001b[m\u001b[K’ directive writing 9 bytes into a region of size between 6 and 205 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4184. " 1558 | sprintf(fname_in, \"%s\u001b[01;35m\u001b[Krules.txt\u001b[m\u001b[K\", path);\n",
  4185. " | \u001b[01;35m\u001b[K^~~~~~~~~\u001b[m\u001b[K\n",
  4186. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4187. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4188. " from \u001b[01m\u001b[Ksrc/libespeak-ng/compiledict.c:27\u001b[m\u001b[K:\n",
  4189. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 10 and 209 bytes into a destination of size 205\n",
  4190. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4191. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4192. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4193. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4194. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4195. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4196. "\u001b[01m\u001b[Ksrc/libespeak-ng/compiledict.c:1567:33:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%s\u001b[m\u001b[K’ directive writing up to 39 bytes into a region of size between 15 and 174 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4197. " 1567 | sprintf(fname_out, \"%s%c\u001b[01;35m\u001b[K%s\u001b[m\u001b[K_dict\", path_home, PATHSEP, dict_name);\n",
  4198. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K\n",
  4199. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4200. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4201. " from \u001b[01m\u001b[Ksrc/libespeak-ng/compiledict.c:27\u001b[m\u001b[K:\n",
  4202. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 7 and 205 bytes into a destination of size 175\n",
  4203. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4204. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4205. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4206. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4207. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4208. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4209. " CC src/libespeak-ng/la-dictionary.lo\n",
  4210. " CC src/libespeak-ng/la-encoding.lo\n",
  4211. " CC src/libespeak-ng/la-error.lo\n",
  4212. " CC src/libespeak-ng/la-espeak_api.lo\n",
  4213. " CC src/libespeak-ng/la-ieee80.lo\n",
  4214. " CC src/libespeak-ng/la-intonation.lo\n",
  4215. " CC src/libespeak-ng/la-langopts.lo\n",
  4216. " CC src/libespeak-ng/la-mnemonics.lo\n",
  4217. " CC src/libespeak-ng/la-numbers.lo\n",
  4218. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[KLookupThousands\u001b[m\u001b[K’:\n",
  4219. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:936:57:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ may write a terminating nul past the end of the destination [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4220. " 936 | sprintf(string, \"_%dM%do\u001b[01;35m\u001b[K\"\u001b[m\u001b[K, value, thousandplex);\n",
  4221. " | \u001b[01;35m\u001b[K^\u001b[m\u001b[K\n",
  4222. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4223. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4224. " from \u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:25\u001b[m\u001b[K:\n",
  4225. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 6 and 25 bytes into a destination of size 14\n",
  4226. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4227. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4228. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4229. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4230. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4231. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4232. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:941:57:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ may write a terminating nul past the end of the destination [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4233. " 941 | sprintf(string, \"_%dM%de\u001b[01;35m\u001b[K\"\u001b[m\u001b[K, value, thousandplex);\n",
  4234. " | \u001b[01;35m\u001b[K^\u001b[m\u001b[K\n",
  4235. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4236. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4237. " from \u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:25\u001b[m\u001b[K:\n",
  4238. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 6 and 25 bytes into a destination of size 14\n",
  4239. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4240. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4241. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4242. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4243. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4244. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4245. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:946:57:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ may write a terminating nul past the end of the destination [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4246. " 946 | sprintf(string, \"_%dM%dx\u001b[01;35m\u001b[K\"\u001b[m\u001b[K, value, thousandplex);\n",
  4247. " | \u001b[01;35m\u001b[K^\u001b[m\u001b[K\n",
  4248. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4249. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4250. " from \u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:25\u001b[m\u001b[K:\n",
  4251. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 6 and 25 bytes into a destination of size 14\n",
  4252. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4253. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4254. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4255. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4256. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4257. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4258. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[KLookupNum2\u001b[m\u001b[K’:\n",
  4259. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:1117:62:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%c\u001b[m\u001b[K’ directive writing 1 byte into a region of size between 0 and 9 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4260. " 1117 | sprintf(string, \"_%dX\u001b[01;35m\u001b[K%c\u001b[m\u001b[K\", tens, ord_type);\n",
  4261. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K\n",
  4262. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4263. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4264. " from \u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:25\u001b[m\u001b[K:\n",
  4265. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 5 and 14 bytes into a destination of size 12\n",
  4266. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4267. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4268. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4269. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4270. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4271. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4272. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:1117:62:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%c\u001b[m\u001b[K’ directive writing 1 byte into a region of size between 0 and 9 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4273. " 1117 | sprintf(string, \"_%dX\u001b[01;35m\u001b[K%c\u001b[m\u001b[K\", tens, ord_type);\n",
  4274. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K\n",
  4275. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4276. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4277. " from \u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:25\u001b[m\u001b[K:\n",
  4278. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 5 and 14 bytes into a destination of size 12\n",
  4279. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4280. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4281. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4282. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4283. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4284. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4285. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:1131:70:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ may write a terminating nul past the end of the destination [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4286. " 1131 | sprintf(string, \"_%dX\u001b[01;35m\u001b[K\"\u001b[m\u001b[K, tens);\n",
  4287. " | \u001b[01;35m\u001b[K^\u001b[m\u001b[K\n",
  4288. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4289. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4290. " from \u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:25\u001b[m\u001b[K:\n",
  4291. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 4 and 13 bytes into a destination of size 12\n",
  4292. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4293. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4294. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4295. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4296. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4297. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4298. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:1129:69:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[KXf\u001b[m\u001b[K’ directive writing 2 bytes into a region of size between 1 and 10 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4299. " 1129 | sprintf(string, \"_%d\u001b[01;35m\u001b[KXf\u001b[m\u001b[K\", tens);\n",
  4300. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K\n",
  4301. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4302. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4303. " from \u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:25\u001b[m\u001b[K:\n",
  4304. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 5 and 14 bytes into a destination of size 12\n",
  4305. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4306. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4307. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4308. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4309. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4310. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4311. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[KLookupNum3.isra\u001b[m\u001b[K’:\n",
  4312. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:1331:60:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%s\u001b[m\u001b[K’ directive writing up to 159 bytes into a region of size 49 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4313. " 1331 | sprintf(ph_thousands, \"%s%c\u001b[01;35m\u001b[K%s\u001b[m\u001b[K%c\", ph_digits, phonEND_WORD, \u001b[32m\u001b[Kph_10T\u001b[m\u001b[K, phonEND_WORD);\n",
  4314. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K \u001b[32m\u001b[K~~~~~~\u001b[m\u001b[K\n",
  4315. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4316. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4317. " from \u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:25\u001b[m\u001b[K:\n",
  4318. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output 3 or more bytes (assuming 162) into a destination of size 50\n",
  4319. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4320. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4321. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4322. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4323. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4324. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4325. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:1329:56:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%s\u001b[m\u001b[K’ directive writing up to 159 bytes into a region of size 50 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4326. " 1329 | sprintf(ph_thousands, \"\u001b[01;35m\u001b[K%s\u001b[m\u001b[K%c%s%c\", \u001b[32m\u001b[Kph_10T\u001b[m\u001b[K, phonEND_WORD, ph_digits, phonEND_WORD);\n",
  4327. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K \u001b[32m\u001b[K~~~~~~\u001b[m\u001b[K\n",
  4328. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4329. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4330. " from \u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:25\u001b[m\u001b[K:\n",
  4331. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output 3 or more bytes (assuming 162) into a destination of size 50\n",
  4332. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4333. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4334. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4335. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4336. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4337. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4338. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:1352:55:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ may write a terminating nul past the end of the destination [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4339. " 1352 | sprintf(string, \"_%dCo\u001b[01;35m\u001b[K\"\u001b[m\u001b[K, hundreds);\n",
  4340. " | \u001b[01;35m\u001b[K^\u001b[m\u001b[K\n",
  4341. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4342. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4343. " from \u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:25\u001b[m\u001b[K:\n",
  4344. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 5 and 13 bytes into a destination of size 12\n",
  4345. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4346. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4347. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4348. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4349. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4350. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4351. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:1352:55:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ may write a terminating nul past the end of the destination [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4352. " 1352 | sprintf(string, \"_%dCo\u001b[01;35m\u001b[K\"\u001b[m\u001b[K, hundreds);\n",
  4353. " | \u001b[01;35m\u001b[K^\u001b[m\u001b[K\n",
  4354. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4355. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4356. " from \u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:25\u001b[m\u001b[K:\n",
  4357. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 5 and 13 bytes into a destination of size 12\n",
  4358. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4359. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4360. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4361. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4362. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4363. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4364. "\u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:1370:71:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ may write a terminating nul past the end of the destination [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4365. " 1370 | sprintf(string, \"_%dC0\u001b[01;35m\u001b[K\"\u001b[m\u001b[K, hundreds);\n",
  4366. " | \u001b[01;35m\u001b[K^\u001b[m\u001b[K\n",
  4367. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4368. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4369. " from \u001b[01m\u001b[Ksrc/libespeak-ng/numbers.c:25\u001b[m\u001b[K:\n",
  4370. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 5 and 13 bytes into a destination of size 12\n",
  4371. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4372. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4373. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4374. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4375. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4376. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4377. " CC src/libespeak-ng/la-readclause.lo\n",
  4378. " CC src/libespeak-ng/la-phoneme.lo\n",
  4379. " CC src/libespeak-ng/la-phonemelist.lo\n",
  4380. " CC src/libespeak-ng/la-setlengths.lo\n",
  4381. " CC src/libespeak-ng/la-soundicon.lo\n",
  4382. " CC src/libespeak-ng/la-spect.lo\n",
  4383. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[KLoadSpectSeq\u001b[m\u001b[K’:\n",
  4384. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:304:9:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4385. " 304 | \u001b[01;35m\u001b[Kfread(&id1, sizeof(uint32_t), 1, stream)\u001b[m\u001b[K;\n",
  4386. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4387. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:306:9:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4388. " 306 | \u001b[01;35m\u001b[Kfread(&id2, sizeof(uint32_t), 1, stream)\u001b[m\u001b[K;\n",
  4389. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4390. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:321:9:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4391. " 321 | \u001b[01;35m\u001b[Kfread(&name_len, sizeof(uint32_t), 1, stream)\u001b[m\u001b[K;\n",
  4392. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4393. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:328:17:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4394. " 328 | \u001b[01;35m\u001b[Kfread(spect->name, sizeof(char), name_len, stream)\u001b[m\u001b[K;\n",
  4395. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4396. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:332:9:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4397. " 332 | \u001b[01;35m\u001b[Kfread(&n, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4398. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4399. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:333:9:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4400. " 333 | \u001b[01;35m\u001b[Kfread(&spect->amplitude, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4401. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4402. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:334:9:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4403. " 334 | \u001b[01;35m\u001b[Kfread(&spect->max_y, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4404. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4405. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:335:9:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4406. " 335 | \u001b[01;35m\u001b[Kfread(&temp, sizeof(short), 1, stream)\u001b[m\u001b[K; // unused\n",
  4407. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4408. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[KLoadFrame\u001b[m\u001b[K’:\n",
  4409. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:147:9:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4410. " 147 | \u001b[01;35m\u001b[Kfread(&frame->nx, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4411. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4412. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:148:9:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4413. " 148 | \u001b[01;35m\u001b[Kfread(&frame->markers, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4414. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4415. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:149:9:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4416. " 149 | \u001b[01;35m\u001b[Kfread(&frame->amp_adjust, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4417. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4418. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:155:17:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4419. " 155 | \u001b[01;35m\u001b[Kfread(&ix, sizeof(short), 1, stream)\u001b[m\u001b[K; // spare\n",
  4420. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4421. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:156:17:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4422. " 156 | \u001b[01;35m\u001b[Kfread(&ix, sizeof(short), 1, stream)\u001b[m\u001b[K; // spare\n",
  4423. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4424. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:160:17:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4425. " 160 | \u001b[01;35m\u001b[Kfread(&frame->formants[ix].freq, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4426. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4427. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:161:17:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4428. " 161 | \u001b[01;35m\u001b[Kfread(&frame->formants[ix].bandw, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4429. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4430. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:162:17:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4431. " 162 | \u001b[01;35m\u001b[Kfread(&frame->peaks[ix].pkfreq, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4432. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4433. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:163:17:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4434. " 163 | \u001b[01;35m\u001b[Kfread(&frame->peaks[ix].pkheight, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4435. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4436. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:164:17:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4437. " 164 | \u001b[01;35m\u001b[Kfread(&frame->peaks[ix].pkwidth, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4438. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4439. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:165:17:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4440. " 165 | \u001b[01;35m\u001b[Kfread(&frame->peaks[ix].pkright, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4441. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4442. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:176:25:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4443. " 176 | \u001b[01;35m\u001b[Kfread(&frame->peaks[ix].klt_bw, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4444. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4445. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:177:25:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4446. " 177 | \u001b[01;35m\u001b[Kfread(&frame->peaks[ix].klt_ap, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4447. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4448. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:178:25:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4449. " 178 | \u001b[01;35m\u001b[Kfread(&frame->peaks[ix].klt_bp, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4450. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4451. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:188:25:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4452. " 188 | \u001b[01;35m\u001b[Kfread(frame->klatt_param + ix, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4453. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4454. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:200:17:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4455. " 200 | \u001b[01;35m\u001b[Kfread(&x, sizeof(short), 1, stream)\u001b[m\u001b[K;\n",
  4456. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4457. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[Kread_double\u001b[m\u001b[K’:\n",
  4458. "\u001b[01m\u001b[Ksrc/libespeak-ng/spect.c:54:9:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4459. " 54 | \u001b[01;35m\u001b[Kfread(bytes, sizeof(char), 10, stream)\u001b[m\u001b[K;\n",
  4460. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4461. " CC src/libespeak-ng/la-speech.lo\n",
  4462. " CC src/libespeak-ng/la-ssml.lo\n",
  4463. "\u001b[01m\u001b[Ksrc/libespeak-ng/ssml.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[KParseSsmlReference\u001b[m\u001b[K’:\n",
  4464. "\u001b[01m\u001b[Ksrc/libespeak-ng/ssml.c:1015:50:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kformat ‘\u001b[01m\u001b[K%x\u001b[m\u001b[K’ expects argument of type ‘\u001b[01m\u001b[Kunsigned int *\u001b[m\u001b[K’, but argument 3 has type ‘\u001b[01m\u001b[Kint *\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat=\u0007-Wformat=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4465. " 1015 | return sscanf(&ref[2], \"\u001b[01;35m\u001b[K%x\u001b[m\u001b[K\", \u001b[32m\u001b[Kc1\u001b[m\u001b[K);\n",
  4466. " | \u001b[01;35m\u001b[K~^\u001b[m\u001b[K \u001b[32m\u001b[K~~\u001b[m\u001b[K\n",
  4467. " | \u001b[01;35m\u001b[K|\u001b[m\u001b[K \u001b[32m\u001b[K|\u001b[m\u001b[K\n",
  4468. " | \u001b[01;35m\u001b[K|\u001b[m\u001b[K \u001b[32m\u001b[Kint *\u001b[m\u001b[K\n",
  4469. " | \u001b[01;35m\u001b[Kunsigned int *\u001b[m\u001b[K\n",
  4470. " | \u001b[32m\u001b[K%x\u001b[m\u001b[K\n",
  4471. " CC src/libespeak-ng/la-synthdata.lo\n",
  4472. " CC src/libespeak-ng/la-synthesize.lo\n",
  4473. " CC src/libespeak-ng/la-translate.lo\n",
  4474. " CC src/libespeak-ng/la-translateword.lo\n",
  4475. "\u001b[01m\u001b[Ksrc/libespeak-ng/translateword.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[KGenerateHomographPhonemes\u001b[m\u001b[K’:\n",
  4476. "\u001b[01m\u001b[Ksrc/libespeak-ng/translateword.c:271:46:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kunused variable ‘\u001b[01m\u001b[Kitem\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-variable\u0007-Wunused-variable\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4477. " 271 | json_object *\u001b[01;35m\u001b[Kitem\u001b[m\u001b[K = json_object_array_get_idx(debug_pron_val, i);\n",
  4478. " | \u001b[01;35m\u001b[K^~~~\u001b[m\u001b[K\n",
  4479. "\u001b[01m\u001b[Ksrc/libespeak-ng/translateword.c:264:29:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kunused variable ‘\u001b[01m\u001b[Kdebug_pron_key\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-variable\u0007-Wunused-variable\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4480. " 264 | const char *\u001b[01;35m\u001b[Kdebug_pron_key\u001b[m\u001b[K = json_object_iter_peek_name(&it);\n",
  4481. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4482. " CC src/libespeak-ng/la-tr_languages.lo\n",
  4483. " CC src/libespeak-ng/la-voices.lo\n",
  4484. "\u001b[01m\u001b[Ksrc/libespeak-ng/voices.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[KSetVoiceScores\u001b[m\u001b[K’:\n",
  4485. "\u001b[01m\u001b[Ksrc/libespeak-ng/voices.c:977:41:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%s\u001b[m\u001b[K’ directive writing up to 79 bytes into a region of size between 73 and 232 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4486. " 977 | sprintf(buf, \"%s/voices/\u001b[01;35m\u001b[K%s\u001b[m\u001b[K\", path_home, \u001b[32m\u001b[Klanguage\u001b[m\u001b[K);\n",
  4487. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K \u001b[32m\u001b[K~~~~~~~~\u001b[m\u001b[K\n",
  4488. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4489. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4490. " from \u001b[01m\u001b[Ksrc/libespeak-ng/voices.c:27\u001b[m\u001b[K:\n",
  4491. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 9 and 247 bytes into a destination of size 240\n",
  4492. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4493. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4494. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4495. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4496. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4497. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4498. " CC src/libespeak-ng/la-wavegen.lo\n",
  4499. " CC src/libespeak-ng/la-klatt.lo\n",
  4500. " CC src/libespeak-ng/la-sPlayer.lo\n",
  4501. " CXX src/speechPlayer/src/frame.lo\n",
  4502. " CXX src/speechPlayer/src/speechPlayer.lo\n",
  4503. " CXX src/speechPlayer/src/speechWaveGenerator.lo\n",
  4504. " CC src/libespeak-ng/la-mbrowrap.lo\n",
  4505. "\u001b[01m\u001b[Ksrc/libespeak-ng/mbrowrap.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[Kmbrola_has_errors\u001b[m\u001b[K’:\n",
  4506. "\u001b[01m\u001b[Ksrc/libespeak-ng/mbrowrap.c:366:43:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%s\u001b[m\u001b[K’ directive output may be truncated writing up to 255 bytes into a region of size 160 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-truncation=\u0007-Wformat-truncation=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4507. " 366 | \"\u001b[01;35m\u001b[K%s\u001b[m\u001b[K\", buf_ptr);\n",
  4508. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K\n",
  4509. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4510. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4511. " from \u001b[01m\u001b[Ksrc/libespeak-ng/mbrowrap.c:81\u001b[m\u001b[K:\n",
  4512. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:71:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin_snprintf\u001b[m\u001b[K’ output between 1 and 256 bytes into a destination of size 160\n",
  4513. " 71 | return \u001b[01;36m\u001b[K__builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4514. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4515. " 72 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4516. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4517. " 73 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4518. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4519. " CC src/libespeak-ng/la-synth_mbrola.lo\n",
  4520. " CC src/libespeak-ng/la-compilembrola.lo\n",
  4521. "\u001b[01m\u001b[Ksrc/libespeak-ng/compilembrola.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[Kespeak_ng_CompileMbrolaVoice\u001b[m\u001b[K’:\n",
  4522. "\u001b[01m\u001b[Ksrc/libespeak-ng/compilembrola.c:109:36:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[K‘\u001b[01m\u001b[K%s\u001b[m\u001b[K’ directive writing up to 39 bytes into a region of size between 20 and 179 [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat-overflow=\u0007-Wformat-overflow=\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4523. " 109 | sprintf(buf, \"%s/mbrola_ph/\u001b[01;35m\u001b[K%s\u001b[m\u001b[K_phtrans\", path_home, \u001b[32m\u001b[Kmbrola_voice\u001b[m\u001b[K);\n",
  4524. " | \u001b[01;35m\u001b[K^~\u001b[m\u001b[K \u001b[32m\u001b[K~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4525. "In file included from \u001b[01m\u001b[K/usr/include/stdio.h:894\u001b[m\u001b[K,\n",
  4526. " from \u001b[01m\u001b[Ksrc/include/compat/stdio.h:30\u001b[m\u001b[K,\n",
  4527. " from \u001b[01m\u001b[Ksrc/libespeak-ng/compilembrola.c:24\u001b[m\u001b[K:\n",
  4528. "\u001b[01m\u001b[K/usr/include/x86_64-linux-gnu/bits/stdio2.h:38:10:\u001b[m\u001b[K \u001b[01;36m\u001b[Knote: \u001b[m\u001b[K‘\u001b[01m\u001b[K__builtin___sprintf_chk\u001b[m\u001b[K’ output between 20 and 218 bytes into a destination of size 190\n",
  4529. " 38 | return \u001b[01;36m\u001b[K__builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,\u001b[m\u001b[K\n",
  4530. " | \u001b[01;36m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4531. " 39 | \u001b[01;36m\u001b[K __glibc_objsize (__s), __fmt,\u001b[m\u001b[K\n",
  4532. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4533. " 40 | \u001b[01;36m\u001b[K __va_arg_pack ())\u001b[m\u001b[K;\n",
  4534. " | \u001b[01;36m\u001b[K~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4535. " CC src/libespeak-ng/la-espeak_command.lo\n",
  4536. " CC src/libespeak-ng/la-event.lo\n",
  4537. " CC src/libespeak-ng/la-fifo.lo\n",
  4538. " CXXLD src/libespeak-ng.la\n",
  4539. " CXXLD src/speak-ng\n",
  4540. " CC src/espeak-ng.o\n",
  4541. "\u001b[01m\u001b[Ksrc/espeak-ng.c:\u001b[m\u001b[K In function ‘\u001b[01m\u001b[Kmain\u001b[m\u001b[K’:\n",
  4542. "\u001b[01m\u001b[Ksrc/espeak-ng.c:832:17:\u001b[m\u001b[K \u001b[01;35m\u001b[Kwarning: \u001b[m\u001b[Kignoring return value of ‘\u001b[01m\u001b[Kfread\u001b[m\u001b[K’ declared with attribute ‘\u001b[01m\u001b[Kwarn_unused_result\u001b[m\u001b[K’ [\u001b[01;35m\u001b[K\u001b]8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result\u0007-Wunused-result\u001b]8;;\u0007\u001b[m\u001b[K]\n",
  4543. " 832 | \u001b[01;35m\u001b[Kfread(p_text, 1, filesize, f_text)\u001b[m\u001b[K;\n",
  4544. " | \u001b[01;35m\u001b[K^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\u001b[m\u001b[K\n",
  4545. " CXXLD src/espeak-ng\n",
  4546. "ronn --roff -o src src/speak-ng.1.ronn\n",
  4547. " roff: src/speak-ng.1 \n",
  4548. "warn: unrecognized inline tag: [\"hr\"]\n",
  4549. "warn: unrecognized inline tag: [\"h2\"]\n",
  4550. "warn: unrecognized inline tag: [\"li\"]\n",
  4551. "ronn --roff -o src src/espeak-ng.1.ronn\n",
  4552. " roff: src/espeak-ng.1 \n",
  4553. "warn: unrecognized inline tag: [\"hr\"]\n",
  4554. "warn: unrecognized inline tag: [\"h2\"]\n",
  4555. "warn: unrecognized inline tag: [\"li\"]\n",
  4556. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-intonations && \\\n",
  4557. "\tESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-phonemes && \\\n",
  4558. "\ttouch phsource/phonemes.stamp\n",
  4559. "Compiled 34 intonation tunes: 0 errors.\n",
  4560. "Compiling phoneme data: /content/espeak-ng/espeak-ng-data/../phsource/phonemes\n",
  4561. "\n",
  4562. "Refs 4914, Reused 3937\n",
  4563. "Compiled phonemes: 0 errors.\n",
  4564. "touch dictsource/af_extra\n",
  4565. " DICT espeak-ng-data/af_dict\n",
  4566. "rm -f espeak-ng-data/af_dict\n",
  4567. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"af\"\n",
  4568. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/af_dict'\n",
  4569. "Using phonemetable: 'af'\n",
  4570. "Compiling: 'af_list'\n",
  4571. "\t1584 entries\n",
  4572. "Compiling: 'af_emoji'\n",
  4573. "\t1639 entries\n",
  4574. "Compiling: 'af_extra'\n",
  4575. "\t0 entries\n",
  4576. "Compiling: 'af_rules'\n",
  4577. "\t5202 rules, 60 groups (0)\n",
  4578. "\n",
  4579. "touch dictsource/am_extra\n",
  4580. " DICT espeak-ng-data/am_dict\n",
  4581. "rm -f espeak-ng-data/am_dict\n",
  4582. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"am\"\n",
  4583. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/am_dict'\n",
  4584. "Using phonemetable: 'am'\n",
  4585. "Compiling: 'am_list'\n",
  4586. "\t31 entries\n",
  4587. "Compiling: 'am_emoji'\n",
  4588. "\t1639 entries\n",
  4589. "Compiling: 'am_extra'\n",
  4590. "\t0 entries\n",
  4591. "Compiling: 'am_rules'\n",
  4592. "\t345 rules, 7 groups (0)\n",
  4593. "\n",
  4594. "touch dictsource/an_extra\n",
  4595. " DICT espeak-ng-data/an_dict\n",
  4596. "rm -f espeak-ng-data/an_dict\n",
  4597. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"an\"\n",
  4598. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/an_dict'\n",
  4599. "Using phonemetable: 'an'\n",
  4600. "Compiling: 'an_list'\n",
  4601. "\t484 entries\n",
  4602. "Compiling: 'an_extra'\n",
  4603. "\t0 entries\n",
  4604. "Compiling: 'an_rules'\n",
  4605. "\t184 rules, 29 groups (0)\n",
  4606. "\n",
  4607. "touch dictsource/ar_extra\n",
  4608. " DICT espeak-ng-data/ar_dict\n",
  4609. "rm -f espeak-ng-data/ar_dict\n",
  4610. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ar\"\n",
  4611. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ar_dict'\n",
  4612. "Using phonemetable: 'ar'\n",
  4613. "Compiling: 'ar_listx'\n",
  4614. "\t30089 entries\n",
  4615. "Compiling: 'ar_list'\n",
  4616. "\t252 entries\n",
  4617. "Compiling: 'ar_emoji'\n",
  4618. "\t1639 entries\n",
  4619. "Compiling: 'ar_extra'\n",
  4620. "\t0 entries\n",
  4621. "Compiling: 'ar_rules'\n",
  4622. "\t383 rules, 39 groups (37)\n",
  4623. "\n",
  4624. "touch dictsource/as_extra\n",
  4625. " DICT espeak-ng-data/as_dict\n",
  4626. "rm -f espeak-ng-data/as_dict\n",
  4627. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"as\"\n",
  4628. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/as_dict'\n",
  4629. "Using phonemetable: 'as'\n",
  4630. "Compiling: 'as_list'\n",
  4631. "\t209 entries\n",
  4632. "Compiling: 'as_extra'\n",
  4633. "\t0 entries\n",
  4634. "Compiling: 'as_rules'\n",
  4635. "\t146 rules, 66 groups (66)\n",
  4636. "\n",
  4637. "touch dictsource/az_extra\n",
  4638. " DICT espeak-ng-data/az_dict\n",
  4639. "rm -f espeak-ng-data/az_dict\n",
  4640. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"az\"\n",
  4641. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/az_dict'\n",
  4642. "Using phonemetable: 'az'\n",
  4643. "Compiling: 'az_list'\n",
  4644. "\t84 entries\n",
  4645. "Compiling: 'az_emoji'\n",
  4646. "\t1639 entries\n",
  4647. "Compiling: 'az_extra'\n",
  4648. "\t0 entries\n",
  4649. "Compiling: 'az_rules'\n",
  4650. "\t58 rules, 34 groups (0)\n",
  4651. "\n",
  4652. " DICT espeak-ng-data/ba_dict\n",
  4653. "rm -f espeak-ng-data/ba_dict\n",
  4654. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ba\"\n",
  4655. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ba_dict'\n",
  4656. "Using phonemetable: 'ba'\n",
  4657. "Compiling: 'ba_list'\n",
  4658. "\t70 entries\n",
  4659. "Compiling: 'ba_rules'\n",
  4660. "\t52 rules, 44 groups (0)\n",
  4661. "\n",
  4662. " DICT espeak-ng-data/be_dict\n",
  4663. "rm -f espeak-ng-data/be_dict\n",
  4664. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"be\"\n",
  4665. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/be_dict'\n",
  4666. "Using phonemetable: 'be'\n",
  4667. "Compiling: 'be_list'\n",
  4668. "\t77 entries\n",
  4669. "Compiling: 'be_rules'\n",
  4670. "\t83 rules, 33 groups (32)\n",
  4671. "\n",
  4672. "touch dictsource/bg_extra\n",
  4673. " DICT espeak-ng-data/bg_dict\n",
  4674. "rm -f espeak-ng-data/bg_dict\n",
  4675. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"bg\"\n",
  4676. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/bg_dict'\n",
  4677. "Using phonemetable: 'bg'\n",
  4678. "Compiling: 'bg_listx'\n",
  4679. "\t2790 entries\n",
  4680. "Compiling: 'bg_list'\n",
  4681. "\t231 entries\n",
  4682. "Compiling: 'bg_emoji'\n",
  4683. "\t1639 entries\n",
  4684. "Compiling: 'bg_extra'\n",
  4685. "\t0 entries\n",
  4686. "Compiling: 'bg_rules'\n",
  4687. "\t118 rules, 31 groups (30)\n",
  4688. "\n",
  4689. "touch dictsource/bn_extra\n",
  4690. " DICT espeak-ng-data/bn_dict\n",
  4691. "rm -f espeak-ng-data/bn_dict\n",
  4692. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"bn\"\n",
  4693. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/bn_dict'\n",
  4694. "Using phonemetable: 'bn'\n",
  4695. "Compiling: 'bn_list'\n",
  4696. "\t380 entries\n",
  4697. "Compiling: 'bn_emoji'\n",
  4698. "\t1639 entries\n",
  4699. "Compiling: 'bn_extra'\n",
  4700. "\t0 entries\n",
  4701. "Compiling: 'bn_rules'\n",
  4702. "\t168 rules, 68 groups (67)\n",
  4703. "\n",
  4704. "touch dictsource/bpy_extra\n",
  4705. " DICT espeak-ng-data/bpy_dict\n",
  4706. "rm -f espeak-ng-data/bpy_dict\n",
  4707. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"bpy\"\n",
  4708. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/bpy_dict'\n",
  4709. "Using phonemetable: 'bpy'\n",
  4710. "Compiling: 'bpy_list'\n",
  4711. "\t179 entries\n",
  4712. "Compiling: 'bpy_extra'\n",
  4713. "\t0 entries\n",
  4714. "Compiling: 'bpy_rules'\n",
  4715. "\t212 rules, 63 groups (63)\n",
  4716. "\n",
  4717. "touch dictsource/bs_extra\n",
  4718. " DICT espeak-ng-data/bs_dict\n",
  4719. "rm -f espeak-ng-data/bs_dict\n",
  4720. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"bs\"\n",
  4721. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/bs_dict'\n",
  4722. "Using phonemetable: 'hr'\n",
  4723. "Compiling: 'bs_list'\n",
  4724. "\t613 entries\n",
  4725. "Compiling: 'bs_emoji'\n",
  4726. "\t1635 entries\n",
  4727. "Compiling: 'bs_extra'\n",
  4728. "\t0 entries\n",
  4729. "Compiling: 'bs_rules'\n",
  4730. "\t112 rules, 34 groups (0)\n",
  4731. "\n",
  4732. "touch dictsource/ca_extra\n",
  4733. " DICT espeak-ng-data/ca_dict\n",
  4734. "rm -f espeak-ng-data/ca_dict\n",
  4735. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ca\"\n",
  4736. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ca_dict'\n",
  4737. "Using phonemetable: 'ca'\n",
  4738. "Compiling: 'ca_list'\n",
  4739. "\t18455 entries\n",
  4740. "Compiling: 'ca_emoji'\n",
  4741. "\t1639 entries\n",
  4742. "Compiling: 'ca_extra'\n",
  4743. "\t0 entries\n",
  4744. "Compiling: 'ca_rules'\n",
  4745. "\t965 rules, 32 groups (0)\n",
  4746. "\n",
  4747. " DICT espeak-ng-data/chr_dict\n",
  4748. "rm -f espeak-ng-data/chr_dict\n",
  4749. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"chr\"\n",
  4750. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/chr_dict'\n",
  4751. "Using phonemetable: 'chr'\n",
  4752. "Compiling: 'chr_list'\n",
  4753. "\t0 entries\n",
  4754. "Compiling: 'chr_rules'\n",
  4755. "\t198 rules, 27 groups (0)\n",
  4756. "\n",
  4757. "ln -svf extra/cmn_listx dictsource/\n",
  4758. "'dictsource/cmn_listx' -> 'extra/cmn_listx'\n",
  4759. "touch dictsource/cmn_extra\n",
  4760. " DICT espeak-ng-data/cmn_dict\n",
  4761. "rm -f espeak-ng-data/cmn_dict\n",
  4762. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"cmn\"\n",
  4763. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/cmn_dict'\n",
  4764. "Using phonemetable: 'cmn'\n",
  4765. "Compiling: 'cmn_list'\n",
  4766. "\t3860 entries\n",
  4767. "Compiling: 'cmn_listx'\n",
  4768. "\t77860 entries\n",
  4769. "Compiling: 'cmn_emoji'\n",
  4770. "\t1639 entries\n",
  4771. "Compiling: 'cmn_extra'\n",
  4772. "\t0 entries\n",
  4773. "Compiling: 'cmn_rules'\n",
  4774. "\t136 rules, 28 groups (0)\n",
  4775. "\n",
  4776. "touch dictsource/cs_extra\n",
  4777. " DICT espeak-ng-data/cs_dict\n",
  4778. "rm -f espeak-ng-data/cs_dict\n",
  4779. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"cs\"\n",
  4780. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/cs_dict'\n",
  4781. "Using phonemetable: 'cs'\n",
  4782. "Compiling: 'cs_list'\n",
  4783. "\t357 entries\n",
  4784. "Compiling: 'cs_emoji'\n",
  4785. "\t1689 entries\n",
  4786. "Compiling: 'cs_extra'\n",
  4787. "\t0 entries\n",
  4788. "Compiling: 'cs_rules'\n",
  4789. "\t506 rules, 48 groups (0)\n",
  4790. "\n",
  4791. "touch dictsource/cv_extra\n",
  4792. " DICT espeak-ng-data/cv_dict\n",
  4793. "rm -f espeak-ng-data/cv_dict\n",
  4794. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"cv\"\n",
  4795. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/cv_dict'\n",
  4796. "Using phonemetable: 'cv'\n",
  4797. "Compiling: 'cv_list'\n",
  4798. "\t0 entries\n",
  4799. "Compiling: 'cv_extra'\n",
  4800. "\t0 entries\n",
  4801. "Compiling: 'cv_rules'\n",
  4802. "\t39 rules, 37 groups (0)\n",
  4803. "\n",
  4804. "touch dictsource/cy_extra\n",
  4805. " DICT espeak-ng-data/cy_dict\n",
  4806. "rm -f espeak-ng-data/cy_dict\n",
  4807. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"cy\"\n",
  4808. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/cy_dict'\n",
  4809. "Using phonemetable: 'cy'\n",
  4810. "Compiling: 'cy_list'\n",
  4811. "\t166 entries\n",
  4812. "Compiling: 'cy_emoji'\n",
  4813. "\t1636 entries\n",
  4814. "Compiling: 'cy_extra'\n",
  4815. "\t0 entries\n",
  4816. "Compiling: 'cy_rules'\n",
  4817. "\t210 rules, 27 groups (0)\n",
  4818. "\n",
  4819. "touch dictsource/da_extra\n",
  4820. " DICT espeak-ng-data/da_dict\n",
  4821. "rm -f espeak-ng-data/da_dict\n",
  4822. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"da\"\n",
  4823. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/da_dict'\n",
  4824. "Using phonemetable: 'da'\n",
  4825. "Compiling: 'da_list'\n",
  4826. "\t11152 entries\n",
  4827. "Compiling: 'da_emoji'\n",
  4828. "\t1639 entries\n",
  4829. "Compiling: 'da_extra'\n",
  4830. "\t0 entries\n",
  4831. "Compiling: 'da_rules'\n",
  4832. "\t9269 rules, 56 groups (0)\n",
  4833. "\n",
  4834. "touch dictsource/de_extra\n",
  4835. " DICT espeak-ng-data/de_dict\n",
  4836. "rm -f espeak-ng-data/de_dict\n",
  4837. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"de\"\n",
  4838. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/de_dict'\n",
  4839. "Using phonemetable: 'de'\n",
  4840. "Compiling: 'de_list'\n",
  4841. "\t998 entries\n",
  4842. "Compiling: 'de_emoji'\n",
  4843. "\t1688 entries\n",
  4844. "Compiling: 'de_extra'\n",
  4845. "\t0 entries\n",
  4846. "Compiling: 'de_rules'\n",
  4847. "\t1330 rules, 34 groups (0)\n",
  4848. "\n",
  4849. "touch dictsource/el_extra\n",
  4850. " DICT espeak-ng-data/el_dict\n",
  4851. "rm -f espeak-ng-data/el_dict\n",
  4852. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"el\"\n",
  4853. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/el_dict'\n",
  4854. "Using phonemetable: 'el'\n",
  4855. "Compiling: 'el_list'\n",
  4856. "\t379 entries\n",
  4857. "Compiling: 'el_emoji'\n",
  4858. "\t1639 entries\n",
  4859. "Compiling: 'el_extra'\n",
  4860. "\t0 entries\n",
  4861. "Compiling: 'el_rules'\n",
  4862. "\t182 rules, 27 groups (26)\n",
  4863. "\n",
  4864. "touch dictsource/en_extra\n",
  4865. " DICT espeak-ng-data/en_dict\n",
  4866. "rm -f espeak-ng-data/en_dict\n",
  4867. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"en\"\n",
  4868. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/en_dict'\n",
  4869. "Using phonemetable: 'en'\n",
  4870. "Compiling: 'en_list'\n",
  4871. "\t5560 entries\n",
  4872. "Compiling: 'en_emoji'\n",
  4873. "\t1690 entries\n",
  4874. "Compiling: 'en_extra'\n",
  4875. "\t0 entries\n",
  4876. "Compiling: 'en_rules'\n",
  4877. "\t6793 rules, 104 groups (0)\n",
  4878. "\n",
  4879. "touch dictsource/eo_extra\n",
  4880. " DICT espeak-ng-data/eo_dict\n",
  4881. "rm -f espeak-ng-data/eo_dict\n",
  4882. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"eo\"\n",
  4883. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/eo_dict'\n",
  4884. "Using phonemetable: 'eo'\n",
  4885. "Compiling: 'eo_list'\n",
  4886. "\t242 entries\n",
  4887. "Compiling: 'eo_extra'\n",
  4888. "\t0 entries\n",
  4889. "Compiling: 'eo_rules'\n",
  4890. "\t130 rules, 27 groups (0)\n",
  4891. "\n",
  4892. "touch dictsource/es_extra\n",
  4893. " DICT espeak-ng-data/es_dict\n",
  4894. "rm -f espeak-ng-data/es_dict\n",
  4895. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"es\"\n",
  4896. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/es_dict'\n",
  4897. "Using phonemetable: 'es'\n",
  4898. "Compiling: 'es_list'\n",
  4899. "\t371 entries\n",
  4900. "Compiling: 'es_emoji'\n",
  4901. "\t1639 entries\n",
  4902. "Compiling: 'es_extra'\n",
  4903. "\t0 entries\n",
  4904. "Compiling: 'es_rules'\n",
  4905. "\t192 rules, 29 groups (0)\n",
  4906. "\n",
  4907. "touch dictsource/et_extra\n",
  4908. " DICT espeak-ng-data/et_dict\n",
  4909. "rm -f espeak-ng-data/et_dict\n",
  4910. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"et\"\n",
  4911. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/et_dict'\n",
  4912. "Using phonemetable: 'et'\n",
  4913. "Compiling: 'et_list'\n",
  4914. "\t303 entries\n",
  4915. "Compiling: 'et_emoji'\n",
  4916. "\t1639 entries\n",
  4917. "Compiling: 'et_extra'\n",
  4918. "\t0 entries\n",
  4919. "Compiling: 'et_rules'\n",
  4920. "\t221 rules, 31 groups (0)\n",
  4921. "\n",
  4922. "touch dictsource/eu_extra\n",
  4923. " DICT espeak-ng-data/eu_dict\n",
  4924. "rm -f espeak-ng-data/eu_dict\n",
  4925. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"eu\"\n",
  4926. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/eu_dict'\n",
  4927. "Using phonemetable: 'eu'\n",
  4928. "Compiling: 'eu_list'\n",
  4929. "\t194 entries\n",
  4930. "Compiling: 'eu_emoji'\n",
  4931. "\t1639 entries\n",
  4932. "Compiling: 'eu_extra'\n",
  4933. "\t0 entries\n",
  4934. "Compiling: 'eu_rules'\n",
  4935. "\t159 rules, 27 groups (0)\n",
  4936. "\n",
  4937. " DICT espeak-ng-data/fa_dict\n",
  4938. "rm -f espeak-ng-data/fa_dict\n",
  4939. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"fa\"\n",
  4940. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/fa_dict'\n",
  4941. "Using phonemetable: 'fa'\n",
  4942. "Compiling: 'fa_list'\n",
  4943. "\t13233 entries\n",
  4944. "Compiling: 'fa_emoji'\n",
  4945. "\t1649 entries\n",
  4946. "Compiling: 'fa_extra'\n",
  4947. "\t56 entries\n",
  4948. "Compiling: 'fa_rules'\n",
  4949. "\t3922 rules, 93 groups (45)\n",
  4950. "\n",
  4951. "touch dictsource/fi_extra\n",
  4952. " DICT espeak-ng-data/fi_dict\n",
  4953. "rm -f espeak-ng-data/fi_dict\n",
  4954. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"fi\"\n",
  4955. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/fi_dict'\n",
  4956. "Using phonemetable: 'fi'\n",
  4957. "Compiling: 'fi_list'\n",
  4958. "\t332 entries\n",
  4959. "Compiling: 'fi_emoji'\n",
  4960. "\t1639 entries\n",
  4961. "Compiling: 'fi_extra'\n",
  4962. "\t0 entries\n",
  4963. "Compiling: 'fi_rules'\n",
  4964. "\t144 rules, 29 groups (0)\n",
  4965. "\n",
  4966. "touch dictsource/fo_extra\n",
  4967. " DICT espeak-ng-data/fo_dict\n",
  4968. "rm -f espeak-ng-data/fo_dict\n",
  4969. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"fo\"\n",
  4970. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/fo_dict'\n",
  4971. "Using phonemetable: 'fo'\n",
  4972. "Compiling: 'fo_list'\n",
  4973. "\t228181 entries\n",
  4974. "Compiling: 'fo_emoji'\n",
  4975. "\t0 entries\n",
  4976. "Compiling: 'fo_extra'\n",
  4977. "\t0 entries\n",
  4978. "Compiling: 'fo_rules'\n",
  4979. "\t56 rules, 37 groups (0)\n",
  4980. "\n",
  4981. "touch dictsource/fr_extra\n",
  4982. " DICT espeak-ng-data/fr_dict\n",
  4983. "rm -f espeak-ng-data/fr_dict\n",
  4984. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"fr\"\n",
  4985. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/fr_dict'\n",
  4986. "Using phonemetable: 'fr'\n",
  4987. "Compiling: 'fr_list'\n",
  4988. "\t885 entries\n",
  4989. "Compiling: 'fr_emoji'\n",
  4990. "\t1638 entries\n",
  4991. "Compiling: 'fr_extra'\n",
  4992. "\t0 entries\n",
  4993. "Compiling: 'fr_rules'\n",
  4994. "\t1207 rules, 33 groups (0)\n",
  4995. "\n",
  4996. "touch dictsource/ga_extra\n",
  4997. " DICT espeak-ng-data/ga_dict\n",
  4998. "rm -f espeak-ng-data/ga_dict\n",
  4999. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ga\"\n",
  5000. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ga_dict'\n",
  5001. "Using phonemetable: 'ga'\n",
  5002. "Compiling: 'ga_list'\n",
  5003. "\t250 entries\n",
  5004. "Compiling: 'ga_emoji'\n",
  5005. "\t1636 entries\n",
  5006. "Compiling: 'ga_extra'\n",
  5007. "\t0 entries\n",
  5008. "Compiling: 'ga_rules'\n",
  5009. "\t481 rules, 34 groups (0)\n",
  5010. "\n",
  5011. "touch dictsource/gd_extra\n",
  5012. " DICT espeak-ng-data/gd_dict\n",
  5013. "rm -f espeak-ng-data/gd_dict\n",
  5014. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"gd\"\n",
  5015. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/gd_dict'\n",
  5016. "Using phonemetable: 'gd'\n",
  5017. "Compiling: 'gd_list'\n",
  5018. "\t104 entries\n",
  5019. "Compiling: 'gd_emoji'\n",
  5020. "\t1636 entries\n",
  5021. "Compiling: 'gd_extra'\n",
  5022. "\t0 entries\n",
  5023. "Compiling: 'gd_rules'\n",
  5024. "\t252 rules, 35 groups (0)\n",
  5025. "\n",
  5026. "touch dictsource/gn_extra\n",
  5027. " DICT espeak-ng-data/gn_dict\n",
  5028. "rm -f espeak-ng-data/gn_dict\n",
  5029. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"gn\"\n",
  5030. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/gn_dict'\n",
  5031. "Using phonemetable: 'gn'\n",
  5032. "Compiling: 'gn_list'\n",
  5033. "\t150 entries\n",
  5034. "Compiling: 'gn_extra'\n",
  5035. "\t0 entries\n",
  5036. "Compiling: 'gn_rules'\n",
  5037. "\t58 rules, 48 groups (0)\n",
  5038. "\n",
  5039. "touch dictsource/grc_extra\n",
  5040. " DICT espeak-ng-data/grc_dict\n",
  5041. "rm -f espeak-ng-data/grc_dict\n",
  5042. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"grc\"\n",
  5043. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/grc_dict'\n",
  5044. "Using phonemetable: 'grc'\n",
  5045. "Compiling: 'grc_list'\n",
  5046. "\t22 entries\n",
  5047. "Compiling: 'grc_extra'\n",
  5048. "\t0 entries\n",
  5049. "Compiling: 'grc_rules'\n",
  5050. "\t136 rules, 55 groups (27)\n",
  5051. "\n",
  5052. "touch dictsource/gu_extra\n",
  5053. " DICT espeak-ng-data/gu_dict\n",
  5054. "rm -f espeak-ng-data/gu_dict\n",
  5055. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"gu\"\n",
  5056. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/gu_dict'\n",
  5057. "Using phonemetable: 'gu'\n",
  5058. "Compiling: 'gu_list'\n",
  5059. "\t174 entries\n",
  5060. "Compiling: 'gu_emoji'\n",
  5061. "\t1639 entries\n",
  5062. "Compiling: 'gu_extra'\n",
  5063. "\t0 entries\n",
  5064. "Compiling: 'gu_rules'\n",
  5065. "\t269 rules, 79 groups (77)\n",
  5066. "\n",
  5067. "touch dictsource/hak_extra\n",
  5068. " DICT espeak-ng-data/hak_dict\n",
  5069. "rm -f espeak-ng-data/hak_dict\n",
  5070. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"hak\"\n",
  5071. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/hak_dict'\n",
  5072. "Using phonemetable: 'hak'\n",
  5073. "Compiling: 'hak_list'\n",
  5074. "\t22 entries\n",
  5075. "Compiling: 'hak_extra'\n",
  5076. "\t0 entries\n",
  5077. "Compiling: 'hak_rules'\n",
  5078. "\t261 rules, 27 groups (0)\n",
  5079. "\n",
  5080. "touch dictsource/haw_extra\n",
  5081. " DICT espeak-ng-data/haw_dict\n",
  5082. "rm -f espeak-ng-data/haw_dict\n",
  5083. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"haw\"\n",
  5084. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/haw_dict'\n",
  5085. "Using phonemetable: 'haw'\n",
  5086. "Compiling: 'haw_list'\n",
  5087. "\t100 entries\n",
  5088. "Compiling: 'haw_extra'\n",
  5089. "\t0 entries\n",
  5090. "Compiling: 'haw_rules'\n",
  5091. "\t40 rules, 30 groups (0)\n",
  5092. "\n",
  5093. "touch dictsource/he_extra\n",
  5094. " DICT espeak-ng-data/he_dict\n",
  5095. "rm -f espeak-ng-data/he_dict\n",
  5096. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"he\"\n",
  5097. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/he_dict'\n",
  5098. "Using phonemetable: 'he'\n",
  5099. "Compiling: 'he_listx'\n",
  5100. "\t197 entries\n",
  5101. "Compiling: 'he_list'\n",
  5102. "\t93 entries\n",
  5103. "Compiling: 'he_extra'\n",
  5104. "\t0 entries\n",
  5105. "Compiling: 'he_rules'\n",
  5106. "\t723 rules, 65 groups (0)\n",
  5107. "\n",
  5108. "touch dictsource/hi_extra\n",
  5109. " DICT espeak-ng-data/hi_dict\n",
  5110. "rm -f espeak-ng-data/hi_dict\n",
  5111. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"hi\"\n",
  5112. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/hi_dict'\n",
  5113. "Using phonemetable: 'hi'\n",
  5114. "Compiling: 'hi_list'\n",
  5115. "\t316 entries\n",
  5116. "Compiling: 'hi_emoji'\n",
  5117. "\t1639 entries\n",
  5118. "Compiling: 'hi_extra'\n",
  5119. "\t0 entries\n",
  5120. "Compiling: 'hi_rules'\n",
  5121. "\t301 rules, 87 groups (86)\n",
  5122. "\n",
  5123. "touch dictsource/hr_extra\n",
  5124. " DICT espeak-ng-data/hr_dict\n",
  5125. "rm -f espeak-ng-data/hr_dict\n",
  5126. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"hr\"\n",
  5127. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/hr_dict'\n",
  5128. "Using phonemetable: 'hr'\n",
  5129. "Compiling: 'hr_list'\n",
  5130. "\t613 entries\n",
  5131. "Compiling: 'hr_emoji'\n",
  5132. "\t1639 entries\n",
  5133. "Compiling: 'hr_extra'\n",
  5134. "\t0 entries\n",
  5135. "Compiling: 'hr_rules'\n",
  5136. "\t112 rules, 34 groups (0)\n",
  5137. "\n",
  5138. "touch dictsource/ht_extra\n",
  5139. " DICT espeak-ng-data/ht_dict\n",
  5140. "rm -f espeak-ng-data/ht_dict\n",
  5141. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ht\"\n",
  5142. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ht_dict'\n",
  5143. "Using phonemetable: 'ht'\n",
  5144. "Compiling: 'ht_list'\n",
  5145. "\t50 entries\n",
  5146. "Compiling: 'ht_extra'\n",
  5147. "\t0 entries\n",
  5148. "Compiling: 'ht_rules'\n",
  5149. "\t36 rules, 32 groups (0)\n",
  5150. "\n",
  5151. "touch dictsource/hu_extra\n",
  5152. " DICT espeak-ng-data/hu_dict\n",
  5153. "rm -f espeak-ng-data/hu_dict\n",
  5154. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"hu\"\n",
  5155. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/hu_dict'\n",
  5156. "Using phonemetable: 'hu'\n",
  5157. "Compiling: 'hu_list'\n",
  5158. "\t5352 entries\n",
  5159. "Compiling: 'hu_emoji'\n",
  5160. "\t1639 entries\n",
  5161. "Compiling: 'hu_extra'\n",
  5162. "\t0 entries\n",
  5163. "Compiling: 'hu_rules'\n",
  5164. "\t5309 rules, 48 groups (0)\n",
  5165. "\n",
  5166. "touch dictsource/hy_extra\n",
  5167. " DICT espeak-ng-data/hy_dict\n",
  5168. "rm -f espeak-ng-data/hy_dict\n",
  5169. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"hy\"\n",
  5170. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/hy_dict'\n",
  5171. "Using phonemetable: 'hy'\n",
  5172. "Compiling: 'hy_list'\n",
  5173. "\t170 entries\n",
  5174. "Compiling: 'hy_emoji'\n",
  5175. "\t1639 entries\n",
  5176. "Compiling: 'hy_extra'\n",
  5177. "\t0 entries\n",
  5178. "Compiling: 'hy_rules'\n",
  5179. "\t96 rules, 38 groups (38)\n",
  5180. "\n",
  5181. "touch dictsource/ia_extra\n",
  5182. " DICT espeak-ng-data/ia_dict\n",
  5183. "rm -f espeak-ng-data/ia_dict\n",
  5184. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ia\"\n",
  5185. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ia_dict'\n",
  5186. "Using phonemetable: 'ia'\n",
  5187. "Compiling: 'ia_listx'\n",
  5188. "\t15620 entries\n",
  5189. "Compiling: 'ia_list'\n",
  5190. "\t90 entries\n",
  5191. "Compiling: 'ia_extra'\n",
  5192. "\t0 entries\n",
  5193. "Compiling: 'ia_rules'\n",
  5194. "\t79 rules, 26 groups (0)\n",
  5195. "\n",
  5196. "touch dictsource/id_extra\n",
  5197. " DICT espeak-ng-data/id_dict\n",
  5198. "rm -f espeak-ng-data/id_dict\n",
  5199. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"id\"\n",
  5200. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/id_dict'\n",
  5201. "Using phonemetable: 'id'\n",
  5202. "Compiling: 'id_list'\n",
  5203. "\t132 entries\n",
  5204. "Compiling: 'id_emoji'\n",
  5205. "\t1639 entries\n",
  5206. "Compiling: 'id_extra'\n",
  5207. "\t0 entries\n",
  5208. "Compiling: 'id_rules'\n",
  5209. "\t78 rules, 27 groups (0)\n",
  5210. "\n",
  5211. "touch dictsource/io_extra\n",
  5212. " DICT espeak-ng-data/io_dict\n",
  5213. "rm -f espeak-ng-data/io_dict\n",
  5214. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"io\"\n",
  5215. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/io_dict'\n",
  5216. "Using phonemetable: 'eo'\n",
  5217. "Compiling: 'io_list'\n",
  5218. "\t50 entries\n",
  5219. "Compiling: 'io_extra'\n",
  5220. "\t0 entries\n",
  5221. "Compiling: 'io_rules'\n",
  5222. "\t78 rules, 26 groups (0)\n",
  5223. "\n",
  5224. "touch dictsource/is_extra\n",
  5225. " DICT espeak-ng-data/is_dict\n",
  5226. "rm -f espeak-ng-data/is_dict\n",
  5227. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"is\"\n",
  5228. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/is_dict'\n",
  5229. "Using phonemetable: 'is'\n",
  5230. "Compiling: 'is_list'\n",
  5231. "\t327 entries\n",
  5232. "Compiling: 'is_emoji'\n",
  5233. "\t1639 entries\n",
  5234. "Compiling: 'is_extra'\n",
  5235. "\t0 entries\n",
  5236. "Compiling: 'is_rules'\n",
  5237. "\t205 rules, 37 groups (0)\n",
  5238. "\n",
  5239. "touch dictsource/it_extra\n",
  5240. " DICT espeak-ng-data/it_dict\n",
  5241. "rm -f espeak-ng-data/it_dict\n",
  5242. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"it\"\n",
  5243. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/it_dict'\n",
  5244. "Using phonemetable: 'it'\n",
  5245. "Compiling: 'it_listx'\n",
  5246. "\t4309 entries\n",
  5247. "Compiling: 'it_list'\n",
  5248. "\t5230 entries\n",
  5249. "Compiling: 'it_emoji'\n",
  5250. "\t1639 entries\n",
  5251. "Compiling: 'it_extra'\n",
  5252. "\t0 entries\n",
  5253. "Compiling: 'it_rules'\n",
  5254. "\t714 rules, 30 groups (0)\n",
  5255. "\n",
  5256. "touch dictsource/ja_extra\n",
  5257. " DICT espeak-ng-data/ja_dict\n",
  5258. "rm -f espeak-ng-data/ja_dict\n",
  5259. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ja\"\n",
  5260. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ja_dict'\n",
  5261. "Using phonemetable: 'ja'\n",
  5262. "Compiling: 'ja_list'\n",
  5263. "\t23 entries\n",
  5264. "Compiling: 'ja_emoji'\n",
  5265. "\t1639 entries\n",
  5266. "Compiling: 'ja_extra'\n",
  5267. "\t0 entries\n",
  5268. "Compiling: 'ja_rules'\n",
  5269. "\t457 rules, 53 groups (0)\n",
  5270. "\n",
  5271. "touch dictsource/jbo_extra\n",
  5272. " DICT espeak-ng-data/jbo_dict\n",
  5273. "rm -f espeak-ng-data/jbo_dict\n",
  5274. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"jbo\"\n",
  5275. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/jbo_dict'\n",
  5276. "Using phonemetable: 'jbo'\n",
  5277. "Compiling: 'jbo_list'\n",
  5278. "\t85 entries\n",
  5279. "Compiling: 'jbo_extra'\n",
  5280. "\t0 entries\n",
  5281. "Compiling: 'jbo_rules'\n",
  5282. "\t64 rules, 27 groups (0)\n",
  5283. "\n",
  5284. "touch dictsource/ka_extra\n",
  5285. " DICT espeak-ng-data/ka_dict\n",
  5286. "rm -f espeak-ng-data/ka_dict\n",
  5287. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ka\"\n",
  5288. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ka_dict'\n",
  5289. "Using phonemetable: 'ka'\n",
  5290. "Compiling: 'ka_list'\n",
  5291. "\t148 entries\n",
  5292. "Compiling: 'ka_emoji'\n",
  5293. "\t1639 entries\n",
  5294. "Compiling: 'ka_extra'\n",
  5295. "\t0 entries\n",
  5296. "Compiling: 'ka_rules'\n",
  5297. "\t50 rules, 44 groups (43)\n",
  5298. "\n",
  5299. "touch dictsource/kaa_extra\n",
  5300. " DICT espeak-ng-data/kaa_dict\n",
  5301. "rm -f espeak-ng-data/kaa_dict\n",
  5302. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"kaa\"\n",
  5303. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/kaa_dict'\n",
  5304. "Using phonemetable: 'kaa'\n",
  5305. "Compiling: 'kaa_list'\n",
  5306. "\t26 entries\n",
  5307. "Compiling: 'kaa_emoji'\n",
  5308. "\t0 entries\n",
  5309. "Compiling: 'kaa_extra'\n",
  5310. "\t0 entries\n",
  5311. "Compiling: 'kaa_rules'\n",
  5312. "\t38 rules, 33 groups (0)\n",
  5313. "\n",
  5314. "touch dictsource/kk_extra\n",
  5315. " DICT espeak-ng-data/kk_dict\n",
  5316. "rm -f espeak-ng-data/kk_dict\n",
  5317. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"kk\"\n",
  5318. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/kk_dict'\n",
  5319. "Using phonemetable: 'kk'\n",
  5320. "Compiling: 'kk_list'\n",
  5321. "\t51 entries\n",
  5322. "Compiling: 'kk_emoji'\n",
  5323. "\t0 entries\n",
  5324. "Compiling: 'kk_extra'\n",
  5325. "\t0 entries\n",
  5326. "Compiling: 'kk_rules'\n",
  5327. "\t42 rules, 42 groups (36)\n",
  5328. "\n",
  5329. "touch dictsource/kl_extra\n",
  5330. " DICT espeak-ng-data/kl_dict\n",
  5331. "rm -f espeak-ng-data/kl_dict\n",
  5332. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"kl\"\n",
  5333. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/kl_dict'\n",
  5334. "Using phonemetable: 'kl'\n",
  5335. "Compiling: 'kl_list'\n",
  5336. "\t102 entries\n",
  5337. "Compiling: 'kl_extra'\n",
  5338. "\t0 entries\n",
  5339. "Compiling: 'kl_rules'\n",
  5340. "\t80 rules, 30 groups (0)\n",
  5341. "\n",
  5342. "touch dictsource/kn_extra\n",
  5343. " DICT espeak-ng-data/kn_dict\n",
  5344. "rm -f espeak-ng-data/kn_dict\n",
  5345. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"kn\"\n",
  5346. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/kn_dict'\n",
  5347. "Using phonemetable: 'kn'\n",
  5348. "Compiling: 'kn_list'\n",
  5349. "\t262 entries\n",
  5350. "Compiling: 'kn_emoji'\n",
  5351. "\t1639 entries\n",
  5352. "Compiling: 'kn_extra'\n",
  5353. "\t0 entries\n",
  5354. "Compiling: 'kn_rules'\n",
  5355. "\t115 rules, 55 groups (50)\n",
  5356. "\n",
  5357. "touch dictsource/ko_extra\n",
  5358. " DICT espeak-ng-data/ko_dict\n",
  5359. "rm -f espeak-ng-data/ko_dict\n",
  5360. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ko\"\n",
  5361. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ko_dict'\n",
  5362. "Using phonemetable: 'ko'\n",
  5363. "Compiling: 'ko_list'\n",
  5364. "\t133 entries\n",
  5365. "Compiling: 'ko_emoji'\n",
  5366. "\t1639 entries\n",
  5367. "Compiling: 'ko_extra'\n",
  5368. "\t0 entries\n",
  5369. "Compiling: 'ko_rules'\n",
  5370. "\t128 rules, 68 groups (40)\n",
  5371. "\n",
  5372. "touch dictsource/kok_extra\n",
  5373. " DICT espeak-ng-data/kok_dict\n",
  5374. "rm -f espeak-ng-data/kok_dict\n",
  5375. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"kok\"\n",
  5376. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/kok_dict'\n",
  5377. "Using phonemetable: 'kok'\n",
  5378. "Compiling: 'kok_list'\n",
  5379. "\t189 entries\n",
  5380. "Compiling: 'kok_extra'\n",
  5381. "\t0 entries\n",
  5382. "Compiling: 'kok_rules'\n",
  5383. "\t337 rules, 88 groups (0)\n",
  5384. "\n",
  5385. "touch dictsource/ku_extra\n",
  5386. " DICT espeak-ng-data/ku_dict\n",
  5387. "rm -f espeak-ng-data/ku_dict\n",
  5388. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ku\"\n",
  5389. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ku_dict'\n",
  5390. "Using phonemetable: 'ku'\n",
  5391. "Compiling: 'ku_list'\n",
  5392. "\t106 entries\n",
  5393. "Compiling: 'ku_extra'\n",
  5394. "\t0 entries\n",
  5395. "Compiling: 'ku_rules'\n",
  5396. "\t46 rules, 32 groups (0)\n",
  5397. "\n",
  5398. "touch dictsource/ky_extra\n",
  5399. " DICT espeak-ng-data/ky_dict\n",
  5400. "rm -f espeak-ng-data/ky_dict\n",
  5401. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ky\"\n",
  5402. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ky_dict'\n",
  5403. "Using phonemetable: 'ky'\n",
  5404. "Compiling: 'ky_list'\n",
  5405. "\t131 entries\n",
  5406. "Compiling: 'ky_emoji'\n",
  5407. "\t1636 entries\n",
  5408. "Compiling: 'ky_extra'\n",
  5409. "\t0 entries\n",
  5410. "Compiling: 'ky_rules'\n",
  5411. "\t113 rules, 33 groups (0)\n",
  5412. "\n",
  5413. "touch dictsource/la_extra\n",
  5414. " DICT espeak-ng-data/la_dict\n",
  5415. "rm -f espeak-ng-data/la_dict\n",
  5416. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"la\"\n",
  5417. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/la_dict'\n",
  5418. "Using phonemetable: 'la'\n",
  5419. "Compiling: 'la_list'\n",
  5420. "\t215 entries\n",
  5421. "Compiling: 'la_extra'\n",
  5422. "\t0 entries\n",
  5423. "Compiling: 'la_rules'\n",
  5424. "\t113 rules, 31 groups (0)\n",
  5425. "\n",
  5426. " DICT espeak-ng-data/lb_dict\n",
  5427. "rm -f espeak-ng-data/lb_dict\n",
  5428. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"lb\"\n",
  5429. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/lb_dict'\n",
  5430. "Using phonemetable: 'lb'\n",
  5431. "Compiling: 'lb_list'\n",
  5432. "\t35646 entries\n",
  5433. "Compiling: 'lb_emoji'\n",
  5434. "\t25 entries\n",
  5435. "Compiling: 'lb_rules'\n",
  5436. "\t175 rules, 50 groups (0)\n",
  5437. "\n",
  5438. "touch dictsource/lfn_extra\n",
  5439. " DICT espeak-ng-data/lfn_dict\n",
  5440. "rm -f espeak-ng-data/lfn_dict\n",
  5441. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"lfn\"\n",
  5442. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/lfn_dict'\n",
  5443. "Using phonemetable: 'base2'\n",
  5444. "Compiling: 'lfn_list'\n",
  5445. "\t127 entries\n",
  5446. "Compiling: 'lfn_extra'\n",
  5447. "\t0 entries\n",
  5448. "Compiling: 'lfn_rules'\n",
  5449. "\t76 rules, 27 groups (0)\n",
  5450. "\n",
  5451. "touch dictsource/lt_extra\n",
  5452. " DICT espeak-ng-data/lt_dict\n",
  5453. "rm -f espeak-ng-data/lt_dict\n",
  5454. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"lt\"\n",
  5455. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/lt_dict'\n",
  5456. "Using phonemetable: 'lt'\n",
  5457. "Compiling: 'lt_list'\n",
  5458. "\t167 entries\n",
  5459. "Compiling: 'lt_emoji'\n",
  5460. "\t1639 entries\n",
  5461. "Compiling: 'lt_extra'\n",
  5462. "\t0 entries\n",
  5463. "Compiling: 'lt_rules'\n",
  5464. "\t210 rules, 38 groups (0)\n",
  5465. "\n",
  5466. "touch dictsource/lv_extra\n",
  5467. " DICT espeak-ng-data/lv_dict\n",
  5468. "rm -f espeak-ng-data/lv_dict\n",
  5469. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"lv\"\n",
  5470. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/lv_dict'\n",
  5471. "Using phonemetable: 'lv'\n",
  5472. "Compiling: 'lv_list'\n",
  5473. "\t887 entries\n",
  5474. "Compiling: 'lv_emoji'\n",
  5475. "\t1639 entries\n",
  5476. "Compiling: 'lv_extra'\n",
  5477. "\t0 entries\n",
  5478. "Compiling: 'lv_rules'\n",
  5479. "\t1523 rules, 62 groups (0)\n",
  5480. "\n",
  5481. "touch dictsource/mi_extra\n",
  5482. " DICT espeak-ng-data/mi_dict\n",
  5483. "rm -f espeak-ng-data/mi_dict\n",
  5484. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"mi\"\n",
  5485. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/mi_dict'\n",
  5486. "Using phonemetable: 'mi'\n",
  5487. "Compiling: 'mi_list'\n",
  5488. "\t14 entries\n",
  5489. "Compiling: 'mi_extra'\n",
  5490. "\t0 entries\n",
  5491. "Compiling: 'mi_rules'\n",
  5492. "\t27 rules, 18 groups (0)\n",
  5493. "\n",
  5494. "touch dictsource/mk_extra\n",
  5495. " DICT espeak-ng-data/mk_dict\n",
  5496. "rm -f espeak-ng-data/mk_dict\n",
  5497. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"mk\"\n",
  5498. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/mk_dict'\n",
  5499. "Using phonemetable: 'mk'\n",
  5500. "Compiling: 'mk_list'\n",
  5501. "\t188 entries\n",
  5502. "Compiling: 'mk_emoji'\n",
  5503. "\t1636 entries\n",
  5504. "Compiling: 'mk_extra'\n",
  5505. "\t0 entries\n",
  5506. "Compiling: 'mk_rules'\n",
  5507. "\t96 rules, 34 groups (31)\n",
  5508. "\n",
  5509. "touch dictsource/ml_extra\n",
  5510. " DICT espeak-ng-data/ml_dict\n",
  5511. "rm -f espeak-ng-data/ml_dict\n",
  5512. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ml\"\n",
  5513. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ml_dict'\n",
  5514. "Using phonemetable: 'ml'\n",
  5515. "Compiling: 'ml_list'\n",
  5516. "\t165 entries\n",
  5517. "Compiling: 'ml_emoji'\n",
  5518. "\t1639 entries\n",
  5519. "Compiling: 'ml_extra'\n",
  5520. "\t0 entries\n",
  5521. "Compiling: 'ml_rules'\n",
  5522. "\t141 rules, 45 groups (42)\n",
  5523. "\n",
  5524. "touch dictsource/mr_extra\n",
  5525. " DICT espeak-ng-data/mr_dict\n",
  5526. "rm -f espeak-ng-data/mr_dict\n",
  5527. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"mr\"\n",
  5528. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/mr_dict'\n",
  5529. "Using phonemetable: 'mr'\n",
  5530. "Compiling: 'mr_list'\n",
  5531. "\t235 entries\n",
  5532. "Compiling: 'mr_emoji'\n",
  5533. "\t1639 entries\n",
  5534. "Compiling: 'mr_extra'\n",
  5535. "\t0 entries\n",
  5536. "Compiling: 'mr_rules'\n",
  5537. "\t298 rules, 87 groups (85)\n",
  5538. "\n",
  5539. "touch dictsource/ms_extra\n",
  5540. " DICT espeak-ng-data/ms_dict\n",
  5541. "rm -f espeak-ng-data/ms_dict\n",
  5542. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ms\"\n",
  5543. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ms_dict'\n",
  5544. "Using phonemetable: 'id'\n",
  5545. "Compiling: 'ms_list'\n",
  5546. "\t703 entries\n",
  5547. "Compiling: 'ms_emoji'\n",
  5548. "\t1639 entries\n",
  5549. "Compiling: 'ms_extra'\n",
  5550. "\t0 entries\n",
  5551. "Compiling: 'ms_rules'\n",
  5552. "\t125 rules, 27 groups (0)\n",
  5553. "\n",
  5554. "touch dictsource/mt_extra\n",
  5555. " DICT espeak-ng-data/mt_dict\n",
  5556. "rm -f espeak-ng-data/mt_dict\n",
  5557. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"mt\"\n",
  5558. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/mt_dict'\n",
  5559. "Using phonemetable: 'mt'\n",
  5560. "Compiling: 'mt_list'\n",
  5561. "\t232 entries\n",
  5562. "Compiling: 'mt_extra'\n",
  5563. "\t0 entries\n",
  5564. "Compiling: 'mt_rules'\n",
  5565. "\t99 rules, 31 groups (0)\n",
  5566. "\n",
  5567. " DICT espeak-ng-data/mto_dict\n",
  5568. "rm -f espeak-ng-data/mto_dict\n",
  5569. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"mto\"\n",
  5570. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/mto_dict'\n",
  5571. "Using phonemetable: 'mto'\n",
  5572. "Compiling: 'mto_list'\n",
  5573. "\t185 entries\n",
  5574. "Compiling: 'mto_rules'\n",
  5575. "\t56 rules, 23 groups (0)\n",
  5576. "\n",
  5577. "touch dictsource/my_extra\n",
  5578. " DICT espeak-ng-data/my_dict\n",
  5579. "rm -f espeak-ng-data/my_dict\n",
  5580. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"my\"\n",
  5581. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/my_dict'\n",
  5582. "Using phonemetable: 'my'\n",
  5583. "Compiling: 'my_list'\n",
  5584. "\t11 entries\n",
  5585. "Compiling: 'my_emoji'\n",
  5586. "\t1644 entries\n",
  5587. "Compiling: 'my_extra'\n",
  5588. "\t0 entries\n",
  5589. "Compiling: 'my_rules'\n",
  5590. "\t78 rules, 64 groups (0)\n",
  5591. "\n",
  5592. "touch dictsource/nci_extra\n",
  5593. " DICT espeak-ng-data/nci_dict\n",
  5594. "rm -f espeak-ng-data/nci_dict\n",
  5595. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"nci\"\n",
  5596. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/nci_dict'\n",
  5597. "Using phonemetable: 'nci'\n",
  5598. "Compiling: 'nci_list'\n",
  5599. "\t16 entries\n",
  5600. "Compiling: 'nci_extra'\n",
  5601. "\t0 entries\n",
  5602. "Compiling: 'nci_rules'\n",
  5603. "\t41 rules, 21 groups (0)\n",
  5604. "\n",
  5605. "touch dictsource/ne_extra\n",
  5606. " DICT espeak-ng-data/ne_dict\n",
  5607. "rm -f espeak-ng-data/ne_dict\n",
  5608. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ne\"\n",
  5609. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ne_dict'\n",
  5610. "Using phonemetable: 'ne'\n",
  5611. "Compiling: 'ne_list'\n",
  5612. "\t193 entries\n",
  5613. "Compiling: 'ne_emoji'\n",
  5614. "\t1639 entries\n",
  5615. "Compiling: 'ne_extra'\n",
  5616. "\t0 entries\n",
  5617. "Compiling: 'ne_rules'\n",
  5618. "\t520 rules, 100 groups (92)\n",
  5619. "\n",
  5620. "touch dictsource/nl_extra\n",
  5621. " DICT espeak-ng-data/nl_dict\n",
  5622. "rm -f espeak-ng-data/nl_dict\n",
  5623. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"nl\"\n",
  5624. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/nl_dict'\n",
  5625. "Using phonemetable: 'nl'\n",
  5626. "Compiling: 'nl_list'\n",
  5627. "\t1797 entries\n",
  5628. "Compiling: 'nl_emoji'\n",
  5629. "\t1690 entries\n",
  5630. "Compiling: 'nl_extra'\n",
  5631. "\t0 entries\n",
  5632. "Compiling: 'nl_rules'\n",
  5633. "\t826 rules, 37 groups (0)\n",
  5634. "\n",
  5635. "touch dictsource/no_extra\n",
  5636. " DICT espeak-ng-data/no_dict\n",
  5637. "rm -f espeak-ng-data/no_dict\n",
  5638. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"no\"\n",
  5639. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/no_dict'\n",
  5640. "Using phonemetable: 'no'\n",
  5641. "Compiling: 'no_list'\n",
  5642. "\t236 entries\n",
  5643. "Compiling: 'no_extra'\n",
  5644. "\t0 entries\n",
  5645. "Compiling: 'no_rules'\n",
  5646. "\t142 rules, 32 groups (0)\n",
  5647. "\n",
  5648. "touch dictsource/nog_extra\n",
  5649. " DICT espeak-ng-data/nog_dict\n",
  5650. "rm -f espeak-ng-data/nog_dict\n",
  5651. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"nog\"\n",
  5652. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/nog_dict'\n",
  5653. "Using phonemetable: 'nog'\n",
  5654. "Compiling: 'nog_list'\n",
  5655. "\t37 entries\n",
  5656. "Compiling: 'nog_extra'\n",
  5657. "\t0 entries\n",
  5658. "Compiling: 'nog_rules'\n",
  5659. "\t180 rules, 33 groups (0)\n",
  5660. "\n",
  5661. "touch dictsource/om_extra\n",
  5662. " DICT espeak-ng-data/om_dict\n",
  5663. "rm -f espeak-ng-data/om_dict\n",
  5664. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"om\"\n",
  5665. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/om_dict'\n",
  5666. "Using phonemetable: 'om'\n",
  5667. "Compiling: 'om_list'\n",
  5668. "\t87 entries\n",
  5669. "Compiling: 'om_extra'\n",
  5670. "\t0 entries\n",
  5671. "Compiling: 'om_rules'\n",
  5672. "\t53 rules, 33 groups (0)\n",
  5673. "\n",
  5674. "touch dictsource/or_extra\n",
  5675. " DICT espeak-ng-data/or_dict\n",
  5676. "rm -f espeak-ng-data/or_dict\n",
  5677. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"or\"\n",
  5678. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/or_dict'\n",
  5679. "Using phonemetable: 'or'\n",
  5680. "Compiling: 'or_list'\n",
  5681. "\t198 entries\n",
  5682. "Compiling: 'or_emoji'\n",
  5683. "\t1634 entries\n",
  5684. "Compiling: 'or_extra'\n",
  5685. "\t0 entries\n",
  5686. "Compiling: 'or_rules'\n",
  5687. "\t197 rules, 67 groups (66)\n",
  5688. "\n",
  5689. "touch dictsource/pa_extra\n",
  5690. " DICT espeak-ng-data/pa_dict\n",
  5691. "rm -f espeak-ng-data/pa_dict\n",
  5692. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"pa\"\n",
  5693. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/pa_dict'\n",
  5694. "Using phonemetable: 'pa'\n",
  5695. "Compiling: 'pa_list'\n",
  5696. "\t196 entries\n",
  5697. "Compiling: 'pa_emoji'\n",
  5698. "\t1636 entries\n",
  5699. "Compiling: 'pa_extra'\n",
  5700. "\t0 entries\n",
  5701. "Compiling: 'pa_rules'\n",
  5702. "\t283 rules, 68 groups (65)\n",
  5703. "\n",
  5704. "touch dictsource/pap_extra\n",
  5705. " DICT espeak-ng-data/pap_dict\n",
  5706. "rm -f espeak-ng-data/pap_dict\n",
  5707. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"pap\"\n",
  5708. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/pap_dict'\n",
  5709. "Using phonemetable: 'base2'\n",
  5710. "Compiling: 'pap_list'\n",
  5711. "\t86 entries\n",
  5712. "Compiling: 'pap_extra'\n",
  5713. "\t0 entries\n",
  5714. "Compiling: 'pap_rules'\n",
  5715. "\t68 rules, 32 groups (0)\n",
  5716. "\n",
  5717. " DICT espeak-ng-data/piqd_dict\n",
  5718. "rm -f espeak-ng-data/piqd_dict\n",
  5719. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"piqd\"\n",
  5720. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/piqd_dict'\n",
  5721. "Using phonemetable: 'piqd'\n",
  5722. "Compiling: 'piqd_list'\n",
  5723. "\t36 entries\n",
  5724. "Compiling: 'piqd_rules'\n",
  5725. "\t35 rules, 23 groups (0)\n",
  5726. "\n",
  5727. "touch dictsource/pl_extra\n",
  5728. " DICT espeak-ng-data/pl_dict\n",
  5729. "rm -f espeak-ng-data/pl_dict\n",
  5730. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"pl\"\n",
  5731. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/pl_dict'\n",
  5732. "Using phonemetable: 'pl'\n",
  5733. "Compiling: 'pl_list'\n",
  5734. "\t2956 entries\n",
  5735. "Compiling: 'pl_emoji'\n",
  5736. "\t1639 entries\n",
  5737. "Compiling: 'pl_extra'\n",
  5738. "\t0 entries\n",
  5739. "Compiling: 'pl_rules'\n",
  5740. "\t869 rules, 46 groups (0)\n",
  5741. "\n",
  5742. "touch dictsource/ps_extra\n",
  5743. " DICT espeak-ng-data/ps_dict\n",
  5744. "rm -f espeak-ng-data/ps_dict\n",
  5745. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ps\"\n",
  5746. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ps_dict'\n",
  5747. "Using phonemetable: 'ps'\n",
  5748. "Compiling: 'ps_list'\n",
  5749. "\t304 entries\n",
  5750. "Compiling: 'ps_emoji'\n",
  5751. "\t1641 entries\n",
  5752. "Compiling: 'ps_extra'\n",
  5753. "\t0 entries\n",
  5754. "Compiling: 'ps_rules'\n",
  5755. "\t1351 rules, 50 groups (0)\n",
  5756. "\n",
  5757. "touch dictsource/pt_extra\n",
  5758. " DICT espeak-ng-data/pt_dict\n",
  5759. "rm -f espeak-ng-data/pt_dict\n",
  5760. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"pt\"\n",
  5761. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/pt_dict'\n",
  5762. "Using phonemetable: 'pt-pt'\n",
  5763. "Compiling: 'pt_list'\n",
  5764. "\t2006 entries\n",
  5765. "Compiling: 'pt_emoji'\n",
  5766. "\t1639 entries\n",
  5767. "Compiling: 'pt_extra'\n",
  5768. "\t0 entries\n",
  5769. "Compiling: 'pt_rules'\n",
  5770. "\t1105 rules, 39 groups (0)\n",
  5771. "\n",
  5772. "touch dictsource/py_extra\n",
  5773. " DICT espeak-ng-data/py_dict\n",
  5774. "rm -f espeak-ng-data/py_dict\n",
  5775. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"py\"\n",
  5776. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/py_dict'\n",
  5777. "Using phonemetable: 'py'\n",
  5778. "Compiling: 'py_list'\n",
  5779. "\t106 entries\n",
  5780. "Compiling: 'py_extra'\n",
  5781. "\t0 entries\n",
  5782. "Compiling: 'py_rules'\n",
  5783. "\t31 rules, 28 groups (0)\n",
  5784. "\n",
  5785. " DICT espeak-ng-data/qdb_dict\n",
  5786. "rm -f espeak-ng-data/qdb_dict\n",
  5787. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"qdb\"\n",
  5788. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/qdb_dict'\n",
  5789. "Using phonemetable: 'qdb'\n",
  5790. "Compiling: 'qdb_list'\n",
  5791. "\t169 entries\n",
  5792. "Compiling: 'qdb_rules'\n",
  5793. "\t38 rules, 25 groups (0)\n",
  5794. "\n",
  5795. "touch dictsource/qu_extra\n",
  5796. " DICT espeak-ng-data/qu_dict\n",
  5797. "rm -f espeak-ng-data/qu_dict\n",
  5798. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"qu\"\n",
  5799. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/qu_dict'\n",
  5800. "Using phonemetable: 'qu'\n",
  5801. "Compiling: 'qu_list'\n",
  5802. "\t76 entries\n",
  5803. "Compiling: 'qu_extra'\n",
  5804. "\t0 entries\n",
  5805. "Compiling: 'qu_rules'\n",
  5806. "\t39 rules, 28 groups (0)\n",
  5807. "\n",
  5808. "touch dictsource/quc_extra\n",
  5809. " DICT espeak-ng-data/quc_dict\n",
  5810. "rm -f espeak-ng-data/quc_dict\n",
  5811. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"quc\"\n",
  5812. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/quc_dict'\n",
  5813. "Using phonemetable: 'quc'\n",
  5814. "Compiling: 'quc_list'\n",
  5815. "\t10 entries\n",
  5816. "Compiling: 'quc_emoji'\n",
  5817. "\t0 entries\n",
  5818. "Compiling: 'quc_extra'\n",
  5819. "\t0 entries\n",
  5820. "Compiling: 'quc_rules'\n",
  5821. "\t35 rules, 27 groups (0)\n",
  5822. "\n",
  5823. " DICT espeak-ng-data/qya_dict\n",
  5824. "rm -f espeak-ng-data/qya_dict\n",
  5825. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"qya\"\n",
  5826. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/qya_dict'\n",
  5827. "Using phonemetable: 'qya'\n",
  5828. "Compiling: 'qya_list'\n",
  5829. "\t38 entries\n",
  5830. "Compiling: 'qya_rules'\n",
  5831. "\t70 rules, 38 groups (0)\n",
  5832. "\n",
  5833. "touch dictsource/ro_extra\n",
  5834. " DICT espeak-ng-data/ro_dict\n",
  5835. "rm -f espeak-ng-data/ro_dict\n",
  5836. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ro\"\n",
  5837. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ro_dict'\n",
  5838. "Using phonemetable: 'ro'\n",
  5839. "Compiling: 'ro_list'\n",
  5840. "\t2167 entries\n",
  5841. "Compiling: 'ro_emoji'\n",
  5842. "\t1639 entries\n",
  5843. "Compiling: 'ro_extra'\n",
  5844. "\t0 entries\n",
  5845. "Compiling: 'ro_rules'\n",
  5846. "\t349 rules, 32 groups (0)\n",
  5847. "\n",
  5848. "touch dictsource/ru_extra\n",
  5849. "ln -svf extra/ru_listx dictsource/\n",
  5850. "'dictsource/ru_listx' -> 'extra/ru_listx'\n",
  5851. " DICT espeak-ng-data/ru_dict\n",
  5852. "rm -f espeak-ng-data/ru_dict\n",
  5853. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ru\"\n",
  5854. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ru_dict'\n",
  5855. "Using phonemetable: 'ru'\n",
  5856. "Compiling: 'ru_listx'\n",
  5857. "\t811332 entries\n",
  5858. "Compiling: 'ru_list'\n",
  5859. "\t287 entries\n",
  5860. "Compiling: 'ru_emoji'\n",
  5861. "\t1639 entries\n",
  5862. "Compiling: 'ru_extra'\n",
  5863. "\t0 entries\n",
  5864. "Compiling: 'ru_rules'\n",
  5865. "\t437 rules, 34 groups (33)\n",
  5866. "\n",
  5867. "touch dictsource/sd_extra\n",
  5868. " DICT espeak-ng-data/sd_dict\n",
  5869. "rm -f espeak-ng-data/sd_dict\n",
  5870. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"sd\"\n",
  5871. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/sd_dict'\n",
  5872. "Using phonemetable: 'sd'\n",
  5873. "Compiling: 'sd_list'\n",
  5874. "\t266 entries\n",
  5875. "Compiling: 'sd_emoji'\n",
  5876. "\t1565 entries\n",
  5877. "Compiling: 'sd_extra'\n",
  5878. "\t0 entries\n",
  5879. "Compiling: 'sd_rules'\n",
  5880. "\t372 rules, 73 groups (47)\n",
  5881. "\n",
  5882. "touch dictsource/shn_extra\n",
  5883. " DICT espeak-ng-data/shn_dict\n",
  5884. "rm -f espeak-ng-data/shn_dict\n",
  5885. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"shn\"\n",
  5886. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/shn_dict'\n",
  5887. "Using phonemetable: 'shn'\n",
  5888. "Compiling: 'shn_list'\n",
  5889. "\t4175 entries\n",
  5890. "Compiling: 'shn_extra'\n",
  5891. "\t0 entries\n",
  5892. "Compiling: 'shn_rules'\n",
  5893. "\t229 rules, 53 groups (0)\n",
  5894. "\n",
  5895. "touch dictsource/si_extra\n",
  5896. " DICT espeak-ng-data/si_dict\n",
  5897. "rm -f espeak-ng-data/si_dict\n",
  5898. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"si\"\n",
  5899. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/si_dict'\n",
  5900. "Using phonemetable: 'si'\n",
  5901. "Compiling: 'si_list'\n",
  5902. "\t152 entries\n",
  5903. "Compiling: 'si_emoji'\n",
  5904. "\t1648 entries\n",
  5905. "Compiling: 'si_extra'\n",
  5906. "\t0 entries\n",
  5907. "Compiling: 'si_rules'\n",
  5908. "\t142 rules, 75 groups (73)\n",
  5909. "\n",
  5910. " DICT espeak-ng-data/sjn_dict\n",
  5911. "rm -f espeak-ng-data/sjn_dict\n",
  5912. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"sjn\"\n",
  5913. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/sjn_dict'\n",
  5914. "Using phonemetable: 'sjn'\n",
  5915. "Compiling: 'sjn_list'\n",
  5916. "\t21 entries\n",
  5917. "Compiling: 'sjn_rules'\n",
  5918. "\t71 rules, 40 groups (0)\n",
  5919. "\n",
  5920. "touch dictsource/sk_extra\n",
  5921. " DICT espeak-ng-data/sk_dict\n",
  5922. "rm -f espeak-ng-data/sk_dict\n",
  5923. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"sk\"\n",
  5924. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/sk_dict'\n",
  5925. "Using phonemetable: 'sk'\n",
  5926. "Compiling: 'sk_list'\n",
  5927. "\t348 entries\n",
  5928. "Compiling: 'sk_emoji'\n",
  5929. "\t1639 entries\n",
  5930. "Compiling: 'sk_extra'\n",
  5931. "\t0 entries\n",
  5932. "Compiling: 'sk_rules'\n",
  5933. "\t535 rules, 46 groups (0)\n",
  5934. "\n",
  5935. "touch dictsource/sl_extra\n",
  5936. " DICT espeak-ng-data/sl_dict\n",
  5937. "rm -f espeak-ng-data/sl_dict\n",
  5938. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"sl\"\n",
  5939. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/sl_dict'\n",
  5940. "Using phonemetable: 'sl'\n",
  5941. "Compiling: 'sl_list'\n",
  5942. "\t196 entries\n",
  5943. "Compiling: 'sl_emoji'\n",
  5944. "\t1639 entries\n",
  5945. "Compiling: 'sl_extra'\n",
  5946. "\t0 entries\n",
  5947. "Compiling: 'sl_rules'\n",
  5948. "\t108 rules, 31 groups (0)\n",
  5949. "\n",
  5950. " DICT espeak-ng-data/smj_dict\n",
  5951. "rm -f espeak-ng-data/smj_dict\n",
  5952. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"smj\"\n",
  5953. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/smj_dict'\n",
  5954. "Using phonemetable: 'smj'\n",
  5955. "Compiling: 'smj_list'\n",
  5956. "\t2816 entries\n",
  5957. "Compiling: 'smj_rules'\n",
  5958. "\t136 rules, 34 groups (0)\n",
  5959. "\n",
  5960. "touch dictsource/sq_extra\n",
  5961. " DICT espeak-ng-data/sq_dict\n",
  5962. "rm -f espeak-ng-data/sq_dict\n",
  5963. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"sq\"\n",
  5964. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/sq_dict'\n",
  5965. "Using phonemetable: 'sq'\n",
  5966. "Compiling: 'sq_list'\n",
  5967. "\t132 entries\n",
  5968. "Compiling: 'sq_emoji'\n",
  5969. "\t1636 entries\n",
  5970. "Compiling: 'sq_extra'\n",
  5971. "\t0 entries\n",
  5972. "Compiling: 'sq_rules'\n",
  5973. "\t100 rules, 29 groups (0)\n",
  5974. "\n",
  5975. "touch dictsource/sr_extra\n",
  5976. " DICT espeak-ng-data/sr_dict\n",
  5977. "rm -f espeak-ng-data/sr_dict\n",
  5978. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"sr\"\n",
  5979. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/sr_dict'\n",
  5980. "Using phonemetable: 'sr'\n",
  5981. "Compiling: 'sr_list'\n",
  5982. "\t613 entries\n",
  5983. "Compiling: 'sr_emoji'\n",
  5984. "\t1568 entries\n",
  5985. "Compiling: 'sr_extra'\n",
  5986. "\t0 entries\n",
  5987. "Compiling: 'sr_rules'\n",
  5988. "\t112 rules, 34 groups (0)\n",
  5989. "\n",
  5990. "touch dictsource/sv_extra\n",
  5991. " DICT espeak-ng-data/sv_dict\n",
  5992. "rm -f espeak-ng-data/sv_dict\n",
  5993. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"sv\"\n",
  5994. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/sv_dict'\n",
  5995. "Using phonemetable: 'sv'\n",
  5996. "Compiling: 'sv_list'\n",
  5997. "\t341 entries\n",
  5998. "Compiling: 'sv_emoji'\n",
  5999. "\t1639 entries\n",
  6000. "Compiling: 'sv_extra'\n",
  6001. "\t0 entries\n",
  6002. "Compiling: 'sv_rules'\n",
  6003. "\t697 rules, 30 groups (0)\n",
  6004. "\n",
  6005. "touch dictsource/sw_extra\n",
  6006. " DICT espeak-ng-data/sw_dict\n",
  6007. "rm -f espeak-ng-data/sw_dict\n",
  6008. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"sw\"\n",
  6009. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/sw_dict'\n",
  6010. "Using phonemetable: 'sw'\n",
  6011. "Compiling: 'sw_list'\n",
  6012. "\t170 entries\n",
  6013. "Compiling: 'sw_emoji'\n",
  6014. "\t1638 entries\n",
  6015. "Compiling: 'sw_extra'\n",
  6016. "\t0 entries\n",
  6017. "Compiling: 'sw_rules'\n",
  6018. "\t63 rules, 27 groups (0)\n",
  6019. "\n",
  6020. "touch dictsource/ta_extra\n",
  6021. " DICT espeak-ng-data/ta_dict\n",
  6022. "rm -f espeak-ng-data/ta_dict\n",
  6023. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ta\"\n",
  6024. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ta_dict'\n",
  6025. "Using phonemetable: 'ta'\n",
  6026. "Compiling: 'ta_list'\n",
  6027. "\t551 entries\n",
  6028. "Compiling: 'ta_emoji'\n",
  6029. "\t1639 entries\n",
  6030. "Compiling: 'ta_extra'\n",
  6031. "\t0 entries\n",
  6032. "Compiling: 'ta_rules'\n",
  6033. "\t5040 rules, 33 groups (28)\n",
  6034. "\n",
  6035. "touch dictsource/te_extra\n",
  6036. " DICT espeak-ng-data/te_dict\n",
  6037. "rm -f espeak-ng-data/te_dict\n",
  6038. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"te\"\n",
  6039. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/te_dict'\n",
  6040. "Using phonemetable: 'te'\n",
  6041. "Compiling: 'te_list'\n",
  6042. "\t155 entries\n",
  6043. "Compiling: 'te_emoji'\n",
  6044. "\t1639 entries\n",
  6045. "Compiling: 'te_extra'\n",
  6046. "\t0 entries\n",
  6047. "Compiling: 'te_rules'\n",
  6048. "\t112 rules, 56 groups (53)\n",
  6049. "\n",
  6050. "touch dictsource/th_extra\n",
  6051. " DICT espeak-ng-data/th_dict\n",
  6052. "rm -f espeak-ng-data/th_dict\n",
  6053. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"th\"\n",
  6054. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/th_dict'\n",
  6055. "Using phonemetable: 'th'\n",
  6056. "Compiling: 'th_list'\n",
  6057. "\t10 entries\n",
  6058. "Compiling: 'th_extra'\n",
  6059. "\t0 entries\n",
  6060. "Compiling: 'th_rules'\n",
  6061. "\t139 rules, 64 groups (0)\n",
  6062. "\n",
  6063. "touch dictsource/ti_extra\n",
  6064. " DICT espeak-ng-data/ti_dict\n",
  6065. "rm -f espeak-ng-data/ti_dict\n",
  6066. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ti\"\n",
  6067. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ti_dict'\n",
  6068. "Using phonemetable: 'ti'\n",
  6069. "Compiling: 'ti_list'\n",
  6070. "\t31 entries\n",
  6071. "Compiling: 'ti_emoji'\n",
  6072. "\t1690 entries\n",
  6073. "Compiling: 'ti_extra'\n",
  6074. "\t0 entries\n",
  6075. "Compiling: 'ti_rules'\n",
  6076. "\t361 rules, 7 groups (0)\n",
  6077. "\n",
  6078. "touch dictsource/tk_extra\n",
  6079. " DICT espeak-ng-data/tk_dict\n",
  6080. "rm -f espeak-ng-data/tk_dict\n",
  6081. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"tk\"\n",
  6082. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/tk_dict'\n",
  6083. "Using phonemetable: 'tk'\n",
  6084. "Compiling: 'tk_listx'\n",
  6085. "\t868 entries\n",
  6086. "Compiling: 'tk_list'\n",
  6087. "\t62 entries\n",
  6088. "Compiling: 'tk_extra'\n",
  6089. "\t0 entries\n",
  6090. "Compiling: 'tk_rules'\n",
  6091. "\t318 rules, 30 groups (0)\n",
  6092. "\n",
  6093. "touch dictsource/tn_extra\n",
  6094. " DICT espeak-ng-data/tn_dict\n",
  6095. "rm -f espeak-ng-data/tn_dict\n",
  6096. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"tn\"\n",
  6097. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/tn_dict'\n",
  6098. "Using phonemetable: 'tn'\n",
  6099. "Compiling: 'tn_list'\n",
  6100. "\t110 entries\n",
  6101. "Compiling: 'tn_extra'\n",
  6102. "\t0 entries\n",
  6103. "Compiling: 'tn_rules'\n",
  6104. "\t82 rules, 27 groups (0)\n",
  6105. "\n",
  6106. "touch dictsource/tr_extra\n",
  6107. " DICT espeak-ng-data/tr_dict\n",
  6108. "rm -f espeak-ng-data/tr_dict\n",
  6109. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"tr\"\n",
  6110. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/tr_dict'\n",
  6111. "Using phonemetable: 'tr'\n",
  6112. "Compiling: 'tr_listx'\n",
  6113. "\t147 entries\n",
  6114. "Compiling: 'tr_list'\n",
  6115. "\t175 entries\n",
  6116. "Compiling: 'tr_emoji'\n",
  6117. "\t1639 entries\n",
  6118. "Compiling: 'tr_extra'\n",
  6119. "\t0 entries\n",
  6120. "Compiling: 'tr_rules'\n",
  6121. "\t215 rules, 37 groups (0)\n",
  6122. "\n",
  6123. "touch dictsource/tt_extra\n",
  6124. " DICT espeak-ng-data/tt_dict\n",
  6125. "rm -f espeak-ng-data/tt_dict\n",
  6126. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"tt\"\n",
  6127. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/tt_dict'\n",
  6128. "Using phonemetable: 'tt'\n",
  6129. "Compiling: 'tt_list'\n",
  6130. "\t74 entries\n",
  6131. "Compiling: 'tt_extra'\n",
  6132. "\t0 entries\n",
  6133. "Compiling: 'tt_rules'\n",
  6134. "\t49 rules, 40 groups (34)\n",
  6135. "\n",
  6136. "touch dictsource/uk_extra\n",
  6137. " DICT espeak-ng-data/uk_dict\n",
  6138. "rm -f espeak-ng-data/uk_dict\n",
  6139. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"uk\"\n",
  6140. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/uk_dict'\n",
  6141. "Using phonemetable: 'uk'\n",
  6142. "Compiling: 'uk_list'\n",
  6143. "\t167 entries\n",
  6144. "Compiling: 'uk_extra'\n",
  6145. "\t0 entries\n",
  6146. "Compiling: 'uk_rules'\n",
  6147. "\t47 rules, 34 groups (33)\n",
  6148. "\n",
  6149. "touch dictsource/ug_extra\n",
  6150. " DICT espeak-ng-data/ug_dict\n",
  6151. "rm -f espeak-ng-data/ug_dict\n",
  6152. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ug\"\n",
  6153. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ug_dict'\n",
  6154. "Using phonemetable: 'ug'\n",
  6155. "Compiling: 'ug_list'\n",
  6156. "\t37 entries\n",
  6157. "Compiling: 'ug_extra'\n",
  6158. "\t0 entries\n",
  6159. "Compiling: 'ug_rules'\n",
  6160. "\t81 rules, 61 groups (0)\n",
  6161. "\n",
  6162. "touch dictsource/ur_extra\n",
  6163. " DICT espeak-ng-data/ur_dict\n",
  6164. "rm -f espeak-ng-data/ur_dict\n",
  6165. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"ur\"\n",
  6166. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/ur_dict'\n",
  6167. "Using phonemetable: 'ur'\n",
  6168. "Compiling: 'ur_list'\n",
  6169. "\t3028 entries\n",
  6170. "Compiling: 'ur_emoji'\n",
  6171. "\t1639 entries\n",
  6172. "Compiling: 'ur_extra'\n",
  6173. "\t0 entries\n",
  6174. "Compiling: 'ur_rules'\n",
  6175. "\t1488 rules, 62 groups (44)\n",
  6176. "\n",
  6177. "touch dictsource/uz_extra\n",
  6178. " DICT espeak-ng-data/uz_dict\n",
  6179. "rm -f espeak-ng-data/uz_dict\n",
  6180. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"uz\"\n",
  6181. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/uz_dict'\n",
  6182. "Using phonemetable: 'uz'\n",
  6183. "Compiling: 'uz_list'\n",
  6184. "\t122 entries\n",
  6185. "Compiling: 'uz_extra'\n",
  6186. "\t0 entries\n",
  6187. "Compiling: 'uz_rules'\n",
  6188. "\t35 rules, 26 groups (0)\n",
  6189. "\n",
  6190. "touch dictsource/vi_extra\n",
  6191. " DICT espeak-ng-data/vi_dict\n",
  6192. "rm -f espeak-ng-data/vi_dict\n",
  6193. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"vi\"\n",
  6194. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/vi_dict'\n",
  6195. "Using phonemetable: 'vi'\n",
  6196. "Compiling: 'vi_list'\n",
  6197. "\t135 entries\n",
  6198. "Compiling: 'vi_emoji'\n",
  6199. "\t1639 entries\n",
  6200. "Compiling: 'vi_extra'\n",
  6201. "\t0 entries\n",
  6202. "Compiling: 'vi_rules'\n",
  6203. "\t592 rules, 97 groups (0)\n",
  6204. "\n",
  6205. " DICT espeak-ng-data/xex_dict\n",
  6206. "rm -f espeak-ng-data/xex_dict\n",
  6207. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng ../src/espeak-ng --compile=\"xex\"\n",
  6208. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/xex_dict'\n",
  6209. "Using phonemetable: 'pt'\n",
  6210. "Compiling: 'xex_list'\n",
  6211. " 19: Need to compile dictionary again\n",
  6212. " 22: Need to compile dictionary again\n",
  6213. " 26: Need to compile dictionary again\n",
  6214. "\t43 entries\n",
  6215. "Compiling: 'xex_rules'\n",
  6216. "\t434 rules, 52 groups (0)\n",
  6217. "\n",
  6218. "touch dictsource/yue_extra\n",
  6219. "ln -svf extra/yue_listx dictsource/\n",
  6220. "'dictsource/yue_listx' -> 'extra/yue_listx'\n",
  6221. " DICT espeak-ng-data/yue_dict\n",
  6222. "rm -f espeak-ng-data/yue_dict\n",
  6223. "cd dictsource && ESPEAK_DATA_PATH=/content/espeak-ng LD_LIBRARY_PATH=../src:/usr/local/nvidia/lib:/usr/local/nvidia/lib64 ../src/espeak-ng --compile=yue && cd ..\n",
  6224. "Can't read dictionary file: '/content/espeak-ng/espeak-ng-data/yue_dict'\n",
  6225. "Using phonemetable: 'yue'\n",
  6226. "Compiling: 'yue_list'\n",
  6227. "\t3822 entries\n",
  6228. "Compiling: 'yue_listx'\n",
  6229. "\t33813 entries\n",
  6230. "Compiling: 'yue_emoji'\n",
  6231. "\t1635 entries\n",
  6232. "Compiling: 'yue_extra'\n",
  6233. "\t0 entries\n",
  6234. "Compiling: 'yue_rules'\n",
  6235. "\t79 rules, 27 groups (0)\n",
  6236. "\n",
  6237. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6238. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/af1\n",
  6239. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/af1_phtrans -- 67 phonemes\n",
  6240. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6241. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/ar1\n",
  6242. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/ar1_phtrans -- 66 phonemes\n",
  6243. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6244. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/ar2\n",
  6245. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/ar2_phtrans -- 66 phonemes\n",
  6246. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6247. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/ca\n",
  6248. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/ca_phtrans -- 82 phonemes\n",
  6249. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6250. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/cmn\n",
  6251. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/cmn_phtrans -- 61 phonemes\n",
  6252. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6253. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/cr1\n",
  6254. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/cr1_phtrans -- 89 phonemes\n",
  6255. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6256. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/cs\n",
  6257. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/cs_phtrans -- 23 phonemes\n",
  6258. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6259. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/de2\n",
  6260. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/de2_phtrans -- 71 phonemes\n",
  6261. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6262. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/de4\n",
  6263. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/de4_phtrans -- 74 phonemes\n",
  6264. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6265. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/de6\n",
  6266. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/de6_phtrans -- 60 phonemes\n",
  6267. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6268. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/de8\n",
  6269. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/de8_phtrans -- 47 phonemes\n",
  6270. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6271. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/ee1\n",
  6272. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/ee1_phtrans -- 59 phonemes\n",
  6273. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6274. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/en1\n",
  6275. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/en1_phtrans -- 32 phonemes\n",
  6276. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6277. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/es\n",
  6278. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/es_phtrans -- 71 phonemes\n",
  6279. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6280. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/es3\n",
  6281. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/es3_phtrans -- 43 phonemes\n",
  6282. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6283. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/es4\n",
  6284. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/es4_phtrans -- 45 phonemes\n",
  6285. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6286. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/fr\n",
  6287. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/fr_phtrans -- 81 phonemes\n",
  6288. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6289. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/gr1\n",
  6290. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/gr1_phtrans -- 91 phonemes\n",
  6291. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6292. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/gr2\n",
  6293. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/gr2_phtrans -- 91 phonemes\n",
  6294. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6295. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/grc-de6\n",
  6296. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/grc-de6_phtrans -- 19 phonemes\n",
  6297. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6298. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/he\n",
  6299. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/he_phtrans -- 30 phonemes\n",
  6300. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6301. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/hn1\n",
  6302. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/hn1_phtrans -- 21 phonemes\n",
  6303. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6304. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/hu1\n",
  6305. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/hu1_phtrans -- 59 phonemes\n",
  6306. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6307. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/ic1\n",
  6308. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/ic1_phtrans -- 46 phonemes\n",
  6309. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6310. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/id1\n",
  6311. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/id1_phtrans -- 70 phonemes\n",
  6312. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6313. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/in\n",
  6314. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/in_phtrans -- 59 phonemes\n",
  6315. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6316. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/ir1\n",
  6317. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/ir1_phtrans -- 241 phonemes\n",
  6318. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6319. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/it1\n",
  6320. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/it1_phtrans -- 54 phonemes\n",
  6321. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6322. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/it3\n",
  6323. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/it3_phtrans -- 36 phonemes\n",
  6324. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6325. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/jp\n",
  6326. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/jp_phtrans -- 42 phonemes\n",
  6327. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6328. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/la1\n",
  6329. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/la1_phtrans -- 30 phonemes\n",
  6330. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6331. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/lt\n",
  6332. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/lt_phtrans -- 43 phonemes\n",
  6333. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6334. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/ma1\n",
  6335. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/ma1_phtrans -- 38 phonemes\n",
  6336. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6337. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/mx1\n",
  6338. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/mx1_phtrans -- 74 phonemes\n",
  6339. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6340. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/mx2\n",
  6341. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/mx2_phtrans -- 75 phonemes\n",
  6342. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6343. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/nl\n",
  6344. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/nl_phtrans -- 69 phonemes\n",
  6345. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6346. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/nz1\n",
  6347. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/nz1_phtrans -- 29 phonemes\n",
  6348. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6349. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/pl1\n",
  6350. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/pl1_phtrans -- 65 phonemes\n",
  6351. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6352. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/pt1\n",
  6353. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/pt1_phtrans -- 86 phonemes\n",
  6354. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6355. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/ptbr\n",
  6356. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/ptbr_phtrans -- 119 phonemes\n",
  6357. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6358. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/ptbr2xex\n",
  6359. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/ptbr2xex_phtrans -- 217 phonemes\n",
  6360. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6361. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/ptbr4\n",
  6362. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/ptbr4_phtrans -- 97 phonemes\n",
  6363. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6364. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/ptbr4xex\n",
  6365. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/ptbr4xex_phtrans -- 217 phonemes\n",
  6366. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6367. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/ptbrxex\n",
  6368. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/ptbrxex_phtrans -- 219 phonemes\n",
  6369. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6370. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/ro1\n",
  6371. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/ro1_phtrans -- 89 phonemes\n",
  6372. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6373. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/sv\n",
  6374. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/sv_phtrans -- 65 phonemes\n",
  6375. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6376. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/sv2\n",
  6377. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/sv2_phtrans -- 65 phonemes\n",
  6378. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6379. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/tl1\n",
  6380. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/tl1_phtrans -- 31 phonemes\n",
  6381. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6382. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/tr1\n",
  6383. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/tr1_phtrans -- 14 phonemes\n",
  6384. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6385. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/us\n",
  6386. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/us_phtrans -- 50 phonemes\n",
  6387. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6388. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/us3\n",
  6389. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/us3_phtrans -- 47 phonemes\n",
  6390. "mkdir -p espeak-ng-data/mbrola_ph\n",
  6391. "ESPEAK_DATA_PATH=/content/espeak-ng src/espeak-ng --compile-mbrola=phsource/mbrola/vz\n",
  6392. "Mbrola translation file: /content/espeak-ng/espeak-ng-data/mbrola_ph/vz_phtrans -- 94 phonemes\n",
  6393. "make[1]: Leaving directory '/content/espeak-ng'\n",
  6394. "Makefile:3129: warning: ignoring prerequisites on suffix rule definition\n",
  6395. "make: Circular phsource/phonemes.stamp <- phsource/phonemes.stamp dependency dropped.\n",
  6396. "make[1]: Entering directory '/content/espeak-ng'\n",
  6397. "Makefile:3129: warning: ignoring prerequisites on suffix rule definition\n",
  6398. " /usr/bin/mkdir -p '/usr/lib'\n",
  6399. " /bin/bash ./libtool --mode=install /usr/bin/install -c src/libespeak-ng.la '/usr/lib'\n",
  6400. "libtool: install: /usr/bin/install -c src/.libs/libespeak-ng.so.1.1.51 /usr/lib/libespeak-ng.so.1.1.51\n",
  6401. "libtool: install: (cd /usr/lib && { ln -s -f libespeak-ng.so.1.1.51 libespeak-ng.so.1 || { rm -f libespeak-ng.so.1 && ln -s libespeak-ng.so.1.1.51 libespeak-ng.so.1; }; })\n",
  6402. "libtool: install: (cd /usr/lib && { ln -s -f libespeak-ng.so.1.1.51 libespeak-ng.so || { rm -f libespeak-ng.so && ln -s libespeak-ng.so.1.1.51 libespeak-ng.so; }; })\n",
  6403. "libtool: install: /usr/bin/install -c src/.libs/libespeak-ng.lai /usr/lib/libespeak-ng.la\n",
  6404. "libtool: install: /usr/bin/install -c src/.libs/libespeak-ng.a /usr/lib/libespeak-ng.a\n",
  6405. "libtool: install: chmod 644 /usr/lib/libespeak-ng.a\n",
  6406. "libtool: install: ranlib /usr/lib/libespeak-ng.a\n",
  6407. "libtool: finish: PATH=\"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin\" ldconfig -n /usr/lib\n",
  6408. "----------------------------------------------------------------------\n",
  6409. "Libraries have been installed in:\n",
  6410. " /usr/lib\n",
  6411. "\n",
  6412. "If you ever happen to want to link against installed libraries\n",
  6413. "in a given directory, LIBDIR, you must either use libtool, and\n",
  6414. "specify the full pathname of the library, or use the '-LLIBDIR'\n",
  6415. "flag during linking and do at least one of the following:\n",
  6416. " - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable\n",
  6417. " during execution\n",
  6418. " - add LIBDIR to the 'LD_RUN_PATH' environment variable\n",
  6419. " during linking\n",
  6420. " - use the '-Wl,-rpath -Wl,LIBDIR' linker flag\n",
  6421. " - have your system administrator add LIBDIR to '/etc/ld.so.conf'\n",
  6422. "\n",
  6423. "See any operating system documentation about shared libraries for\n",
  6424. "more information, such as the ld(1) and ld.so(8) manual pages.\n",
  6425. "----------------------------------------------------------------------\n",
  6426. " /usr/bin/mkdir -p '/usr/bin'\n",
  6427. " /bin/bash ./libtool --mode=install /usr/bin/install -c src/speak-ng src/espeak-ng '/usr/bin'\n",
  6428. "libtool: install: /usr/bin/install -c src/speak-ng /usr/bin/speak-ng\n",
  6429. "libtool: install: /usr/bin/install -c src/.libs/espeak-ng /usr/bin/espeak-ng\n",
  6430. "make install-exec-hook\n",
  6431. "make[2]: Entering directory '/content/espeak-ng'\n",
  6432. "Makefile:3129: warning: ignoring prerequisites on suffix rule definition\n",
  6433. "cd /usr/bin && rm -f espeak && ln -s espeak-ng espeak\n",
  6434. "cd /usr/bin && rm -f speak && ln -s speak-ng speak\n",
  6435. "cd /usr/lib/x86_64-linux-gnu && rm -f libespeak.la && ln -s libespeak-ng.la libespeak.la\n",
  6436. "make[2]: Leaving directory '/content/espeak-ng'\n",
  6437. " /usr/bin/mkdir -p '/usr/include/espeak'\n",
  6438. " /usr/bin/install -c -m 644 src/include/espeak/speak_lib.h '/usr/include/espeak'\n",
  6439. " /usr/bin/mkdir -p '/usr/include/espeak-ng'\n",
  6440. " /usr/bin/install -c -m 644 src/include/espeak-ng/encoding.h src/include/espeak-ng/espeak_ng.h src/include/espeak-ng/speak_lib.h '/usr/include/espeak-ng'\n",
  6441. " /usr/bin/mkdir -p '/usr/share/man/man1'\n",
  6442. " /usr/bin/install -c -m 644 src/speak-ng.1 src/espeak-ng.1 '/usr/share/man/man1'\n",
  6443. " /usr/bin/mkdir -p '/usr/lib/pkgconfig'\n",
  6444. " /usr/bin/install -c -m 644 espeak-ng.pc '/usr/lib/pkgconfig'\n",
  6445. " /usr/bin/mkdir -p '/usr/share/vim/addons/ftdetect'\n",
  6446. " /usr/bin/install -c -m 644 ./vim/ftdetect/espeakfiletype.vim '/usr/share/vim/addons/ftdetect'\n",
  6447. " /usr/bin/mkdir -p '/usr/share/vim/addons/syntax'\n",
  6448. " /usr/bin/install -c -m 644 ./vim/syntax/espeaklist.vim ./vim/syntax/espeakrules.vim '/usr/share/vim/addons/syntax'\n",
  6449. " /usr/bin/mkdir -p '/usr/share/vim/registry'\n",
  6450. " /usr/bin/install -c -m 644 ./vim/registry/espeak.yaml '/usr/share/vim/registry'\n",
  6451. "make install-data-hook\n",
  6452. "make[2]: Entering directory '/content/espeak-ng'\n",
  6453. "Makefile:3129: warning: ignoring prerequisites on suffix rule definition\n",
  6454. "rm -rf /usr/share/espeak-ng-data\n",
  6455. "mkdir -p /usr/share/espeak-ng-data\n",
  6456. "cp -prf espeak-ng-data/* /usr/share/espeak-ng-data\n",
  6457. "make[2]: Leaving directory '/content/espeak-ng'\n",
  6458. "make[1]: Leaving directory '/content/espeak-ng'\n"
  6459. ]
  6460. }
  6461. ]
  6462. },
  6463. {
  6464. "cell_type": "code",
  6465. "source": [
  6466. "import re\n",
  6467. "\n",
  6468. "def transform_text(text):\n",
  6469. " \"\"\"\n",
  6470. " Transform text according to specified rules:\n",
  6471. " 1. Apply phoneme substitutions\n",
  6472. " 2. Add question marks before vowels at word boundaries\n",
  6473. " 3. Remove specific symbols\n",
  6474. "\n",
  6475. " Args:\n",
  6476. " text (str): Input text to transform\n",
  6477. "\n",
  6478. " Returns:\n",
  6479. " str: Transformed text\n",
  6480. " \"\"\"\n",
  6481. " # Define the consonant and vowel regex patterns\n",
  6482. " consonants = ['q', 'r', 't', 'y', 'p', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l',\n",
  6483. " 'z', 'x', 'c', 'v', 'b', 'n', 'm', 'Q', 'R', 'T', 'Y', 'P', 'S',\n",
  6484. " 'D', 'F', 'G', 'H', 'J', 'K', 'L', 'Z', 'X', 'C', 'V', 'B', 'N', 'M']\n",
  6485. " vowels = ['a', 'A', 'e', 'i', 'u', 'o']\n",
  6486. "\n",
  6487. " consonants_regex = '(?=' + '|'.join(consonants) + ')'\n",
  6488. " vowels_regex = '(?=' + '|'.join(vowels) + ')'\n",
  6489. "\n",
  6490. " # Step 1: Apply phoneme substitutions\n",
  6491. " substitutions = {\n",
  6492. " 'tS': 'C',\n",
  6493. " 'j': 'y',\n",
  6494. " 'dZ': 'j',\n",
  6495. " 'R': 'r',\n",
  6496. " 'q1': 'q',\n",
  6497. " }\n",
  6498. "\n",
  6499. " for old, new in substitutions.items():\n",
  6500. " text = text.replace(old, new)\n",
  6501. "\n",
  6502. " # Step 3: Remove specific symbols\n",
  6503. " symbols_to_remove = [\"'\", \":\", \",\"]\n",
  6504. " for symbol in symbols_to_remove:\n",
  6505. " text = text.replace(symbol, '')\n",
  6506. "\n",
  6507. " # Step 2: Add question marks before vowels at word boundaries\n",
  6508. " text = re.sub(rf'([^\\w\\-\\?]|^){vowels_regex}', r'\\1?', text)\n",
  6509. "\n",
  6510. " return text\n"
  6511. ],
  6512. "metadata": {
  6513. "id": "kwOHbGP9FWJs"
  6514. },
  6515. "execution_count": null,
  6516. "outputs": []
  6517. },
  6518. {
  6519. "cell_type": "code",
  6520. "source": [
  6521. "import subprocess\n",
  6522. "\n",
  6523. "def text_to_phonemes(input_file, output_file, voice='fa', ipa=False, tie_character=None, separator=None):\n",
  6524. " \"\"\"\n",
  6525. " Convert text to phonemes using espeak-ng.\n",
  6526. "\n",
  6527. " Args:\n",
  6528. " input_file (str): Path to input file containing text to convert (one per line)\n",
  6529. " output_file (str): Path to output file where phonemes will be written\n",
  6530. " voice (str, optional): Voice to use (e.g., 'en-us', 'fr'). Defaults to 'fa'.\n",
  6531. " ipa (bool, optional): Use International Phonetic Alphabet. Defaults to False.\n",
  6532. " tie_character (str, optional): Character to join multi-letter phonemes. Defaults to None.\n",
  6533. " separator (str, optional): Character to separate phonemes. Defaults to None.\n",
  6534. " \"\"\"\n",
  6535. " base_command = ['espeak-ng', '-q', '-x'] # -q for quiet, -x for phoneme output\n",
  6536. "\n",
  6537. " if voice:\n",
  6538. " base_command.extend(['-v', voice])\n",
  6539. " if ipa:\n",
  6540. " base_command.append('--ipa')\n",
  6541. " if tie_character:\n",
  6542. " base_command.extend(['--tie', tie_character])\n",
  6543. " if separator:\n",
  6544. " base_command.extend(['--sep', separator])\n",
  6545. "\n",
  6546. " # Use --input and --output instead of --batch\n",
  6547. " command = base_command.copy()\n",
  6548. " command.extend(['--input', input_file, '--output', output_file])\n",
  6549. "\n",
  6550. " try:\n",
  6551. " subprocess.run(\n",
  6552. " command,\n",
  6553. " check=True,\n",
  6554. " stdout=subprocess.PIPE,\n",
  6555. " stderr=subprocess.PIPE,\n",
  6556. " text=True\n",
  6557. " )\n",
  6558. " except subprocess.CalledProcessError as e:\n",
  6559. " raise RuntimeError(f\"espeak-ng processing failed: {e.stderr}\") from e\n",
  6560. " except FileNotFoundError as e:\n",
  6561. " raise RuntimeError(\"espeak-ng is not installed or not in PATH\") from e"
  6562. ],
  6563. "metadata": {
  6564. "id": "9KltSmrIx0aN"
  6565. },
  6566. "execution_count": null,
  6567. "outputs": []
  6568. },
  6569. {
  6570. "cell_type": "code",
  6571. "source": [
  6572. "import pandas as pd\n",
  6573. "import re\n",
  6574. "from jiwer import cer"
  6575. ],
  6576. "metadata": {
  6577. "id": "24nnAZc3c8gd"
  6578. },
  6579. "execution_count": null,
  6580. "outputs": []
  6581. },
  6582. {
  6583. "cell_type": "markdown",
  6584. "metadata": {
  6585. "id": "XjAPkfq7SF87"
  6586. },
  6587. "source": [
  6588. "# Get Evaluation Data"
  6589. ]
  6590. },
  6591. {
  6592. "cell_type": "code",
  6593. "source": [
  6594. "!wget https://huggingface.co/datasets/MahtaFetrat/SentenceBench/raw/main/SentenceBench.csv"
  6595. ],
  6596. "metadata": {
  6597. "id": "qwCG0jX-88nQ",
  6598. "colab": {
  6599. "base_uri": "https://localhost:8080/"
  6600. },
  6601. "outputId": "d7eeaa1a-eeb5-407b-e95e-cc5f55cceb38"
  6602. },
  6603. "execution_count": null,
  6604. "outputs": [
  6605. {
  6606. "output_type": "stream",
  6607. "name": "stdout",
  6608. "text": [
  6609. "--2025-05-10 20:12:38-- https://huggingface.co/datasets/MahtaFetrat/SentenceBench/raw/main/SentenceBench.csv\n",
  6610. "Resolving huggingface.co (huggingface.co)... 13.226.52.35, 13.226.52.8, 13.226.52.100, ...\n",
  6611. "Connecting to huggingface.co (huggingface.co)|13.226.52.35|:443... connected.\n",
  6612. "HTTP request sent, awaiting response... 200 OK\n",
  6613. "Length: 56026 (55K) [text/plain]\n",
  6614. "Saving to: ‘SentenceBench.csv’\n",
  6615. "\n",
  6616. "\rSentenceBench.csv 0%[ ] 0 --.-KB/s \rSentenceBench.csv 100%[===================>] 54.71K --.-KB/s in 0.01s \n",
  6617. "\n",
  6618. "2025-05-10 20:12:38 (3.79 MB/s) - ‘SentenceBench.csv’ saved [56026/56026]\n",
  6619. "\n"
  6620. ]
  6621. }
  6622. ]
  6623. },
  6624. {
  6625. "cell_type": "code",
  6626. "source": [
  6627. "sentence_bench = pd.read_csv('SentenceBench.csv')"
  6628. ],
  6629. "metadata": {
  6630. "id": "hJO-UAPDQvcb"
  6631. },
  6632. "execution_count": null,
  6633. "outputs": []
  6634. },
  6635. {
  6636. "cell_type": "code",
  6637. "source": [
  6638. "sentence_bench.head(3)"
  6639. ],
  6640. "metadata": {
  6641. "colab": {
  6642. "base_uri": "https://localhost:8080/",
  6643. "height": 143
  6644. },
  6645. "id": "qlYbrnUa9LAN",
  6646. "outputId": "6966abfc-7868-4833-cb9f-00a81bea7157"
  6647. },
  6648. "execution_count": null,
  6649. "outputs": [
  6650. {
  6651. "output_type": "execute_result",
  6652. "data": {
  6653. "text/plain": [
  6654. " dataset grapheme \\\n",
  6655. "0 homograph من قدر تو را می‌دانم \n",
  6656. "1 homograph از قضای الهی به قدر الهی پناه می‌برم \n",
  6657. "2 homograph به دست و صورتم کرم زدم \n",
  6658. "\n",
  6659. " phoneme homograph word \\\n",
  6660. "0 man qadr-e to rA mi-dAnam قدر \n",
  6661. "1 ?az qazAy ?elAhi be qadar-e ?elAhi panAh mi-baram قدر \n",
  6662. "2 be dast-o suratam kerem zadam کرم \n",
  6663. "\n",
  6664. " pronunciation \n",
  6665. "0 qadr \n",
  6666. "1 qadar \n",
  6667. "2 kerem "
  6668. ],
  6669. "text/html": [
  6670. "\n",
  6671. " <div id=\"df-4e3cb453-d4a6-40c8-9c10-9563644858a9\" class=\"colab-df-container\">\n",
  6672. " <div>\n",
  6673. "<style scoped>\n",
  6674. " .dataframe tbody tr th:only-of-type {\n",
  6675. " vertical-align: middle;\n",
  6676. " }\n",
  6677. "\n",
  6678. " .dataframe tbody tr th {\n",
  6679. " vertical-align: top;\n",
  6680. " }\n",
  6681. "\n",
  6682. " .dataframe thead th {\n",
  6683. " text-align: right;\n",
  6684. " }\n",
  6685. "</style>\n",
  6686. "<table border=\"1\" class=\"dataframe\">\n",
  6687. " <thead>\n",
  6688. " <tr style=\"text-align: right;\">\n",
  6689. " <th></th>\n",
  6690. " <th>dataset</th>\n",
  6691. " <th>grapheme</th>\n",
  6692. " <th>phoneme</th>\n",
  6693. " <th>homograph word</th>\n",
  6694. " <th>pronunciation</th>\n",
  6695. " </tr>\n",
  6696. " </thead>\n",
  6697. " <tbody>\n",
  6698. " <tr>\n",
  6699. " <th>0</th>\n",
  6700. " <td>homograph</td>\n",
  6701. " <td>من قدر تو را می‌دانم</td>\n",
  6702. " <td>man qadr-e to rA mi-dAnam</td>\n",
  6703. " <td>قدر</td>\n",
  6704. " <td>qadr</td>\n",
  6705. " </tr>\n",
  6706. " <tr>\n",
  6707. " <th>1</th>\n",
  6708. " <td>homograph</td>\n",
  6709. " <td>از قضای الهی به قدر الهی پناه می‌برم</td>\n",
  6710. " <td>?az qazAy ?elAhi be qadar-e ?elAhi panAh mi-baram</td>\n",
  6711. " <td>قدر</td>\n",
  6712. " <td>qadar</td>\n",
  6713. " </tr>\n",
  6714. " <tr>\n",
  6715. " <th>2</th>\n",
  6716. " <td>homograph</td>\n",
  6717. " <td>به دست و صورتم کرم زدم</td>\n",
  6718. " <td>be dast-o suratam kerem zadam</td>\n",
  6719. " <td>کرم</td>\n",
  6720. " <td>kerem</td>\n",
  6721. " </tr>\n",
  6722. " </tbody>\n",
  6723. "</table>\n",
  6724. "</div>\n",
  6725. " <div class=\"colab-df-buttons\">\n",
  6726. "\n",
  6727. " <div class=\"colab-df-container\">\n",
  6728. " <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-4e3cb453-d4a6-40c8-9c10-9563644858a9')\"\n",
  6729. " title=\"Convert this dataframe to an interactive table.\"\n",
  6730. " style=\"display:none;\">\n",
  6731. "\n",
  6732. " <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
  6733. " <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
  6734. " </svg>\n",
  6735. " </button>\n",
  6736. "\n",
  6737. " <style>\n",
  6738. " .colab-df-container {\n",
  6739. " display:flex;\n",
  6740. " gap: 12px;\n",
  6741. " }\n",
  6742. "\n",
  6743. " .colab-df-convert {\n",
  6744. " background-color: #E8F0FE;\n",
  6745. " border: none;\n",
  6746. " border-radius: 50%;\n",
  6747. " cursor: pointer;\n",
  6748. " display: none;\n",
  6749. " fill: #1967D2;\n",
  6750. " height: 32px;\n",
  6751. " padding: 0 0 0 0;\n",
  6752. " width: 32px;\n",
  6753. " }\n",
  6754. "\n",
  6755. " .colab-df-convert:hover {\n",
  6756. " background-color: #E2EBFA;\n",
  6757. " box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
  6758. " fill: #174EA6;\n",
  6759. " }\n",
  6760. "\n",
  6761. " .colab-df-buttons div {\n",
  6762. " margin-bottom: 4px;\n",
  6763. " }\n",
  6764. "\n",
  6765. " [theme=dark] .colab-df-convert {\n",
  6766. " background-color: #3B4455;\n",
  6767. " fill: #D2E3FC;\n",
  6768. " }\n",
  6769. "\n",
  6770. " [theme=dark] .colab-df-convert:hover {\n",
  6771. " background-color: #434B5C;\n",
  6772. " box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
  6773. " filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
  6774. " fill: #FFFFFF;\n",
  6775. " }\n",
  6776. " </style>\n",
  6777. "\n",
  6778. " <script>\n",
  6779. " const buttonEl =\n",
  6780. " document.querySelector('#df-4e3cb453-d4a6-40c8-9c10-9563644858a9 button.colab-df-convert');\n",
  6781. " buttonEl.style.display =\n",
  6782. " google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
  6783. "\n",
  6784. " async function convertToInteractive(key) {\n",
  6785. " const element = document.querySelector('#df-4e3cb453-d4a6-40c8-9c10-9563644858a9');\n",
  6786. " const dataTable =\n",
  6787. " await google.colab.kernel.invokeFunction('convertToInteractive',\n",
  6788. " [key], {});\n",
  6789. " if (!dataTable) return;\n",
  6790. "\n",
  6791. " const docLinkHtml = 'Like what you see? Visit the ' +\n",
  6792. " '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
  6793. " + ' to learn more about interactive tables.';\n",
  6794. " element.innerHTML = '';\n",
  6795. " dataTable['output_type'] = 'display_data';\n",
  6796. " await google.colab.output.renderOutput(dataTable, element);\n",
  6797. " const docLink = document.createElement('div');\n",
  6798. " docLink.innerHTML = docLinkHtml;\n",
  6799. " element.appendChild(docLink);\n",
  6800. " }\n",
  6801. " </script>\n",
  6802. " </div>\n",
  6803. "\n",
  6804. "\n",
  6805. " <div id=\"df-365e4c64-c599-455f-9c95-c1b9b1f63288\">\n",
  6806. " <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-365e4c64-c599-455f-9c95-c1b9b1f63288')\"\n",
  6807. " title=\"Suggest charts\"\n",
  6808. " style=\"display:none;\">\n",
  6809. "\n",
  6810. "<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
  6811. " width=\"24px\">\n",
  6812. " <g>\n",
  6813. " <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
  6814. " </g>\n",
  6815. "</svg>\n",
  6816. " </button>\n",
  6817. "\n",
  6818. "<style>\n",
  6819. " .colab-df-quickchart {\n",
  6820. " --bg-color: #E8F0FE;\n",
  6821. " --fill-color: #1967D2;\n",
  6822. " --hover-bg-color: #E2EBFA;\n",
  6823. " --hover-fill-color: #174EA6;\n",
  6824. " --disabled-fill-color: #AAA;\n",
  6825. " --disabled-bg-color: #DDD;\n",
  6826. " }\n",
  6827. "\n",
  6828. " [theme=dark] .colab-df-quickchart {\n",
  6829. " --bg-color: #3B4455;\n",
  6830. " --fill-color: #D2E3FC;\n",
  6831. " --hover-bg-color: #434B5C;\n",
  6832. " --hover-fill-color: #FFFFFF;\n",
  6833. " --disabled-bg-color: #3B4455;\n",
  6834. " --disabled-fill-color: #666;\n",
  6835. " }\n",
  6836. "\n",
  6837. " .colab-df-quickchart {\n",
  6838. " background-color: var(--bg-color);\n",
  6839. " border: none;\n",
  6840. " border-radius: 50%;\n",
  6841. " cursor: pointer;\n",
  6842. " display: none;\n",
  6843. " fill: var(--fill-color);\n",
  6844. " height: 32px;\n",
  6845. " padding: 0;\n",
  6846. " width: 32px;\n",
  6847. " }\n",
  6848. "\n",
  6849. " .colab-df-quickchart:hover {\n",
  6850. " background-color: var(--hover-bg-color);\n",
  6851. " box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
  6852. " fill: var(--button-hover-fill-color);\n",
  6853. " }\n",
  6854. "\n",
  6855. " .colab-df-quickchart-complete:disabled,\n",
  6856. " .colab-df-quickchart-complete:disabled:hover {\n",
  6857. " background-color: var(--disabled-bg-color);\n",
  6858. " fill: var(--disabled-fill-color);\n",
  6859. " box-shadow: none;\n",
  6860. " }\n",
  6861. "\n",
  6862. " .colab-df-spinner {\n",
  6863. " border: 2px solid var(--fill-color);\n",
  6864. " border-color: transparent;\n",
  6865. " border-bottom-color: var(--fill-color);\n",
  6866. " animation:\n",
  6867. " spin 1s steps(1) infinite;\n",
  6868. " }\n",
  6869. "\n",
  6870. " @keyframes spin {\n",
  6871. " 0% {\n",
  6872. " border-color: transparent;\n",
  6873. " border-bottom-color: var(--fill-color);\n",
  6874. " border-left-color: var(--fill-color);\n",
  6875. " }\n",
  6876. " 20% {\n",
  6877. " border-color: transparent;\n",
  6878. " border-left-color: var(--fill-color);\n",
  6879. " border-top-color: var(--fill-color);\n",
  6880. " }\n",
  6881. " 30% {\n",
  6882. " border-color: transparent;\n",
  6883. " border-left-color: var(--fill-color);\n",
  6884. " border-top-color: var(--fill-color);\n",
  6885. " border-right-color: var(--fill-color);\n",
  6886. " }\n",
  6887. " 40% {\n",
  6888. " border-color: transparent;\n",
  6889. " border-right-color: var(--fill-color);\n",
  6890. " border-top-color: var(--fill-color);\n",
  6891. " }\n",
  6892. " 60% {\n",
  6893. " border-color: transparent;\n",
  6894. " border-right-color: var(--fill-color);\n",
  6895. " }\n",
  6896. " 80% {\n",
  6897. " border-color: transparent;\n",
  6898. " border-right-color: var(--fill-color);\n",
  6899. " border-bottom-color: var(--fill-color);\n",
  6900. " }\n",
  6901. " 90% {\n",
  6902. " border-color: transparent;\n",
  6903. " border-bottom-color: var(--fill-color);\n",
  6904. " }\n",
  6905. " }\n",
  6906. "</style>\n",
  6907. "\n",
  6908. " <script>\n",
  6909. " async function quickchart(key) {\n",
  6910. " const quickchartButtonEl =\n",
  6911. " document.querySelector('#' + key + ' button');\n",
  6912. " quickchartButtonEl.disabled = true; // To prevent multiple clicks.\n",
  6913. " quickchartButtonEl.classList.add('colab-df-spinner');\n",
  6914. " try {\n",
  6915. " const charts = await google.colab.kernel.invokeFunction(\n",
  6916. " 'suggestCharts', [key], {});\n",
  6917. " } catch (error) {\n",
  6918. " console.error('Error during call to suggestCharts:', error);\n",
  6919. " }\n",
  6920. " quickchartButtonEl.classList.remove('colab-df-spinner');\n",
  6921. " quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
  6922. " }\n",
  6923. " (() => {\n",
  6924. " let quickchartButtonEl =\n",
  6925. " document.querySelector('#df-365e4c64-c599-455f-9c95-c1b9b1f63288 button');\n",
  6926. " quickchartButtonEl.style.display =\n",
  6927. " google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
  6928. " })();\n",
  6929. " </script>\n",
  6930. " </div>\n",
  6931. " </div>\n",
  6932. " </div>\n"
  6933. ],
  6934. "application/vnd.google.colaboratory.intrinsic+json": {
  6935. "type": "dataframe",
  6936. "variable_name": "sentence_bench",
  6937. "summary": "{\n \"name\": \"sentence_bench\",\n \"rows\": 400,\n \"fields\": [\n {\n \"column\": \"dataset\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"homograph\",\n \"mana-tts\",\n \"commonvoice\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"grapheme\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 400,\n \"samples\": [\n \"\\u0622\\u06cc\\u0627 \\u0628\\u0627\\u06cc\\u062f \\u062d\\u0642\\u06cc\\u0642\\u062a \\u0631\\u0627 \\u0628\\u0647 \\u0622\\u0646\\u200c\\u0647\\u0627 \\u0628\\u06af\\u0648\\u06cc\\u06cc\\u0645\\u061f\",\n \"\\u06a9\\u0647 \\u067e\\u06cc\\u0634 \\u0627\\u0632 \\u0627\\u0646\\u0642\\u0644\\u0627\\u0628 \\u0628\\u0647 \\u062e\\u0648\\u0627\\u0628\\u06af\\u0627\\u0647 \\u062f\\u062e\\u062a\\u0631\\u0627\\u0646 \\u0648 \\u0632\\u0646\\u0627\\u0646 \\u0646\\u0627\\u0628\\u06cc\\u0646\\u0627 \\u0627\\u062e\\u062a\\u0635\\u0627\\u0635\\u200c\\u06cc\\u0627\\u0641\\u062a\\u0647 \\u0628\\u0648\\u062f. \\u0627\\u063a\\u0644\\u0628 \\u0632\\u0646\\u0627\\u0646\\u06cc \\u06a9\\u0647 \\u062f\\u0631 \\u0627\\u06cc\\u0646 \\u062e\\u0648\\u0627\\u0628\\u06af\\u0627\\u0647 \\u0632\\u0646\\u062f\\u06af\\u06cc \\u0645\\u06cc\\u200c\\u06a9\\u0631\\u062f\\u0646\\u062f\\u060c \",\n \"\\u062f\\u0648\\u062f \\u0648 \\u0645\\u0647 \\u063a\\u0644\\u06cc\\u0638\\u06cc \\u062f\\u0631 \\u0645\\u062d\\u06cc\\u0637 \\u067e\\u06cc\\u0686\\u06cc\\u062f\\u0647 \\u0628\\u0648\\u062f\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"phoneme\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 400,\n \"samples\": [\n \"?AyA bAyad haqiqat rA be ?AnhA beguyim\\u061f\",\n \"ke piS ?az ?enqelAb be xAbgAh-e doxtarAn va zanAn-e nAbinA ?extesAsyAfte bud ?aqlab-e zanAni ke dar ?in xAbgAh zendegi mikardand\",\n \"dud-o meh-e qalizi dar mohit piCide bud\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"homograph word\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 101,\n \"samples\": [\n \"\\u06af\\u0631\\u06cc\\u0645\",\n \"\\u0633\\u0628\\u06a9\\u06cc\",\n \"\\u06a9\\u0645\\u06cc\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"pronunciation\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 210,\n \"samples\": [\n \"darham\",\n \"Sum\",\n \"moSk\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}"
  6938. }
  6939. },
  6940. "metadata": {},
  6941. "execution_count": 15
  6942. }
  6943. ]
  6944. },
  6945. {
  6946. "cell_type": "markdown",
  6947. "metadata": {
  6948. "id": "wDV7ysXf2b_H"
  6949. },
  6950. "source": [
  6951. "### Get ManaTTS"
  6952. ]
  6953. },
  6954. {
  6955. "cell_type": "code",
  6956. "execution_count": null,
  6957. "metadata": {
  6958. "colab": {
  6959. "base_uri": "https://localhost:8080/"
  6960. },
  6961. "id": "TcL5ZLvSSnVB",
  6962. "outputId": "5e361ea7-c3dd-4765-a853-5a0f4ca678db"
  6963. },
  6964. "outputs": [
  6965. {
  6966. "output_type": "execute_result",
  6967. "data": {
  6968. "text/plain": [
  6969. "[('در این نوشته بنا داریم با یک ابزار ساده و مکانیکی افزایش بینایی برای افراد کم\\u200cبینا ',\n",
  6970. " 'dar ?in neveSte banA dArim bA yek ?abzAr-e sAde va mekAniki-ye ?afzAyeS-e binAyi barAye ?afrAd-e kam\\u200cbinA '),\n",
  6971. " ('به نام بی\\u200cوپتیک یا عدسی دورنما آشنا شویم. ',\n",
  6972. " 'be nAm-e biyoptik yA ?adasi-ye durnamA ?ASnA Savim'),\n",
  6973. " ('دراین\\u200cصورت، انجام خودارزیابی و ارائه بازخورد بر عهده خودتان است. ',\n",
  6974. " 'dar ?in surat ?anjAm-e xod?arzyAbi va ?erA?e-ye bAzxord bar ?ohde-ye xodetAn ?ast ')]"
  6975. ]
  6976. },
  6977. "metadata": {},
  6978. "execution_count": 16
  6979. }
  6980. ],
  6981. "source": [
  6982. "filtered_rows = sentence_bench[sentence_bench['dataset'] == 'mana-tts'][['grapheme', 'phoneme']]\n",
  6983. "\n",
  6984. "# Convert to a list of tuples\n",
  6985. "mana_evaluation_data = list(filtered_rows.itertuples(index=False, name=None))\n",
  6986. "\n",
  6987. "mana_evaluation_data[:3]"
  6988. ]
  6989. },
  6990. {
  6991. "cell_type": "markdown",
  6992. "metadata": {
  6993. "id": "Jjacw9Mp2eoX"
  6994. },
  6995. "source": [
  6996. "### Get CommonVoice"
  6997. ]
  6998. },
  6999. {
  7000. "cell_type": "code",
  7001. "execution_count": null,
  7002. "metadata": {
  7003. "id": "-yQnqCGw26sk",
  7004. "colab": {
  7005. "base_uri": "https://localhost:8080/"
  7006. },
  7007. "outputId": "ba7aff36-8897-4261-dbe1-1dc40187a285"
  7008. },
  7009. "outputs": [
  7010. {
  7011. "output_type": "execute_result",
  7012. "data": {
  7013. "text/plain": [
  7014. "[('در اکثر شهرها، مرکزی برای خرید دوچرخه وجود دارد.',\n",
  7015. " 'dar ?aksar-e Sahr-hA, markazi barAye xarid-e doCarxe vojud dArad.'),\n",
  7016. " ('پس از مدرسه کودکان به سوی خانه جست و خیز کردند.',\n",
  7017. " 'pas ?az madrese kudakAn be suye xAne jast-o-xiz kardand.'),\n",
  7018. " ('شما نگران زن و بچه این نباش.', 'SomA negarAn-e zan-o-baCCe-ye ?in nabAS.')]"
  7019. ]
  7020. },
  7021. "metadata": {},
  7022. "execution_count": 17
  7023. }
  7024. ],
  7025. "source": [
  7026. "filtered_rows = sentence_bench[sentence_bench['dataset'] == 'commonvoice'][['grapheme', 'phoneme']]\n",
  7027. "\n",
  7028. "# Convert to a list of tuples\n",
  7029. "commonvoice_evaluation_data = list(filtered_rows.itertuples(index=False, name=None))\n",
  7030. "\n",
  7031. "commonvoice_evaluation_data[:3]"
  7032. ]
  7033. },
  7034. {
  7035. "cell_type": "markdown",
  7036. "metadata": {
  7037. "id": "ciSPyhRc3Rvo"
  7038. },
  7039. "source": [
  7040. "### Get Homograph"
  7041. ]
  7042. },
  7043. {
  7044. "cell_type": "code",
  7045. "execution_count": null,
  7046. "metadata": {
  7047. "id": "XlFc5JbN3Rvz",
  7048. "colab": {
  7049. "base_uri": "https://localhost:8080/"
  7050. },
  7051. "outputId": "ca84971c-a636-4b2e-a678-a177a8edf538"
  7052. },
  7053. "outputs": [
  7054. {
  7055. "output_type": "execute_result",
  7056. "data": {
  7057. "text/plain": [
  7058. "[('من قدر تو را می\\u200cدانم', 'man qadr-e to rA mi-dAnam', 'قدر', 'qadr'),\n",
  7059. " ('از قضای الهی به قدر الهی پناه می\\u200cبرم',\n",
  7060. " '?az qazAy ?elAhi be qadar-e ?elAhi panAh mi-baram',\n",
  7061. " 'قدر',\n",
  7062. " 'qadar'),\n",
  7063. " ('به دست و صورتم کرم زدم', 'be dast-o suratam kerem zadam', 'کرم', 'kerem')]"
  7064. ]
  7065. },
  7066. "metadata": {},
  7067. "execution_count": 18
  7068. }
  7069. ],
  7070. "source": [
  7071. "filtered_rows = sentence_bench[sentence_bench['dataset'] == 'homograph'][['grapheme', 'phoneme', 'homograph word',\t'pronunciation']]\n",
  7072. "\n",
  7073. "# Convert to a list of tuples\n",
  7074. "homograph_evaluation_data = list(filtered_rows.itertuples(index=False, name=None))\n",
  7075. "\n",
  7076. "homograph_evaluation_data[:3]"
  7077. ]
  7078. },
  7079. {
  7080. "cell_type": "markdown",
  7081. "metadata": {
  7082. "id": "R6PE5ds45TPr"
  7083. },
  7084. "source": [
  7085. "# Evaluate Method Outputs"
  7086. ]
  7087. },
  7088. {
  7089. "cell_type": "markdown",
  7090. "metadata": {
  7091. "id": "y73zFlRGIbt9"
  7092. },
  7093. "source": [
  7094. "## PER Evaluation"
  7095. ]
  7096. },
  7097. {
  7098. "cell_type": "code",
  7099. "execution_count": null,
  7100. "metadata": {
  7101. "id": "ItuviO3w5Vzv"
  7102. },
  7103. "outputs": [],
  7104. "source": [
  7105. "def remove_non_word_chars(text):\n",
  7106. " pattern = r'[^\\w\\s\\?]'\n",
  7107. " cleaned_text = re.sub(pattern, '', text)\n",
  7108. " cleaned_text = re.sub('_', '', text)\n",
  7109. " return cleaned_text"
  7110. ]
  7111. },
  7112. {
  7113. "cell_type": "code",
  7114. "execution_count": null,
  7115. "metadata": {
  7116. "id": "syQCurXu51TO"
  7117. },
  7118. "outputs": [],
  7119. "source": [
  7120. "def remove_white_spaces(text):\n",
  7121. " cleaned_text = re.sub(r'\\s+', ' ', text)\n",
  7122. " return cleaned_text.strip()"
  7123. ]
  7124. },
  7125. {
  7126. "cell_type": "code",
  7127. "execution_count": null,
  7128. "metadata": {
  7129. "id": "V7APkVM053RP"
  7130. },
  7131. "outputs": [],
  7132. "source": [
  7133. "def get_word_only_text(text):\n",
  7134. " word_only_text = remove_non_word_chars(text)\n",
  7135. " extra_space_removed_text = remove_white_spaces(word_only_text)\n",
  7136. "\n",
  7137. " return extra_space_removed_text"
  7138. ]
  7139. },
  7140. {
  7141. "cell_type": "code",
  7142. "execution_count": null,
  7143. "metadata": {
  7144. "id": "ROomKSao57vy"
  7145. },
  7146. "outputs": [],
  7147. "source": [
  7148. "def get_texts_cer(reference, model_output):\n",
  7149. " # Preprocess input texts to only contain word characters\n",
  7150. " word_only_reference = get_word_only_text(reference)\n",
  7151. " word_only_output = get_word_only_text(model_output)\n",
  7152. "\n",
  7153. " # Return +infinity for CER if any of the texts is empty\n",
  7154. " if not word_only_reference.strip() or not word_only_output.strip():\n",
  7155. " return float('inf')\n",
  7156. "\n",
  7157. " return cer(word_only_reference, word_only_output)"
  7158. ]
  7159. },
  7160. {
  7161. "cell_type": "code",
  7162. "execution_count": null,
  7163. "metadata": {
  7164. "id": "4vHLUjp48hc3"
  7165. },
  7166. "outputs": [],
  7167. "source": [
  7168. "def get_avg_cer_of_method(method_outputs, references):\n",
  7169. " cers = []\n",
  7170. " for idx, o in enumerate(method_outputs):\n",
  7171. " cer = get_texts_cer(o.replace('-', ''), references[idx][1].replace('-', ''))\n",
  7172. " if cer != float('inf'):\n",
  7173. " cers.append(cer)\n",
  7174. "\n",
  7175. " return sum(cers) / len(cers)"
  7176. ]
  7177. },
  7178. {
  7179. "cell_type": "markdown",
  7180. "metadata": {
  7181. "id": "oBgNtpFQDwku"
  7182. },
  7183. "source": [
  7184. "## Homograph Evaluation"
  7185. ]
  7186. },
  7187. {
  7188. "cell_type": "code",
  7189. "execution_count": null,
  7190. "metadata": {
  7191. "id": "J445ULEvEEDn"
  7192. },
  7193. "outputs": [],
  7194. "source": [
  7195. "def get_homograph_performance(outputs, references):\n",
  7196. " corrects = 0\n",
  7197. " total = 0\n",
  7198. "\n",
  7199. " for idx, (g, p, homograph, right) in enumerate(references):\n",
  7200. " if homograph != '':\n",
  7201. " total += 1\n",
  7202. " if right in outputs[idx]:\n",
  7203. " corrects += 1\n",
  7204. "\n",
  7205. " return corrects / total"
  7206. ]
  7207. },
  7208. {
  7209. "cell_type": "markdown",
  7210. "metadata": {
  7211. "id": "JGEUIrbi9kNH"
  7212. },
  7213. "source": [
  7214. "# Full bench"
  7215. ]
  7216. },
  7217. {
  7218. "cell_type": "code",
  7219. "execution_count": null,
  7220. "metadata": {
  7221. "id": "fGzQvL8V9mln"
  7222. },
  7223. "outputs": [],
  7224. "source": [
  7225. "benchmark = []\n",
  7226. "\n",
  7227. "for g, p in mana_evaluation_data:\n",
  7228. " benchmark.append((g, p, '', ''))\n",
  7229. "\n",
  7230. "for g, p in commonvoice_evaluation_data:\n",
  7231. " benchmark.append((g, p, '', ''))\n",
  7232. "\n",
  7233. "for g, p, w, r in homograph_evaluation_data:\n",
  7234. " benchmark.append((g, p, w, r))\n",
  7235. "\n",
  7236. "benchmark = benchmark[:400]"
  7237. ]
  7238. },
  7239. {
  7240. "cell_type": "code",
  7241. "execution_count": null,
  7242. "metadata": {
  7243. "id": "4jlXFt8tCPWB"
  7244. },
  7245. "outputs": [],
  7246. "source": [
  7247. "def print_all_metrics(predictions):\n",
  7248. " per = get_avg_cer_of_method(predictions, benchmark) * 100\n",
  7249. " # acc, prec, recall = get_phonetic_model_performance(predictions, benchmark)\n",
  7250. " homograph = get_homograph_performance(predictions, benchmark) * 100\n",
  7251. "\n",
  7252. " print(f\"PER: \\t\\t\\t{per:.4f}\")\n",
  7253. " # print(f\"ACC, PREC, RECALL, F1: \\t{acc:.2f}, {prec:.2f}, {recall:.2f}, {((2 * prec * recall) / (prec + recall)):.2f}\")\n",
  7254. " print(f\"HOMOGRAPH: \\t\\t{homograph:.4f}\")"
  7255. ]
  7256. },
  7257. {
  7258. "cell_type": "markdown",
  7259. "source": [
  7260. "# Inference"
  7261. ],
  7262. "metadata": {
  7263. "id": "fTRgGM_8_Fwg"
  7264. }
  7265. },
  7266. {
  7267. "cell_type": "code",
  7268. "source": [
  7269. "with open('/content/input.txt', 'w') as f:\n",
  7270. " for item in benchmark:\n",
  7271. " text = item[0]\n",
  7272. " text = text.replace('،', ' ')\n",
  7273. " text = text.replace('؟', ' ')\n",
  7274. " text = text.replace('؛', ' ')\n",
  7275. " text = text.replace('.', ' ')\n",
  7276. " text = text.replace('!', ' ')\n",
  7277. " f.write(text + '\\n')"
  7278. ],
  7279. "metadata": {
  7280. "id": "Q3WTeuHNxjAG"
  7281. },
  7282. "execution_count": null,
  7283. "outputs": []
  7284. },
  7285. {
  7286. "cell_type": "code",
  7287. "source": [
  7288. "from tqdm import tqdm\n",
  7289. "import time\n",
  7290. "\n",
  7291. "# outputs = []\n",
  7292. "start_time = time.time()\n",
  7293. "\n",
  7294. "# for item in tqdm(benchmark):\n",
  7295. "# outputs.append(text_to_phonemes(item[0]))\n",
  7296. "try:\n",
  7297. " text_to_phonemes('/content/input.txt', 'finaloutput.txt')\n",
  7298. "except:\n",
  7299. " pass\n",
  7300. "\n",
  7301. "total_time = time.time() - start_time\n",
  7302. "avg_time = total_time / len(benchmark) if len(benchmark) > 0 else 0"
  7303. ],
  7304. "metadata": {
  7305. "id": "7sy7Bz6uQQWW"
  7306. },
  7307. "execution_count": null,
  7308. "outputs": []
  7309. },
  7310. {
  7311. "cell_type": "code",
  7312. "source": [
  7313. "with open('/content/espeak-ng/finaloutput.txt', 'r') as f:\n",
  7314. " outputs = f.readlines()"
  7315. ],
  7316. "metadata": {
  7317. "id": "VshC4KxJycCK"
  7318. },
  7319. "execution_count": null,
  7320. "outputs": []
  7321. },
  7322. {
  7323. "cell_type": "code",
  7324. "source": [
  7325. "mapped_outputs = []\n",
  7326. "for o in outputs:\n",
  7327. " mapped_outputs.append(transform_text(o))"
  7328. ],
  7329. "metadata": {
  7330. "id": "J_JNTZG17MYL"
  7331. },
  7332. "execution_count": null,
  7333. "outputs": []
  7334. },
  7335. {
  7336. "cell_type": "code",
  7337. "source": [
  7338. "print_all_metrics(mapped_outputs)\n",
  7339. "print(f\"TOTAL TIME:\\t\\t{total_time:.2f} (s)\")\n",
  7340. "print(f\"AVG TIME:\\t\\t{avg_time:.4f} (s)\")"
  7341. ],
  7342. "metadata": {
  7343. "colab": {
  7344. "base_uri": "https://localhost:8080/"
  7345. },
  7346. "id": "P90FNA0DBs84",
  7347. "outputId": "9ab54bce-f3c5-48f7-cb0d-b973cc981534"
  7348. },
  7349. "execution_count": null,
  7350. "outputs": [
  7351. {
  7352. "output_type": "stream",
  7353. "name": "stdout",
  7354. "text": [
  7355. "PER: \t\t\t6.3336\n",
  7356. "HOMOGRAPH: \t\t74.5283\n",
  7357. "TOTAL TIME:\t\t2.99 (s)\n",
  7358. "AVG TIME:\t\t0.0075 (s)\n"
  7359. ]
  7360. }
  7361. ]
  7362. },
  7363. {
  7364. "cell_type": "markdown",
  7365. "source": [
  7366. "# Runs\n",
  7367. "\n",
  7368. "## First:\n",
  7369. "\n",
  7370. "```\n",
  7371. "PER: \t\t\t6.3336\n",
  7372. "HOMOGRAPH: \t\t74.5283\n",
  7373. "TOTAL TIME:\t\t3.29 (s)\n",
  7374. "AVG TIME:\t\t0.0082 (s)\n",
  7375. "\n",
  7376. "```\n",
  7377. "\n",
  7378. "## Second\n",
  7379. "\n",
  7380. "```\n",
  7381. "PER: \t\t\t6.3336\n",
  7382. "HOMOGRAPH: \t\t74.5283\n",
  7383. "TOTAL TIME:\t\t4.27 (s)\n",
  7384. "AVG TIME:\t\t0.0107 (s)\n",
  7385. "```\n",
  7386. "\n",
  7387. "## Third\n",
  7388. "\n",
  7389. "```\n",
  7390. "PER: \t\t\t6.3336\n",
  7391. "HOMOGRAPH: \t\t74.5283\n",
  7392. "TOTAL TIME:\t\t3.12 (s)\n",
  7393. "AVG TIME:\t\t0.0078 (s)\n",
  7394. "```\n",
  7395. "\n",
  7396. "## Fourth\n",
  7397. "\n",
  7398. "```\n",
  7399. "PER: \t\t\t6.3336\n",
  7400. "HOMOGRAPH: \t\t74.5283\n",
  7401. "TOTAL TIME:\t\t3.10 (s)\n",
  7402. "AVG TIME:\t\t0.0077 (s)\n",
  7403. "```\n",
  7404. "\n",
  7405. "## Fifth\n",
  7406. "\n",
  7407. "```\n",
  7408. "PER: \t\t\t6.3336\n",
  7409. "HOMOGRAPH: \t\t74.5283\n",
  7410. "TOTAL TIME:\t\t2.99 (s)\n",
  7411. "AVG TIME:\t\t0.0075 (s)\n",
  7412. "```"
  7413. ],
  7414. "metadata": {
  7415. "id": "nnAVJeofdvHs"
  7416. }
  7417. }
  7418. ]
  7419. }