├── .gitignore ├── LICENSE ├── README.md ├── TheNewTTS_StreamlabsSystem.py ├── UI_Config.json ├── ffmpeg.exe └── tts_media.py /.gitignore: -------------------------------------------------------------------------------- 1 | config.* 2 | *.db 3 | test.mp3 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisSanchez-Dev/TheNewTTS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisSanchez-Dev/TheNewTTS/HEAD/README.md -------------------------------------------------------------------------------- /TheNewTTS_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisSanchez-Dev/TheNewTTS/HEAD/TheNewTTS_StreamlabsSystem.py -------------------------------------------------------------------------------- /UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisSanchez-Dev/TheNewTTS/HEAD/UI_Config.json -------------------------------------------------------------------------------- /ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisSanchez-Dev/TheNewTTS/HEAD/ffmpeg.exe -------------------------------------------------------------------------------- /tts_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisSanchez-Dev/TheNewTTS/HEAD/tts_media.py --------------------------------------------------------------------------------