mirror of
https://github.com/Mangio621/Mangio-RVC-Fork.git
synced 2026-02-24 03:49:51 +01:00
Made some changes to README with new features changelog
This commit is contained in:
118
README.md
118
README.md
@@ -1,4 +1,4 @@
|
||||
# Features:
|
||||
# 7/22 Changelog:
|
||||
- Experimental Formant Shift using StftPitchShift(tried using praat with praatio but to no avail)
|
||||
- Added `Stop Training` button when training, no need to restart RVC every time you want to stop the training of a model!
|
||||
- Auto-detect Index path for models selected + Auto-detect paths, no more default values like this: `E:\codes\py39\vits_vc_gpu_train\logs\mi-test-1key\total_fea.npy`, We're getting Root Dir and subfolders using
|
||||
@@ -12,87 +12,6 @@ os.path.abspath(os.getcwd())
|
||||
- Auto-open TensorBoard localhost URL when `tensor-launch.py` is executed
|
||||
- RMVPE implemented in both inferencing and training (the one in `Training` tab doesn't work properly though, requires some additional work to do)
|
||||
|
||||
## Installation:
|
||||
|
||||
1. Simply either extract directly or use git clone
|
||||
|
||||
2. Run `installstft.bat`. It'll automatically:
|
||||
- Upgrade/Downgrade Gradio if its version isn't 3.34.0;
|
||||
- Install `rmvpe.pt` if it hasn't been already installed;
|
||||
- Install `StftPitchShift` if it hasn't been already installed;
|
||||
|
||||
|
||||
|
||||
3. Done! You're good to go and use the RVC-WebUI Tweaked by me for you to use :)
|
||||
|
||||
## Change Gradio Theme:
|
||||
|
||||
- [OPTIONAL] Change Gradio's theme:
|
||||
1. Open `infer-web.py` in any code/text editing software (e.g. `notepad++`, `notepad`, `vscode`, etc)
|
||||
|
||||
2a. Press Ctrl+F and search for `with gr.Blocks(`, select the one that's not fully commented
|
||||
|
||||
2b. Go to line `1842`, you'll see the `with gr.Blocks(theme='HaleyCH/HaleyCH_Theme') as app:`
|
||||
|
||||
3. Go to [Gradio Theme Gallery](https://huggingface.co/spaces/gradio/theme-gallery):
|
||||
|
||||
3.1 Select any theme you like (e.g. [this one](https://huggingface.co/spaces/freddyaboulton/dracula_revamped))
|
||||
|
||||
3.2 Look at the top of the page
|
||||
|
||||

|
||||
|
||||
3.3 Copy theme variable(in this case, it's `theme='freddyaboulton/dracula_revamped'`)
|
||||
|
||||
4. Replace `theme='HaleyCH/HaleyCH_Theme'` in `infer-web.py` with any value of a theme from [Gradio Theme Gallery](https://huggingface.co/spaces/gradio/theme-gallery)
|
||||
|
||||
### Current Todo-list:
|
||||
|
||||
- [x] Fix `Unload voice to save GPU memory` button Traceback
|
||||
- [ ] Add Accordions so people with Firefox browser get a much more compact GUI rather than [This](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/assets/79400603/67e0cc08-82a2-4dc3-86cf-e23d1dcad9f8).
|
||||
- [ ] Fix weird way Median Filtering value inputted in a slider is utilized
|
||||
- [ ] Replace regular refresh buttons with these tiny ones from [AUTOMATIC'S1111 Stable DIffusion](https://github.com/AUTOMATIC1111/stable-diffusion-webui)
|
||||

|
||||
- [ ] Add a way to change the Gradio's theme from WebUI itself, like in [AUTOMATIC'S1111 Stable DIffusion](https://github.com/AUTOMATIC1111/stable-diffusion-webui)
|
||||

|
||||
- [ ] Implement Praat in the GUI for f0 curve file manipulation and easier usage
|
||||
|
||||
|
||||
# Screenshots:
|
||||
|
||||
- ## Inference Tab:
|
||||
|
||||

|
||||
|
||||
- ## UVR Tab:
|
||||
|
||||

|
||||
|
||||
- ## Training Tab:
|
||||
|
||||

|
||||
|
||||
- ## Ckpt-Processing Tab:
|
||||
|
||||

|
||||
|
||||
The rest of the tabs are left untouched code-wise.
|
||||
|
||||
|
||||
|
||||
# Formant Shift:
|
||||
|
||||

|
||||
|
||||
- ### Click `Apply` button every time you change the values for inferencing.
|
||||
|
||||
- ### As the name implies, you can only use `wav` files so far, also it is very slow, so be patient.
|
||||
|
||||
- ### If you added a new `preset.txt` in the `\formantshiftcfg\` folder, click button with refresh emoji
|
||||
|
||||
- ### If the preset you selected somehow got edited, by pressing refresh emoji button you'll update values, by grabbing them from the file
|
||||
|
||||
|
||||
|
||||
<div align="center">
|
||||
<h1>Mangio-RVC-Fork with v2 Support! 💻 </h1>
|
||||
@@ -343,6 +262,41 @@ make tensorboard
|
||||
```
|
||||
Then click the tensorboard link it provides and refresh the data.
|
||||
|
||||
## Change Gradio Theme:
|
||||
|
||||
- [OPTIONAL] Change Gradio's theme:
|
||||
1. Open `infer-web.py` in any code/text editing software (e.g. `notepad++`, `notepad`, `vscode`, etc)
|
||||
|
||||
2a. Press Ctrl+F and search for `with gr.Blocks(`, select the one that's not fully commented
|
||||
|
||||
2b. Go to line `1842`, you'll see the `with gr.Blocks(theme='HaleyCH/HaleyCH_Theme') as app:`
|
||||
|
||||
3. Go to [Gradio Theme Gallery](https://huggingface.co/spaces/gradio/theme-gallery):
|
||||
|
||||
3.1 Select any theme you like (e.g. [this one](https://huggingface.co/spaces/freddyaboulton/dracula_revamped))
|
||||
|
||||
3.2 Look at the top of the page
|
||||
|
||||

|
||||
|
||||
3.3 Copy theme variable(in this case, it's `theme='freddyaboulton/dracula_revamped'`)
|
||||
|
||||
4. Replace `theme='HaleyCH/HaleyCH_Theme'` in `infer-web.py` with any value of a theme from [Gradio Theme Gallery](https://huggingface.co/spaces/gradio/theme-gallery)
|
||||
|
||||
|
||||
# Formant Shift Explanation
|
||||
|
||||

|
||||
|
||||
- ### Click `Apply` button every time you change the values for inferencing.
|
||||
|
||||
- ### As the name implies, you can only use `wav` files so far, also it is very slow, so be patient.
|
||||
|
||||
- ### If you added a new `preset.txt` in the `\formantshiftcfg\` folder, click button with refresh emoji
|
||||
|
||||
- ### If the preset you selected somehow got edited, by pressing refresh emoji button you'll update values, by grabbing them from the file
|
||||
|
||||
|
||||
# Other
|
||||
|
||||
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.
|
||||
|
||||
Reference in New Issue
Block a user