├── .gitignore ├── Examples └── TTS-with-RVC.ipynb ├── LICENSE ├── README.md ├── setup.py ├── tts_with_rvc ├── __init__.py ├── infer │ ├── __init__.py │ ├── lib │ │ ├── __init__.py │ │ ├── audio.py │ │ ├── infer_pack │ │ │ ├── __init__.py │ │ │ ├── attentions.py │ │ │ ├── commons.py │ │ │ ├── f0_modules │ │ │ │ ├── F0Predictor │ │ │ │ │ ├── DioF0Predictor.py │ │ │ │ │ ├── F0Predictor.py │ │ │ │ │ ├── FCPE.py │ │ │ │ │ ├── HarvestF0Predictor.py │ │ │ │ │ ├── PMF0Predictor.py │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── modules.py │ │ │ └── transforms.py │ │ ├── jit │ │ │ ├── __init__.py │ │ │ ├── get_hubert.py │ │ │ ├── get_rmvpe.py │ │ │ └── get_synthesizer.py │ │ ├── rmvpe.py │ │ └── slicer2.py │ └── vc │ │ ├── __init__.py │ │ ├── config.py │ │ ├── modules.py │ │ ├── pipeline.py │ │ └── utils.py ├── inference.py └── vc_infer.py └── voices.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/TTS-with-RVC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/Examples/TTS-with-RVC.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/setup.py -------------------------------------------------------------------------------- /tts_with_rvc/__init__.py: -------------------------------------------------------------------------------- 1 | from .inference import * 2 | -------------------------------------------------------------------------------- /tts_with_rvc/infer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/audio.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/infer_pack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/infer_pack/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/infer_pack/attentions.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/infer_pack/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/infer_pack/commons.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/infer_pack/f0_modules/F0Predictor/DioF0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/infer_pack/f0_modules/F0Predictor/DioF0Predictor.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/infer_pack/f0_modules/F0Predictor/F0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/infer_pack/f0_modules/F0Predictor/F0Predictor.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/infer_pack/f0_modules/F0Predictor/FCPE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/infer_pack/f0_modules/F0Predictor/FCPE.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/infer_pack/f0_modules/F0Predictor/HarvestF0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/infer_pack/f0_modules/F0Predictor/HarvestF0Predictor.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/infer_pack/f0_modules/F0Predictor/PMF0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/infer_pack/f0_modules/F0Predictor/PMF0Predictor.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/infer_pack/f0_modules/F0Predictor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/infer_pack/f0_modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/infer_pack/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/infer_pack/models.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/infer_pack/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/infer_pack/modules.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/infer_pack/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/infer_pack/transforms.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/jit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/jit/__init__.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/jit/get_hubert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/jit/get_hubert.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/jit/get_rmvpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/jit/get_rmvpe.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/jit/get_synthesizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/jit/get_synthesizer.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/rmvpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/rmvpe.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/lib/slicer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/lib/slicer2.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/vc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tts_with_rvc/infer/vc/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/vc/config.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/vc/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/vc/modules.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/vc/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/vc/pipeline.py -------------------------------------------------------------------------------- /tts_with_rvc/infer/vc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/infer/vc/utils.py -------------------------------------------------------------------------------- /tts_with_rvc/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/inference.py -------------------------------------------------------------------------------- /tts_with_rvc/vc_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/tts_with_rvc/vc_infer.py -------------------------------------------------------------------------------- /voices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atm4x/tts-with-rvc/HEAD/voices.txt --------------------------------------------------------------------------------