├── LICENSE ├── Makefile.am ├── README ├── README.md ├── README.ru ├── README_RU.md ├── configure.ac ├── m4 └── locales.m4 ├── manpages ├── Makefile.am ├── ru_tts.1 └── ru_tts_transfer.3 ├── publications └── Lobanov_B.M._-_Microwave_Speech_Synthesis_from_Text_(in_Russian).pdf ├── ru_speak └── src ├── Makefile.am ├── female.c ├── intonator.c ├── male.c ├── modulation.h ├── numerics.c ├── numerics.h ├── ru_tts.c ├── ru_tts.h ├── ru_tts.vscript ├── sink.c ├── sink.h ├── soundproducer.c ├── soundscript.h ├── speechrate_control.c ├── synth.c ├── synth.h ├── text2speech.c ├── time_planner.c ├── timing.h ├── transcription.c ├── transcription.h ├── utterance.c └── voice.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/README.md -------------------------------------------------------------------------------- /README.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/README.ru -------------------------------------------------------------------------------- /README_RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/README_RU.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/configure.ac -------------------------------------------------------------------------------- /m4/locales.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/m4/locales.m4 -------------------------------------------------------------------------------- /manpages/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/manpages/Makefile.am -------------------------------------------------------------------------------- /manpages/ru_tts.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/manpages/ru_tts.1 -------------------------------------------------------------------------------- /manpages/ru_tts_transfer.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/manpages/ru_tts_transfer.3 -------------------------------------------------------------------------------- /publications/Lobanov_B.M._-_Microwave_Speech_Synthesis_from_Text_(in_Russian).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/publications/Lobanov_B.M._-_Microwave_Speech_Synthesis_from_Text_(in_Russian).pdf -------------------------------------------------------------------------------- /ru_speak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/ru_speak -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/female.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/female.c -------------------------------------------------------------------------------- /src/intonator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/intonator.c -------------------------------------------------------------------------------- /src/male.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/male.c -------------------------------------------------------------------------------- /src/modulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/modulation.h -------------------------------------------------------------------------------- /src/numerics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/numerics.c -------------------------------------------------------------------------------- /src/numerics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/numerics.h -------------------------------------------------------------------------------- /src/ru_tts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/ru_tts.c -------------------------------------------------------------------------------- /src/ru_tts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/ru_tts.h -------------------------------------------------------------------------------- /src/ru_tts.vscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/ru_tts.vscript -------------------------------------------------------------------------------- /src/sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/sink.c -------------------------------------------------------------------------------- /src/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/sink.h -------------------------------------------------------------------------------- /src/soundproducer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/soundproducer.c -------------------------------------------------------------------------------- /src/soundscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/soundscript.h -------------------------------------------------------------------------------- /src/speechrate_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/speechrate_control.c -------------------------------------------------------------------------------- /src/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/synth.c -------------------------------------------------------------------------------- /src/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/synth.h -------------------------------------------------------------------------------- /src/text2speech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/text2speech.c -------------------------------------------------------------------------------- /src/time_planner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/time_planner.c -------------------------------------------------------------------------------- /src/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/timing.h -------------------------------------------------------------------------------- /src/transcription.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/transcription.c -------------------------------------------------------------------------------- /src/transcription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/transcription.h -------------------------------------------------------------------------------- /src/utterance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/utterance.c -------------------------------------------------------------------------------- /src/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poretsky/ru_tts/HEAD/src/voice.h --------------------------------------------------------------------------------