├── LICENSE ├── README.md ├── bark_tts.ini ├── outputs └── .gitignore ├── requirements.txt ├── script.py ├── test_tts.py ├── tts_preprocessor.py └── voices └── .gitignore /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsippel/bark_tts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsippel/bark_tts/HEAD/README.md -------------------------------------------------------------------------------- /bark_tts.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsippel/bark_tts/HEAD/bark_tts.ini -------------------------------------------------------------------------------- /outputs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsippel/bark_tts/HEAD/outputs/.gitignore -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsippel/bark_tts/HEAD/requirements.txt -------------------------------------------------------------------------------- /script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsippel/bark_tts/HEAD/script.py -------------------------------------------------------------------------------- /test_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsippel/bark_tts/HEAD/test_tts.py -------------------------------------------------------------------------------- /tts_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsippel/bark_tts/HEAD/tts_preprocessor.py -------------------------------------------------------------------------------- /voices/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsippel/bark_tts/HEAD/voices/.gitignore --------------------------------------------------------------------------------