rvc tts webui
1.0.0
これは、Edge-TTSを使用したRVCモデル用のテキストからスピーチへのグラデーションWebUIです。
?オンラインデモ
これは、GPUなしでCPUで実行できます(ただし、遅い)。

要件:Windows 11でPython 3.10をテストしました。Python3.11はおそらくサポートされていないため、Python 3.10を使用してください。
git clone https://github.com/litagin02/rvc-tts-webui.git
cd rvc-tts-webui
# 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 S cripts a ctivate
# 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.txtRVCモデルを次のようにweights/ディレクトリに配置します。
weights
├── model1
│ ├── my_model1.pth
│ └── my_index_file_for_model1.index
└── model2
├── my_model2.pth
└── my_index_file_for_model2.index
...各モデルディレクトリには、正確に1つの.pthファイルが含まれている必要があります。せいぜい1つの.indexファイルを含める必要があります。ディレクトリ名はモデル名として使用されます。
パス名の非ASCII文字は、FAISSエラー( weights/モデル1/index.indexなど)に与えられたようですので、それらを避けてください。
# Activate venv (for Windows)
venv S cripts a ctivate
python app.pygit pull
venv S cripts a ctivate
pip install -r requirements.txt --upgrade 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
FairSeqにはMicrosoft C ++ビルドツールが必要かもしれません。インストーラーをダウンロードしてインストールします。