|
11 | 11 |
|
12 | 12 | PROJECT_ROOT = Path(__file__).parent.parent.parent |
13 | 13 |
|
14 | | -_voices_names = ["alba", "marius", "javert", "jean", "fantine", "cosette", "eponine", "azelma"] |
| 14 | +_ORIGINS_OF_PREDEFINED_VOICES = { |
| 15 | + "cosette": "hf://kyutai/tts-voices/expresso/ex04-ex02_confused_001_channel1_499s.wav", |
| 16 | + "marius": "hf://kyutai/tts-voices/voice-donations/Selfie.wav", |
| 17 | + "javert": "hf://kyutai/tts-voices/voice-donations/Butter.wav", |
| 18 | + "alba": "hf://kyutai/tts-voices/alba-mackenna/casual.wav", |
| 19 | + "jean": "hf://kyutai/tts-voices/ears/p010/freeform_speech_01_enhanced.wav", |
| 20 | + "anna": "hf://kyutai/tts-voices/vctk/p228_023_enhanced.wav", |
| 21 | + "vera": "hf://kyutai/tts-voices/vctk/p229_023_enhanced.wav", |
| 22 | + "fantine": "hf://kyutai/tts-voices/vctk/p244_023_enhanced.wav", |
| 23 | + "charles": "hf://kyutai/tts-voices/vctk/p254_023_enhanced.wav", |
| 24 | + "paul": "hf://kyutai/tts-voices/vctk/p259_023_enhanced.wav", |
| 25 | + "eponine": "hf://kyutai/tts-voices/vctk/p262_023_enhanced.wav", |
| 26 | + "azelma": "hf://kyutai/tts-voices/vctk/p303_023_enhanced.wav", |
| 27 | + "george": "hf://kyutai/tts-voices/vctk/p315_023_enhanced.wav", |
| 28 | + "mary": "hf://kyutai/tts-voices/vctk/p333_023_enhanced.wav", |
| 29 | + "jane": "hf://kyutai/tts-voices/vctk/p339_023_enhanced.wav", |
| 30 | + "michael": "hf://kyutai/tts-voices/vctk/p360_023_enhanced.wav", |
| 31 | + "eve": "hf://kyutai/tts-voices/vctk/p361_023_enhanced.wav", |
| 32 | + "bill_boerst": "hf://kyutai/tts-voices/voice-zero/bill_boerst.wav", |
| 33 | + "peter_yearsley": "hf://kyutai/tts-voices/voice-zero/peter_yearsley.wav", |
| 34 | + "stuart_bell": "hf://kyutai/tts-voices/voice-zero/stuart_bell.wav", |
| 35 | + "caro_davy": "hf://kyutai/tts-voices/voice-zero/caro_davy.wav", |
| 36 | +} |
| 37 | + |
15 | 38 | PREDEFINED_VOICES = { |
16 | 39 | # don't forget to change this |
17 | | - x: f"hf://kyutai/pocket-tts-without-voice-cloning/embeddings_v2/{x}.safetensors@2578fed2380333b621689eaed6fe144cf69dfeb3" |
18 | | - for x in _voices_names |
| 40 | + x: f"hf://kyutai/pocket-tts-without-voice-cloning/embeddings_v3/{x}.safetensors@075c0abfe7e41450521b0200b5168cfbc16bc77b" |
| 41 | + for x in _ORIGINS_OF_PREDEFINED_VOICES |
19 | 42 | } |
20 | 43 |
|
21 | 44 |
|
|
0 commit comments