├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── infer_pack ├── __pycache__ │ ├── attentions.cpython-310.pyc │ ├── commons.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── modules.cpython-310.pyc │ └── transforms.cpython-310.pyc ├── attentions.py ├── commons.py ├── models.py ├── models_onnx.py ├── models_onnx_moess.py ├── modules.py └── transforms.py ├── requirements.txt ├── rmvpe.py ├── rvc.py ├── start.bat ├── start.sh └── vc_infer_pipeline.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | voices 3 | rvcs 4 | models 5 | __pycache__ 6 | *.wav -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/app.py -------------------------------------------------------------------------------- /infer_pack/__pycache__/attentions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/infer_pack/__pycache__/attentions.cpython-310.pyc -------------------------------------------------------------------------------- /infer_pack/__pycache__/commons.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/infer_pack/__pycache__/commons.cpython-310.pyc -------------------------------------------------------------------------------- /infer_pack/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/infer_pack/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /infer_pack/__pycache__/modules.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/infer_pack/__pycache__/modules.cpython-310.pyc -------------------------------------------------------------------------------- /infer_pack/__pycache__/transforms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/infer_pack/__pycache__/transforms.cpython-310.pyc -------------------------------------------------------------------------------- /infer_pack/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/infer_pack/attentions.py -------------------------------------------------------------------------------- /infer_pack/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/infer_pack/commons.py -------------------------------------------------------------------------------- /infer_pack/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/infer_pack/models.py -------------------------------------------------------------------------------- /infer_pack/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/infer_pack/models_onnx.py -------------------------------------------------------------------------------- /infer_pack/models_onnx_moess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/infer_pack/models_onnx_moess.py -------------------------------------------------------------------------------- /infer_pack/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/infer_pack/modules.py -------------------------------------------------------------------------------- /infer_pack/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/infer_pack/transforms.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/requirements.txt -------------------------------------------------------------------------------- /rmvpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/rmvpe.py -------------------------------------------------------------------------------- /rvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/rvc.py -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | call venv/Scripts/activate & python app.py -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | python3 app.py -------------------------------------------------------------------------------- /vc_infer_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitrepreneur/XTTS-RVC-UI/HEAD/vc_infer_pipeline.py --------------------------------------------------------------------------------