├── .gitignore ├── Dockerfile ├── README.md ├── app.py ├── collab.ipynb ├── docker-compose.yaml ├── example ├── ru-RU-DmitryNeural.wav ├── ru-RU-SvetlanaNeural.wav ├── uk-UA-OstapNeural.wav └── uk-UA-PolinaNeural.wav ├── install.bat ├── requirements.txt ├── start.bat ├── style.css └── интерфейс.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | /venv 2 | output.mp3 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinaichigo-fox/rus-edge-tts-webui/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinaichigo-fox/rus-edge-tts-webui/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinaichigo-fox/rus-edge-tts-webui/HEAD/app.py -------------------------------------------------------------------------------- /collab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinaichigo-fox/rus-edge-tts-webui/HEAD/collab.ipynb -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinaichigo-fox/rus-edge-tts-webui/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /example/ru-RU-DmitryNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinaichigo-fox/rus-edge-tts-webui/HEAD/example/ru-RU-DmitryNeural.wav -------------------------------------------------------------------------------- /example/ru-RU-SvetlanaNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinaichigo-fox/rus-edge-tts-webui/HEAD/example/ru-RU-SvetlanaNeural.wav -------------------------------------------------------------------------------- /example/uk-UA-OstapNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinaichigo-fox/rus-edge-tts-webui/HEAD/example/uk-UA-OstapNeural.wav -------------------------------------------------------------------------------- /example/uk-UA-PolinaNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinaichigo-fox/rus-edge-tts-webui/HEAD/example/uk-UA-PolinaNeural.wav -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinaichigo-fox/rus-edge-tts-webui/HEAD/install.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | edge-tts 2 | gradio 3 | asyncio 4 | -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | call .\venv\Scripts\activate.bat 2 | python app.py 3 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinaichigo-fox/rus-edge-tts-webui/HEAD/style.css -------------------------------------------------------------------------------- /интерфейс.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinaichigo-fox/rus-edge-tts-webui/HEAD/интерфейс.jpg --------------------------------------------------------------------------------