├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README-ja.md ├── README.md ├── bin └── .gitignore ├── configs ├── 32k-768.json ├── 32k.json ├── 40k-768.json ├── 40k.json ├── 48k-768.json └── 48k.json ├── dev.py ├── launch.py ├── lib └── rvc │ ├── attentions.py │ ├── checkpoints.py │ ├── commons.py │ ├── config.py │ ├── data_utils.py │ ├── losses.py │ ├── mel_processing.py │ ├── models.py │ ├── modules.py │ ├── pipeline.py │ ├── preprocessing │ ├── extract_f0.py │ ├── extract_feature.py │ ├── slicer.py │ └── split.py │ ├── train.py │ ├── transforms.py │ └── utils.py ├── models ├── checkpoints │ └── .gitignore ├── embeddings │ └── .gitignore ├── pretrained │ └── .gitignore └── training │ ├── .gitignore │ ├── models │ └── .gitignore │ └── mute │ ├── 0_gt_wavs │ ├── mute32k.wav │ ├── mute40k.wav │ └── mute48k.wav │ ├── 1_16k_wavs │ └── mute.wav │ ├── 2a_f0 │ └── mute.wav.npy │ ├── 2b_f0nsf │ └── mute.wav.npy │ └── 3_feature256 │ └── mute.npy ├── modules ├── cmd_opts.py ├── core.py ├── merge.py ├── models.py ├── separate.py ├── server │ └── model.py ├── shared.py ├── tabs │ ├── inference.py │ ├── merge.py │ ├── server.py │ ├── split.py │ └── training.py ├── ui.py └── utils.py ├── outputs └── .gitignore ├── requirements.txt ├── requirements ├── dev.txt └── main.txt ├── script.js ├── server.py ├── styles.css ├── update.bat ├── update.sh ├── webui-macos-env.sh ├── webui-user.bat ├── webui-user.sh ├── webui.bat ├── webui.py └── webui.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/LICENSE -------------------------------------------------------------------------------- /README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/README-ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /configs/32k-768.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/configs/32k-768.json -------------------------------------------------------------------------------- /configs/32k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/configs/32k.json -------------------------------------------------------------------------------- /configs/40k-768.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/configs/40k-768.json -------------------------------------------------------------------------------- /configs/40k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/configs/40k.json -------------------------------------------------------------------------------- /configs/48k-768.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/configs/48k-768.json -------------------------------------------------------------------------------- /configs/48k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/configs/48k.json -------------------------------------------------------------------------------- /dev.py: -------------------------------------------------------------------------------- 1 | import modules.ui as ui 2 | 3 | demo = ui.create_ui() 4 | -------------------------------------------------------------------------------- /launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/launch.py -------------------------------------------------------------------------------- /lib/rvc/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/attentions.py -------------------------------------------------------------------------------- /lib/rvc/checkpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/checkpoints.py -------------------------------------------------------------------------------- /lib/rvc/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/commons.py -------------------------------------------------------------------------------- /lib/rvc/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/config.py -------------------------------------------------------------------------------- /lib/rvc/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/data_utils.py -------------------------------------------------------------------------------- /lib/rvc/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/losses.py -------------------------------------------------------------------------------- /lib/rvc/mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/mel_processing.py -------------------------------------------------------------------------------- /lib/rvc/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/models.py -------------------------------------------------------------------------------- /lib/rvc/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/modules.py -------------------------------------------------------------------------------- /lib/rvc/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/pipeline.py -------------------------------------------------------------------------------- /lib/rvc/preprocessing/extract_f0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/preprocessing/extract_f0.py -------------------------------------------------------------------------------- /lib/rvc/preprocessing/extract_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/preprocessing/extract_feature.py -------------------------------------------------------------------------------- /lib/rvc/preprocessing/slicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/preprocessing/slicer.py -------------------------------------------------------------------------------- /lib/rvc/preprocessing/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/preprocessing/split.py -------------------------------------------------------------------------------- /lib/rvc/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/train.py -------------------------------------------------------------------------------- /lib/rvc/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/transforms.py -------------------------------------------------------------------------------- /lib/rvc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/lib/rvc/utils.py -------------------------------------------------------------------------------- /models/checkpoints/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /models/embeddings/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /models/pretrained/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /models/training/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/models/training/.gitignore -------------------------------------------------------------------------------- /models/training/models/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /models/training/mute/0_gt_wavs/mute32k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/models/training/mute/0_gt_wavs/mute32k.wav -------------------------------------------------------------------------------- /models/training/mute/0_gt_wavs/mute40k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/models/training/mute/0_gt_wavs/mute40k.wav -------------------------------------------------------------------------------- /models/training/mute/0_gt_wavs/mute48k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/models/training/mute/0_gt_wavs/mute48k.wav -------------------------------------------------------------------------------- /models/training/mute/1_16k_wavs/mute.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/models/training/mute/1_16k_wavs/mute.wav -------------------------------------------------------------------------------- /models/training/mute/2a_f0/mute.wav.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/models/training/mute/2a_f0/mute.wav.npy -------------------------------------------------------------------------------- /models/training/mute/2b_f0nsf/mute.wav.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/models/training/mute/2b_f0nsf/mute.wav.npy -------------------------------------------------------------------------------- /models/training/mute/3_feature256/mute.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/models/training/mute/3_feature256/mute.npy -------------------------------------------------------------------------------- /modules/cmd_opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/cmd_opts.py -------------------------------------------------------------------------------- /modules/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/core.py -------------------------------------------------------------------------------- /modules/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/merge.py -------------------------------------------------------------------------------- /modules/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/models.py -------------------------------------------------------------------------------- /modules/separate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/separate.py -------------------------------------------------------------------------------- /modules/server/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/server/model.py -------------------------------------------------------------------------------- /modules/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/shared.py -------------------------------------------------------------------------------- /modules/tabs/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/tabs/inference.py -------------------------------------------------------------------------------- /modules/tabs/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/tabs/merge.py -------------------------------------------------------------------------------- /modules/tabs/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/tabs/server.py -------------------------------------------------------------------------------- /modules/tabs/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/tabs/split.py -------------------------------------------------------------------------------- /modules/tabs/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/tabs/training.py -------------------------------------------------------------------------------- /modules/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/ui.py -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/modules/utils.py -------------------------------------------------------------------------------- /outputs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements/main.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- 1 | # -r main.txt 2 | 3 | black 4 | isort -------------------------------------------------------------------------------- /requirements/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/requirements/main.txt -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/server.py -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/update.bat -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/update.sh -------------------------------------------------------------------------------- /webui-macos-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/webui-macos-env.sh -------------------------------------------------------------------------------- /webui-user.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/webui-user.bat -------------------------------------------------------------------------------- /webui-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/webui-user.sh -------------------------------------------------------------------------------- /webui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/webui.bat -------------------------------------------------------------------------------- /webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/webui.py -------------------------------------------------------------------------------- /webui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/rvc-webui/HEAD/webui.sh --------------------------------------------------------------------------------