Gudeta
009e01dc2b
improvements to phoneme sounds
11 years ago
Reece H. Dunn
3dbe2492fe
mkdictlist: fix mapping/detection of the hbs dictionary (for 'bs' and 'hr')
11 years ago
Reece H. Dunn
12054a7efe
autogen.sh: don't generate an error if README exists
11 years ago
Reece H. Dunn
e3290d296d
README.md: Add bugs and license information sections.
11 years ago
Reece H. Dunn
b8a8cfba3b
README.md: Add documentation on installing the needed build dependencies.
11 years ago
Reece H. Dunn
9ccbdf0c5e
.gitignore: ignore the compile file (generated by autotools)
11 years ago
Reece H. Dunn
ca8a9a4495
autotools: build the 'as' and 'gu' dictionaries
11 years ago
Reece H. Dunn
1777ad00df
Merge branch 'development'
11 years ago
Reece H. Dunn
8f98a0755c
1.47.12 (from http://espeak.sourceforge.net/test/latest.html)
11 years ago
Reece H. Dunn
1f57e2debe
Merge branch 'upstream' into development
Conflicts:
dictsource/dict_phonemes
phsource/compile_report
11 years ago
jonsd
10bd23b3b4
[1.47.12]
Change program code for espeak/libespeak to C, remove C++ features.
Language changes: af, ga, grc, hu, nl, sw, ta
git-svn-id: https://espeak.svn.sourceforge.net/svnroot/espeak/trunk@364 d46cf337-b52f-0410-862d-fd96e6ae7743
11 years ago
gude432
d88e5a8df6
rules for number transliteration for language om src/tr_languages.cpp
improved the phsource and om_list
11 years ago
station2
24edd1d820
some edits to the om_list file //used to make some errors before
11 years ago
Reece H. Dunn
4eb335011a
autotools: re-enable building om -- building it no longer intermittently crashes
11 years ago
Reece H. Dunn
6dd5529dd8
autotools: add support for disabling async command support (--without-async/--with-async=no)
11 years ago
Reece H. Dunn
00861d3bc3
autotools: add support for disabling libsonic (--without-sonic/--with-sonic=no)
11 years ago
Reece H. Dunn
83df50a40f
autotools: add support for disabling MBROLA (--without-mbrola/--with-mbrola=no)
11 years ago
Reece H. Dunn
a725bba818
autotools: add support for disabling Klatt (--without-klatt/--with-klatt=no)
11 years ago
Reece H. Dunn
341fbce098
autotools: espeak-data/{dictsource,phsource} are no longer created as part of the build, so don't remove them in distclean
11 years ago
Reece H. Dunn
b4df398601
autotools: Add a --with-sada argument (default: no) to enable Solaris SADA audio support.
11 years ago
Reece H. Dunn
7d2a2324e8
autotools: Remove unused variables from the makefile.
11 years ago
Reece H. Dunn
ed18e418ca
autotools: Support uninstalling the installed espeak-data when 'make uninstall' is run.
11 years ago
Reece H. Dunn
c69ff7ebd7
autotools: Rewrite the build targets to use automake and libtool properly.
11 years ago
Reece H. Dunn
2992b23c35
README.md: Add a table of contents.
11 years ago
Reece H. Dunn
86882e2534
autotools: Remove the espeak-phoneme-data target (not used).
11 years ago
Reece H. Dunn
10bea37931
autotools: Don't shadow copy the phsource directory into espeak-data.
11 years ago
Reece H. Dunn
9102c1ef9f
autotools: Don't shadow copy the dictsource directory into espeak-data.
11 years ago
Reece H. Dunn
65d6419707
autotools: Use autotools to install speak_lib.h.
11 years ago
Reece H. Dunn
65d0d41700
autotools: Use -local variants of all, clean and distclean to support using automake targets.
11 years ago
Reece H. Dunn
9be4bc2840
autotools: Use install-{data,exec}-hook targets to support automake build targets.
11 years ago
Reece H. Dunn
ea18599942
Move the install and distclean fully to the root Makefile.am file.
11 years ago
Reece H. Dunn
39a6a2dbbb
autotools: Update the version in AC_INIT to 1.47.
11 years ago
Reece H. Dunn
c0cd2e6791
autotools: Call 'make distclean' in src/Makefile.am from the Makefile.am distclean target.
11 years ago
Reece H. Dunn
c1196192e5
speak_lib.cpp: Do not crash if espeak_SetPunctuationList is called with a NULL punctuation list.
11 years ago
Reece H. Dunn
94ace09b40
configure.ac: Improve the checks to ensure that portaudio.h and -lportaudio refer to the same version of PortAudio.
11 years ago
Reece H. Dunn
f6db58e6b0
Fix bad attribute warnings with the different NVDA voice variants.
11 years ago
Reece H. Dunn
06be1bc0bb
Add the voice variants from NVDA.
11 years ago
Reece H. Dunn
d3ff1abbe9
configure.ac: Update the configure script to detect portaudio version (18 or 19).
11 years ago
Reece H. Dunn
5f8762ae91
src/wave.cpp: fix building when portaudio.h is missing
11 years ago
Reece H. Dunn
2c8198febb
README.md: Improve the build instructions and add a section on building/adding voices.
11 years ago
Reece H. Dunn
c098e8b891
ph_english: use /i/ as the IPA transcription of i
The i phoneme is used for the reduced i sound in e.g. happy
(/h'api/). Thus, the following words contrast:
word eSpeak IPA
happy /h'api/ /hˈapi/
been /b'i:n/ /bˈiːn/
bin /b'In/ /bˈɪn/
Before this change, /h'api/ would be transcribed in IPA as /hˈapɪ/
which is wrong. After this change, it is transcribed correctly.
11 years ago
Reece H. Dunn
304d265f46
Fix a SEGFAULT in GetTranslatedPhonemeString.
When running any of the following:
espeak -x "[[]]"
espeak --ipa "[[]]"
eSpeak would SEGFAULT. This is because phon_out_buf is NULL as no
phonemes have been written and as this is the first call to
GetTranslatedPhonemeString, the phoneme buffer has not been
allocated yet. However, GetTranslatedPhonemeString attempts to add
a NULL character to the end of the phoneme buffer, and thus crashes.
11 years ago
Reece H. Dunn
9fe782ae66
autotools: corerctly use the libespeak.so.1 file in the src directory when running 'espeak --compile=<lang>'
12 years ago
Reece H. Dunn
05f9dfa9eb
Don't compile the 'om' voice.
Running |espeak --compile=om| on some platforms results in espeak
segfaulting intermittently (not reproducible under gdb). When it
does, it generates "Unknown keyword: " messages with garbage after
it.
12 years ago
Reece H. Dunn
3bbad0159d
Merge branch 'development'
12 years ago
Reece H. Dunn
116d929027
Change the mode of tsh_unasp2.wav to 644.
12 years ago
Reece H. Dunn
17e389e7f1
Merge branch 'upstream' into development
Conflicts:
dictsource/dict_phonemes
phsource/compile_report
12 years ago
jonsd
507caaaca2
[1.47.11d]
Language updates: da, en, nl, pt, vi
git-svn-id: https://espeak.svn.sourceforge.net/svnroot/espeak/trunk@363 d46cf337-b52f-0410-862d-fd96e6ae7743
12 years ago
Reece H. Dunn
70978babef
Merge branch 'development'
Conflicts:
src/speak_lib.h
12 years ago
Reece H. Dunn
d1df4cba10
Merge branch 'upstream' into development
12 years ago