andevs commited on
Commit
8f3378d
·
verified ·
1 Parent(s): 68ccc2e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -21
README.md CHANGED
@@ -1,27 +1,35 @@
1
  ---
2
  title: VoxForge TTS
3
- emoji: 🎤
4
  colorFrom: purple
5
- colorTo: indigo
6
  sdk: docker
7
- app_port: 7860
8
  pinned: false
 
9
  ---
10
-
11
- # VoxForge TTS - Voice Cloning Backend
12
-
13
- Built on XTTS-v2. Zero-shot voice cloning powered by Coqui TTS.
14
-
15
- ## API
16
-
17
- POST https://andevs-ttsmakerbe.hf.space/run/predict
18
-
19
- Request:
20
- ```json
21
- {"data": ["text to speak", "data:audio/wav;base64,...", "en", 1.0]}
22
- ```
23
-
24
- ## Stack
25
- - coqui-tts 0.27.1 on Python 3.10
26
- - Gradio 4.44.0
27
- - XTTS-v2
 
 
 
 
 
 
 
 
 
1
  ---
2
  title: VoxForge TTS
3
+ emoji: 🎙️
4
  colorFrom: purple
5
+ colorTo: green
6
  sdk: docker
 
7
  pinned: false
8
+ license: mit
9
  ---
10
+
11
+ # 🎙️ VoxForge TTS Voice Cloning Backend
12
+
13
+ A Hugging Face Space powering the **VoxForge AI** frontend app.
14
+ Built on **XTTS-v2** by Coqui — the best open-source zero-shot voice cloning model.
15
+
16
+ ## What this does
17
+
18
+ | Feature | Details |
19
+ |---|---|
20
+ | Zero-shot voice clone | Upload a 6-second WAV of any voice → instant synthesis |
21
+ | 14 languages | en, es, fr, de, it, pt, pl, tr, ru, nl, cs, ar, zh-cn, ja |
22
+ | REST API | Gradio auto-exposes `/run/predict` for the HTML frontend |
23
+
24
+ ## Usage
25
+
26
+ 1. Upload a reference audio file (6+ seconds, WAV format)
27
+ 2. Enter text to synthesize (up to 2000 characters)
28
+ 3. Select language and speed
29
+ 4. Click "Generate Speech"
30
+
31
+ ## First Time Use
32
+
33
+ The first synthesis will take 2-5 minutes to download the 4GB model. Subsequent generations will be much faster (10-30 seconds).
34
+
35
+ ## Using the REST API