Spaces:
Runtime error
Runtime error
File size: 3,402 Bytes
4e82c7b 08a4219 4e82c7b 08a4219 4e82c7b 569ab87 4e82c7b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
---
license: apache-2.0
title: RVC TTS
sdk: gradio
emoji: π»
colorFrom: green
colorTo: green
short_description: RVC TTS HUGGING FACE VERSION
pinned: true
---
---
title: {{title}}
emoji: {{emoji}}
colorFrom: {{colorFrom}}
colorTo: {{colorTo}}
sdk: {{sdk}}
sdk_version: {{sdkVersion}}
app_file: app.py
pinned: false
# RVC Text-to-Speech
This is a text-to-speech Gradio webui for [RVC](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI) models, using [edge-tts](https://github.com/rany2/edge-tts).
--------------------------------------------
segment :
[colab](#colab-notebook)
[installation](#Install)
[locate](#Locate-RVC-models)
[launch](#Launch)
[update](#update)
[Troubleshooting](Troubleshooting)
--------------------------------------------
# colab-notebook
[![open in clab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Blane187/rvc-tts/blob/main/rvc_tts.ipynb)
--------------------------------------------
# Install
Requirements: Tested for Python 3.10 on Windows 11. Python 3.11 is probably not supported, so please use Python 3.10.
```bash
git clone https://github.com/Blane187/rvc-tts.git
cd rvc-tts
# Download models in root directory
curl -L -O https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/hubert_base.pt
curl -L -O https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/rmvpe.pt
# Make virtual environment
python -m venv venv
# Activate venv (for Windows)
venv\Scripts\activate
# Install PyTorch manually if you want to use NVIDIA GPU (Windows)
# See https://pytorch.org/get-started/locally/ for more details
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
# Install requirements
pip install -r requirements.txt
```
--------------------------------------------
# Locate-RVC-models
Place your RVC models in `weights/` directory as follows:
```bash
weights
βββ model1
β βββ my_model1.pth
β βββ my_index_file_for_model1.index
βββ model2
βββ my_model2.pth
βββ my_index_file_for_model2.index
...
```
Each model directory should contain exactly one `.pth` file and at most one `.index` file. Directory names are used as model names.
It seems that non-ASCII characters in path names gave faiss errors (like `weights/γ’γγ«1/index.index`), so please avoid them.
--------------------------------------------
## Launch
```bash
# Activate venv (for Windows)
venv\Scripts\activate
python app.py
```
--------------------------------------------
## Update
```bash
git pull
venv\Scripts\activate
pip install -r requirements.txt --upgrade
```
--------------------------------------------
## Troubleshooting
```
error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for fairseq
Failed to build fairseq
ERROR: Could not build wheels for fairseq, which is required to install pyproject.toml-based projects
```
Maybe fairseq needs Microsoft C++ Build Tools.
[Download installer](https://visualstudio.microsoft.com/ja/thank-you-downloading-visual-studio/?sku=BuildTools&rel=16) and install it. |