Skip to content

Commit d82b2cf

Browse files
authored
Update readme (#897)
1 parent 39ef364 commit d82b2cf

File tree

2 files changed

+36
-11
lines changed

2 files changed

+36
-11
lines changed

README.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,21 @@
4444
+ 使用最先进的[人声音高提取算法InterSpeech2023-RMVPE](#参考项目)根绝哑音问题。效果最好(显著地)但比crepe_full更快、资源占用更小
4545

4646
## 环境配置
47-
可以使用poetry配置环境。
47+
以下指令需在 Python 版本大于3.8的环境中执行。
4848

49-
以下指令需在Python版本大于3.8的环境中执行:
49+
(Windows/Linux)
50+
首先通过 pip 安装主要依赖:
5051
```bash
5152
# 安装Pytorch及其核心依赖,若已安装则跳过
5253
# 参考自: https://pytorch.org/get-started/locally/
5354
pip install torch torchvision torchaudio
5455

5556
#如果是win系统+Nvidia Ampere架构(RTX30xx),根据 #21 的经验,需要指定pytorch对应的cuda版本
5657
#pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
58+
```
5759

60+
可以使用 poetry 来安装依赖:
61+
```bash
5862
# 安装 Poetry 依赖管理工具, 若已安装则跳过
5963
# 参考自: https://python-poetry.org/docs/#installation
6064
curl -sSL https://install.python-poetry.org | python3 -
@@ -63,11 +67,17 @@ curl -sSL https://install.python-poetry.org | python3 -
6367
poetry install
6468
```
6569

66-
你也可以通过pip来安装依赖
70+
你也可以通过 pip 来安装依赖
6771
```bash
6872
pip install -r requirements.txt
6973
```
7074

75+
------
76+
Mac 用户可以通过 `run.sh` 来安装依赖:
77+
```bash
78+
sh ./run.sh
79+
```
80+
7181
## 其他预模型准备
7282
RVC需要其他一些预模型来推理和训练。
7383

@@ -85,7 +95,7 @@ hubert_base.pt
8595

8696
./pretrained_v2
8797

88-
如果你正在使用Windows,则你可能需要这个文件,若ffmpeg和ffprobe已安装则跳过; ubuntu/debian 用户可以通过apt install ffmpeg来安装这2个库
98+
如果你正在使用Windows,则你可能需要这个文件,若ffmpeg和ffprobe已安装则跳过; ubuntu/debian 用户可以通过apt install ffmpeg来安装这2个库, Mac 用户则可以通过brew install ffmpeg来安装 (需要预先安装brew)
8999

90100
./ffmpeg
91101

@@ -104,7 +114,8 @@ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.pt
104114
```bash
105115
python infer-web.py
106116
```
107-
如果你正在使用Windows,你可以直接下载并解压`RVC-beta.7z`,运行`go-web.bat`以启动WebUI。
117+
118+
如果你正在使用Windows 或 macOS,你可以直接下载并解压`RVC-beta.7z`,前者可以运行`go-web.bat`以启动WebUI,后者则运行命令`sh ./run.sh`以启动WebUI。
108119

109120
仓库内还有一份`小白简易教程.doc`以供参考。
110121

docs/README.en.md

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,37 +35,49 @@ Realtime Voice Conversion Software using RVC : [w-okada/voice-changer](https://g
3535
3636
## Summary
3737
This repository has the following features:
38-
+ Reduce tone leakage by replacing source feature to training-set feature using top1 retrieval;
38+
+ Reduce tone leakage by replacing the source feature to training-set feature using top1 retrieval;
3939
+ Easy and fast training, even on relatively poor graphics cards;
4040
+ Training with a small amount of data also obtains relatively good results (>=10min low noise speech recommended);
4141
+ Supporting model fusion to change timbres (using ckpt processing tab->ckpt merge);
4242
+ Easy-to-use Webui interface;
4343
+ Use the UVR5 model to quickly separate vocals and instruments.
44+
+ Use the most powerful High-pitch Voice Extraction Algorithm [InterSpeech2023-RMVPE](#Credits) to prevent the muted sound problem. Provides the best results (significantly) and is faster, with even lower resource consumption than Crepe_full.
45+
4446
## Preparing the environment
45-
We recommend you install the dependencies through poetry.
47+
The following commands need to be executed in the environment of Python version 3.8 or higher.
4648

47-
The following commands need to be executed in the environment of Python version 3.8 or higher:
49+
(Windows/Linux)
50+
First install the main dependencies through pip:
4851
```bash
4952
# Install PyTorch-related core dependencies, skip if installed
5053
# Reference: https://pytorch.org/get-started/locally/
5154
pip install torch torchvision torchaudio
5255

5356
#For Windows + Nvidia Ampere Architecture(RTX30xx), you need to specify the cuda version corresponding to pytorch according to the experience of https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/issues/21
5457
#pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
58+
```
5559

60+
Then can use poetry to install the other dependencies:
61+
```bash
5662
# Install the Poetry dependency management tool, skip if installed
5763
# Reference: https://python-poetry.org/docs/#installation
5864
curl -sSL https://install.python-poetry.org | python3 -
5965

6066
# Install the project dependencies
6167
poetry install
6268
```
63-
You can also use pip to install the dependencies
6469

70+
You can also use pip to install them:
6571
```bash
6672
pip install -r requirements.txt
6773
```
6874

75+
------
76+
Mac users can install dependencies via `run.sh`:
77+
```bash
78+
sh ./run.sh
79+
```
80+
6981
## Preparation of other Pre-models
7082
RVC requires other pre-models to infer and train.
7183

@@ -90,7 +102,7 @@ Then use this command to start Webui:
90102
```bash
91103
python infer-web.py
92104
```
93-
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.
105+
If you are using Windows or macOS, you can download and extract `RVC-beta.7z` to use RVC directly by using `go-web.bat` on windows or `sh ./run.sh` on macOS to start Webui.
94106

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

@@ -102,8 +114,10 @@ There's also a tutorial on RVC in Chinese and you can check it out if needed.
102114
+ [FFmpeg](https://github.com/FFmpeg/FFmpeg)
103115
+ [Ultimate Vocal Remover](https://github.com/Anjok07/ultimatevocalremovergui)
104116
+ [audio-slicer](https://github.com/openvpi/audio-slicer)
117+
+ [Vocal pitch extraction:RMVPE](https://github.com/Dream-High/RMVPE)
118+
+ The pretrained model is trained and tested by [yxlllc](https://github.com/yxlllc/RMVPE) and [RVC-Boss](https://github.com/RVC-Boss).
119+
105120
## Thanks to all contributors for their efforts
106-
107121
<a href="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/graphs/contributors" target="_blank">
108122
<img src="https://contrib.rocks/image?repo=RVC-Project/Retrieval-based-Voice-Conversion-WebUI" />
109123
</a>

0 commit comments

Comments
 (0)