eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. # editor/external files:
  2. *~
  3. .*.swp
  4. *.bat
  5. # Eclipse project files:
  6. .autotools
  7. .cproject
  8. .project
  9. .settings
  10. # VSCode project files:
  11. .vscode
  12. # intermediate build output:
  13. *.o
  14. *.lo
  15. # android build output:
  16. bin/
  17. obj/
  18. gen/
  19. android/icons/*.png
  20. libttsespeak.so
  21. android/res/raw/espeakdata.zip
  22. android/res/raw/espeakdata_version
  23. local.properties
  24. # android gradle output:
  25. .cxx
  26. .gradle/
  27. .idea/
  28. build/
  29. *.iml
  30. !gradlew.bat
  31. # emscripten output:
  32. a.out
  33. a.out.js
  34. # autotools
  35. AUTHORS
  36. INSTALL
  37. NEWS
  38. README
  39. ChangeLog
  40. .deps/
  41. .libs/
  42. Makefile
  43. Makefile.in
  44. aclocal.m4
  45. autom4te.cache/
  46. compile
  47. config.*
  48. configure
  49. depcomp
  50. install-sh
  51. libtool
  52. ltmain.sh
  53. missing
  54. stamp-h1
  55. .dirstamp
  56. m4/*
  57. !m4/ax_check_compile_flag.m4
  58. # libraries
  59. docs/speak_lib.h
  60. libespeak-ng.a
  61. libespeak-ng.la
  62. libespeak-ng.so*
  63. libespeak-ng-test.a
  64. libespeak-ng-test.la
  65. libespeak-ng-test.so*
  66. tests/libfuzzrunner.a
  67. tests/libfuzzrunner.la
  68. tests/libfuzzrunner.so*
  69. # build output
  70. *.html
  71. src/espeak-ng.1
  72. src/speak-ng.1
  73. src/espeak-ng
  74. src/espeakedit
  75. src/speak-ng
  76. tests/*.test
  77. tests/*.check
  78. !tests/language-phonemes.test
  79. !tests/language-pronunciation.test
  80. !tests/language-numbers-cardinal.test
  81. !tests/language-numbers-ordinal.test
  82. !tests/language-replace.test
  83. !tests/ssml.test
  84. !tests/translate.test
  85. !tests/variants.test
  86. !tests/non-executable-files-with-executable-bit.test
  87. !tests/bom.test
  88. !tests/klatt.test
  89. !tests/mbrola.test
  90. !tests/dictionary.test
  91. !tests/cmd_options.test
  92. !tests/windows-data.test
  93. !tests/windows-installer.test
  94. !tests/voices.test
  95. espeak-ng.pc
  96. espeak-ng-*.tar.gz
  97. espeak-ng-*.*/
  98. # /tests/fuzzing/
  99. /tests/fuzzing/crash-*
  100. /tests/fuzzing/oom-*
  101. /tests/fuzzing/leak-*
  102. /tests/fuzzing/fuzz-*.log
  103. /tests/fuzzing/*.profdata
  104. /tests/fuzzing/*.profraw
  105. /tests/fuzzing/.deps/*.Po
  106. /tests/fuzzing/.dirstamp
  107. !tests/fuzzing/CORPUS*/*.txt
  108. # Windows builds
  109. src/pcaudiolib/
  110. !src/windows/config.h
  111. *.obj
  112. *.lib
  113. *.dll
  114. *.exe
  115. *.msi
  116. *.exp
  117. *.idb
  118. *.ilk
  119. *.iobj
  120. *.ipdb
  121. *.log
  122. *.pdb
  123. *.tlog
  124. *.tlog/
  125. .vs/
  126. *.VC.opendb
  127. *.sdf
  128. *.cache
  129. *.user
  130. *.txt
  131. *.wixobj
  132. *.wixpdb
  133. *.cab
  134. /src/windows/Release
  135. /src/windows/x64
  136. *.tmp
  137. *.nativecodeanalysis.xml
  138. *.nativecodeanalysis.all.xml
  139. *.lastcodeanalysissucceeded
  140. !src/ucd-tools/data/*/*.txt
  141. # Linux/Source distribution files
  142. praat-mod/
  143. ChangeLog.txt
  144. License.txt
  145. ReadMe
  146. Makefile
  147. # emscripten files
  148. emscripten/*.out
  149. emscripten/*.pkl
  150. emscripten/espeakng_data_package.js
  151. emscripten/glue.*
  152. emscripten/js/*.data
  153. emscripten/js/*.js
  154. !emscripten/demo.html
  155. !emscripten/Makefile
  156. !emscripten/js/demo.js
  157. !emscripten/js/espeakng.js
  158. # espeak-ng-data
  159. dictsource/*_extra
  160. dictsource/dict_log
  161. dictsource/dict_phonemes
  162. dictsource/ru_listx
  163. dictsource/cmn_listx
  164. dictsource/yue_listx
  165. phsource/compile_prog_log
  166. phsource/compile_report
  167. phsource/error_intonation
  168. phsource/error_log
  169. phsource/phonemes.stamp
  170. espeak-ng-data/config
  171. espeak-ng-data/dictsource
  172. espeak-ng-data/phsource
  173. espeak-ng-data/*_dict
  174. espeak-ng-data/intonations
  175. espeak-ng-data/phondata
  176. espeak-ng-data/phondata-manifest
  177. espeak-ng-data/phonindex
  178. espeak-ng-data/phontab
  179. espeak-ng-data/mbrola/
  180. espeak-ng-data/mbrola_ph/*_phtrans
  181. # fastlane metadata
  182. !fastlane/metadata/android/*/*.txt