Skip to content

Commit 17c99ee

Browse files
authored
Update README.en.md
1 parent 7e544c4 commit 17c99ee

File tree

1 file changed

+26
-7
lines changed

1 file changed

+26
-7
lines changed

docs/README.en.md

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,13 @@ Check our [Demo Video](https://www.bilibili.com/video/BV1pm4y1z7Gm/) here!
2525

2626
Realtime Voice Conversion Software using RVC : [w-okada/voice-changer](https://github.com/w-okada/voice-changer)
2727

28-
> A online demo using RVC that convert Vocal to Acoustic Guitar audio:https://huggingface.co/spaces/lj1995/vocal2guitar
29-
30-
> Vocal2Guitar demo video:https://www.bilibili.com/video/BV19W4y1D7tT/
3128

3229
> The dataset for the pre-training model uses nearly 50 hours of high quality VCTK open source dataset.
3330
3431
> High quality licensed song datasets will be added to training-set one after another for your use, without worrying about copyright infringement.
3532
33+
> Please look forward to the pretrained base model of RVCv3, which has larger parameters, larger data, better results, unchanged inference speed, and requires less training data for training.
34+
3635
## Summary
3736
This repository has the following features:
3837
+ Reduce tone leakage by replacing the source feature to training-set feature using top1 retrieval;
@@ -42,6 +41,7 @@ This repository has the following features:
4241
+ Easy-to-use Webui interface;
4342
+ Use the UVR5 model to quickly separate vocals and instruments.
4443
+ 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.
44+
+ AMD/Intel graphics cards acceleration supported.
4545

4646
## Preparing the environment
4747
The following commands need to be executed in the environment of Python version 3.8 or higher.
@@ -69,7 +69,13 @@ poetry install
6969

7070
You can also use pip to install them:
7171
```bash
72-
pip install -r requirements.txt
72+
73+
for Nvidia graphics cards
74+
pip install -r requirements.txt
75+
76+
for AMD/Intel graphics cards:
77+
pip install -r requirements-dml.txt
78+
7379
```
7480

7581
------
@@ -95,17 +101,30 @@ If you want to test the v2 version model (the v2 version model has changed the i
95101

96102
./pretrained_v2
97103

98-
#If you are using Windows, you may also need this dictionary, skip if FFmpeg is installed
104+
#If you are using Windows, you may also need these two files, skip if FFmpeg and FFprobe are installed
99105
ffmpeg.exe
106+
107+
https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffmpeg.exe
108+
109+
ffprobe.exe
110+
111+
https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffprobe.exe
112+
113+
If you want to use the latest SOTA RMVPE vocal pitch extraction algorithm, you need to download the RMVPE weights and place them in the RVC root directory
114+
115+
https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.pt
116+
117+
For AMD/Intel graphics cards users you need download:
118+
119+
https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.onnx
120+
100121
```
101122
Then use this command to start Webui:
102123
```bash
103124
python infer-web.py
104125
```
105126
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.
106127

107-
There's also a tutorial on RVC in Chinese and you can check it out if needed.
108-
109128
## Credits
110129
+ [ContentVec](https://github.com/auspicious3000/contentvec/)
111130
+ [VITS](https://github.com/jaywalnut310/vits)

0 commit comments

Comments
 (0)