KO
|
EN
gitlite โ search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
whisperspeech-webui
โ 13
Open GitHub โ
Simple WhisperSpeech web UI
Download README (.md)
Explore Similar Repositories
tabby-backend-py
:
Tabby (self-hosted AI coding assistant) server in 20 lines of python
Perdoname
:
๐ Proyecto para los bros que necesitan el perdรณn
Token-bridge
:
A token bridge utilizing PortalBridge to facilitate the seamless transfer of assets across multiple blockchain networks.
sdcore-helm-charts
:
Helm charts used for SD-Core packaging
survey-scanner
:
This repository publishes the sources of Internet-Wide Scans observed by NICTER darknet monitoring.
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
whisperspeech-webui
?
Download (.md)
# WhisperSpeech web UI Web UI for WhisperSpeech (https://github.com/collabora/WhisperSpeech) ## Info [](https://github.com/Mateusz-Dera/WhisperSpeech-Web-UI/blob/main/README.md) > [!Note] > Versions 2.x, 3.x and 4.x allow voice generation via API. > [!Note] > Version 4.x supports SillyTavern (1.15) ### Test platforms: |Name|Info| |:---|:---| |CPU|AMD Ryzen 9 9950X3D| |GPU|AMD Radeon 7900XTX| |RAM|64GB DDR5 6600MHz| |Motherboard|Gigabyte X870 AORUS ELITE WIFI7 (BIOS F8)| |OS|Debian 13.4| |Kernel|6.12.74+deb13+1-amd64| |ROCm|7.2.3| |Name|Info| |:---|:---| |CPU|IntelCore i5-12500H| |GPU|NVIDIA GeForce RTX 4050| |RAM|16GB DDR4 3200MHz| |Motherboard|GIGABYTE G5 MF (BIOS FB10)| |OS|CachyOS| |Kernel|6.19.12-1-cachyos| |NVIDIA Driver|595.58.03| |CUDA|13.2| ## Instalation: 1\. Install uv and ffmpeg. 2\. Clone repository. 3\. Mount the repository directory. 3\. Create and activate venv using uv: ```bash uv venv --python 3.13 source .venv/bin/activate ``` 4\. Run webui.py: CPU (not recommended): ```bash uv run --extra cpu webui.py ``` ROCm 7.2.3: ```bash uv run --extra rocm webui.py ``` CUDA 13.2: ```bash uv run --extra cuda webui.py ``` ## SillyTavern extension: 1\. Copy whisperspeech-webui folder to SillyTavern/public/scripts/extensions/third-party 2\. Run app with api support. ```bash # This is example. If you are using SillyTavern locally, you can remove --listen parameter. uv run --extra cpu webui.py --listen --api ``` 3\. Launch SillyTavern. In the extensions tab, expand WhisperSpeech web UI and set the IP and port. ## GUI tanslation: |Languages| |:---| |English| |Polish| <!-- TRANSLATION --> 1\. Extract messages.pot: ```bash pybabel extract -F babel.cfg -o ./locale/messages.pot . ``` 2\. Generate files: New language: ```bash pybabel init -i ./locale/messages.pot -d ./locale -l pl_PL # Replace pl_PL by your language ``` Update current: ```bash pybabel update -i ./locale/messages.pot -d ./locale -l pl_PL # Replace pl_PL by your language ``` 3\. Compile: ```bash pybabel compile -d ./locale ```