一个基于VITS的简单易用的变声框架
Go to file
ddPn08 856e44b4ea
fix typo
2023-04-09 20:30:15 +09:00
configs Add files via upload 2023-03-31 17:49:09 +08:00
infer Add files via upload 2023-03-31 17:49:09 +08:00
infer_pack Add files via upload 2023-04-08 23:36:51 +08:00
pretrained 删除无用文件,增加--colab启动选项 2023-04-01 15:02:53 +08:00
train 删除无用文件,增加--colab启动选项 2023-04-01 15:02:53 +08:00
uvr5_pack 删除无用文件,增加--colab启动选项 2023-04-01 15:02:53 +08:00
uvr5_weights 删除无用文件,增加--colab启动选项 2023-04-01 15:02:53 +08:00
weights 删除无用文件,增加--colab启动选项 2023-04-01 15:02:53 +08:00
.gitignore fix: train step2a & add arg --port --pycmd --noparallel 2023-04-01 16:42:19 +08:00
LICENSE Initial commit 2023-03-27 17:59:11 +08:00
README.md Merge pull request #20 from fumiama/patch-1 2023-04-08 22:24:07 +08:00
README_en.md Add files via upload 2023-04-07 20:19:44 +08:00
README_v0.md Rename README.md to README_v0.md 2023-04-07 20:19:06 +08:00
RVC改进意见.txt Create RVC改进意见.txt 2023-04-09 19:52:29 +09:00
Retrieval_based_Voice_Conversion_WebUI.ipynb 为笔记本添加更多功能 2023-04-02 16:07:02 +08:00
config.py fix: train step2a & add arg --port --pycmd --noparallel 2023-04-01 16:42:19 +08:00
envfilescheck.bat Add a batch file for windows user to download requearment files automated by using aria2. 2023-04-04 00:23:39 +08:00
export_onnx.py Add files via upload 2023-04-08 23:36:25 +08:00
extract_f0_print.py Add files via upload 2023-03-31 17:54:38 +08:00
extract_feature_print.py fix: extract freture cannot run on pure cpu 2023-04-01 17:05:48 +08:00
infer-web.py get_vc bug fix 2023-04-06 11:31:20 +08:00
infer_uvr5.py Add files via upload 2023-03-31 17:54:38 +08:00
my_utils.py fix: train step2a & add arg --port --pycmd --noparallel 2023-04-01 16:42:19 +08:00
poetry.lock add poetry dependency file 2023-04-05 10:44:07 +08:00
pyproject.toml add poetry dependency file 2023-04-05 10:44:07 +08:00
requirements.txt fix typo 2023-04-09 20:30:15 +09:00
slicer2.py fix: train step2a & add arg --port --pycmd --noparallel 2023-04-01 16:42:19 +08:00
train_nsf_sim_cache_sid_load_pretrain.py fix 2023-04-01 17:29:14 +08:00
trainset_preprocess_pipeline_print.py fix: train step2a & add arg --port --pycmd --noparallel 2023-04-01 16:42:19 +08:00
vc_infer_pipeline.py Add files via upload 2023-03-31 17:49:09 +08:00
使用需遵守的协议-LICENSE.txt fix: train step2a & add arg --port --pycmd --noparallel 2023-04-01 16:42:19 +08:00
小白简易教程.doc Add files via upload 2023-03-31 18:52:30 +08:00

README_en.md

Retrieval-based-Voice-Conversion-WebUI

madewithlove

Open In Colab Licence Huggingface

Realtime Voice Conversion Software using RVC : w-okada/voice-changer


An easy-to-use SVC framework based on VITS.

English | 中文简体

Check our Demo Video here!

Summary

This repository has the following features:

  • Using top1 feature model retrieval to reduce tone leakage;
  • Easy and fast training, even on relatively poor graphics cards;
  • Training with a small amount of data also obtains relatively good results;
  • Supporting model fusion to change timbres;
  • Easy-to-use Webui interface;
  • Use the UVR5 model to quickly separate vocals and instruments.

Preparing the environment

We recommend you install the dependencies through poetry.

The following commands need to be executed in the environment of Python version 3.8 or higher:

# Install PyTorch-related core dependencies, skip if installed
# Reference: https://pytorch.org/get-started/locally/
pip install torch torchvision torchaudio

# Install the Poetry dependency management tool, skip if installed
# Reference: https://python-poetry.org/docs/#installation
curl -sSL https://install.python-poetry.org | python3 -

# Install the project dependencies
poetry install

You can also use pip to install the dependencies

pip install -r requirements.txt

Preparation of other Pre-models

RVC requires other pre-models to infer and train.

You need to download them from our Huggingface space.

Here's a list of Pre-models and other files that RVC needs:

hubert_base.pt

./pretrained 

./uvr5_weights

#If you are using Windows, you may also need this dictionary, skip if FFmpeg is installed
ffmpeg.exe

Then use this command to start Webui:

python infer-web.py

If you are using Windows, you can download and extract RVC-beta.7z to use RVC directly and use go-web.bat to start Webui.

We will develop an English version of the WebUI in 2 weeks.

There's also a tutorial on RVC in Chinese and you can check it out if needed.

Credits

Thanks to all contributors for their efforts