Upload edit\Qwen3-TTS-test\reference\README.md with huggingface_hub
Browse files
edit//Qwen3-TTS-test//reference//README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Reference audio
|
| 2 |
+
|
| 3 |
+
Drop two files here before running `python ../clone.py`:
|
| 4 |
+
|
| 5 |
+
## 1. `reference.wav`
|
| 6 |
+
|
| 7 |
+
A **10–15 second** clip of your voice — your cleanest, most natural sample.
|
| 8 |
+
|
| 9 |
+
Quality rules:
|
| 10 |
+
- Quiet room, no AC/fan hum, no background music
|
| 11 |
+
- Consistent mic distance
|
| 12 |
+
- Normal speaking pace and intonation (not reading flat)
|
| 13 |
+
- 24 kHz or 44.1 kHz mono WAV is ideal (F5-TTS handles resampling but cleaner input = cleaner output)
|
| 14 |
+
|
| 15 |
+
From your 30-min recording, pick the *best* 10–15 seconds. Don't just take the first clip.
|
| 16 |
+
|
| 17 |
+
To trim with ffmpeg:
|
| 18 |
+
```
|
| 19 |
+
ffmpeg -i your-30min.wav -ss 00:05:12 -t 12 -ac 1 -ar 24000 reference.wav
|
| 20 |
+
```
|
| 21 |
+
(Adjust `-ss` start time and `-t` length.)
|
| 22 |
+
|
| 23 |
+
## 2. `reference.txt`
|
| 24 |
+
|
| 25 |
+
The **exact transcript** of `reference.wav`, on a single line. Punctuation matters. No extra commentary.
|
| 26 |
+
|
| 27 |
+
Example:
|
| 28 |
+
```
|
| 29 |
+
Hey, my name is Palash and I make videos about AI and coding tools.
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
That's it. Once both files are here, run `python ../clone.py`.
|