mirror of https://gitlab.com/gpvkt/twitchtts.git
Updated README.md
This commit is contained in:
parent
7b6e9f4d2b
commit
efbc06cf62
|
@ -170,3 +170,7 @@ This project is licensed under the GPLv3 License - see the LICENSE.md file for d
|
||||||
* [GERBrowny and community](https://twitch.tv/gerbrowny/)
|
* [GERBrowny and community](https://twitch.tv/gerbrowny/)
|
||||||
* [DerZugger and community](https://www.twitch.tv/derzugger/)
|
* [DerZugger and community](https://www.twitch.tv/derzugger/)
|
||||||
* [Timmeh74 and community](https://www.twitch.tv/timmeh74/)
|
* [Timmeh74 and community](https://www.twitch.tv/timmeh74/)
|
||||||
|
|
||||||
|
## Disclaimer
|
||||||
|
|
||||||
|
This project is not affiliated, associated, authorized, endorsed by, or in any way officially connected with Twitch Interactive, Inc.
|
||||||
|
|
18
tts.py
18
tts.py
|
@ -1,6 +1,24 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
"""
|
||||||
|
TwitchTTS
|
||||||
|
Copyright (C) 2022 gpkvt
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import yaml
|
import yaml
|
||||||
import logging
|
import logging
|
||||||
|
|
Loading…
Reference in New Issue