├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── script.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ill13/SpeakLocal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ill13/SpeakLocal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ill13/SpeakLocal/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyttsx4 2 | ffmpeg-python 3 | -------------------------------------------------------------------------------- /script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ill13/SpeakLocal/HEAD/script.py --------------------------------------------------------------------------------