├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── activate_only.bat ├── activate_only.sh ├── assets └── logo.png ├── audio_webui_colab.ipynb ├── autodebug ├── __init__.py ├── autodebug.py └── prelaunch.py ├── data ├── bark_custom_speakers │ └── .placeholder ├── models │ ├── .placeholder │ ├── audioldm │ │ └── .placeholder │ ├── rvc │ │ └── .placeholder │ └── unclassified │ │ └── .placeholder └── temp │ └── .placeholder ├── example_semantic_gens.py ├── extensions └── .placeholder ├── hubert ├── __init__.py ├── customtokenizer.py ├── hubert_manager.py ├── pre_kmeans_hubert.py └── pre_kmeans_hubert_old.py ├── install.py ├── installers ├── install_linux_macos.sh └── install_windows.bat ├── main.py ├── readme.md ├── readme ├── bark │ ├── how_bark_works.md │ └── method_3.png ├── common_issues.md ├── extensions │ ├── base.md │ ├── callbacks.md │ ├── callbacks │ │ └── webui │ │ │ ├── settings.md │ │ │ └── tts │ │ │ └── list.md │ ├── guidelines.md │ ├── index.md │ ├── js.md │ ├── requirements.md │ ├── style.md │ └── your_first_extension.md ├── features.md ├── gradio │ └── info.md ├── readme.md └── rvc │ ├── graph.png │ └── training.md ├── run.bat ├── run.sh ├── run_py.bat ├── run_python.bat ├── scripts ├── script.js ├── scrolltabs.js └── titles.js ├── setup_tools ├── __init__.py ├── commands.py ├── magicinstaller │ ├── __init__.py │ ├── magicinstaller.py │ ├── requirement.py │ └── requirements │ │ ├── __init__.py │ │ ├── audio2numpy_package.py │ │ ├── audiolm_package.py │ │ ├── bark_package.py │ │ ├── huggingface_package.py │ │ ├── no_colab_package.py │ │ ├── packaging_package.py │ │ ├── pytube_package.py │ │ ├── rvc_package.py │ │ ├── torch_package.py │ │ ├── tts_package.py │ │ └── whisper_package.py ├── os.py ├── requirements_parser.py └── venv.py ├── simplestyle ├── __init__.py └── manager.py ├── update.bat ├── update.sh └── webui ├── __init__.py ├── args.py ├── extensionlib ├── __init__.py ├── callbacks.py ├── extensionmanager.py └── registry.py ├── modules ├── __init__.py ├── download.py ├── implementations │ ├── __init__.py │ ├── audio_download.py │ ├── audiocraft.py │ ├── audioldm.py │ ├── audioldm2.py │ ├── ffmpeg_utils.py │ ├── gradio_monkeypatching.py │ ├── huggingface_hub_monkeypatching.py │ ├── patches │ │ ├── __init__.py │ │ ├── bark_api.py │ │ ├── bark_custom_voices.py │ │ ├── bark_generation.py │ │ └── denoise.py │ ├── rvc │ │ ├── __init__.py │ │ ├── custom_pitch_extraction.py │ │ ├── data_utils.py │ │ ├── infer_pack │ │ │ ├── __init__.py │ │ │ ├── attentions.py │ │ │ ├── commons.py │ │ │ ├── models.py │ │ │ ├── models_onnx.py │ │ │ ├── modules.py │ │ │ ├── modules │ │ │ │ └── F0Predictor │ │ │ │ │ ├── DioF0Predictor.py │ │ │ │ │ ├── F0Predictor.py │ │ │ │ │ ├── HarvestF0Predictor.py │ │ │ │ │ ├── PMF0Predictor.py │ │ │ │ │ └── __init__.py │ │ │ ├── onnx_inference.py │ │ │ └── transforms.py │ │ ├── losses.py │ │ ├── rmvpe.py │ │ ├── rvc.py │ │ ├── slicer2.py │ │ ├── split_audio.py │ │ ├── utils.py │ │ └── vc_infer_pipeline.py │ ├── tts_monkeypatching.py │ ├── ttsmodels.py │ └── whisper.py ├── models.py └── util.py ├── ui ├── __init__.py ├── tabs │ ├── __init__.py │ ├── audiocraft.py │ ├── audioldm │ │ ├── __init__.py │ │ ├── audioldm.py │ │ └── audioldm2.py │ ├── info.py │ ├── rvc.py │ ├── settings.py │ ├── text_to_speech.py │ ├── training │ │ ├── __init__.py │ │ ├── rvc.py │ │ └── training │ │ │ ├── __init__.py │ │ │ ├── rvc_workspace.py │ │ │ └── workspace.py │ ├── training_tab.py │ ├── utils.py │ └── whisper.py └── ui.py └── webui.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/LICENSE -------------------------------------------------------------------------------- /activate_only.bat: -------------------------------------------------------------------------------- 1 | start venv\Scripts\activate.bat -------------------------------------------------------------------------------- /activate_only.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/activate_only.sh -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/assets/logo.png -------------------------------------------------------------------------------- /audio_webui_colab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/audio_webui_colab.ipynb -------------------------------------------------------------------------------- /autodebug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autodebug/autodebug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/autodebug/autodebug.py -------------------------------------------------------------------------------- /autodebug/prelaunch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/autodebug/prelaunch.py -------------------------------------------------------------------------------- /data/bark_custom_speakers/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/audioldm/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/rvc/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models/unclassified/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/temp/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_semantic_gens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/example_semantic_gens.py -------------------------------------------------------------------------------- /extensions/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hubert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hubert/customtokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/hubert/customtokenizer.py -------------------------------------------------------------------------------- /hubert/hubert_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/hubert/hubert_manager.py -------------------------------------------------------------------------------- /hubert/pre_kmeans_hubert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/hubert/pre_kmeans_hubert.py -------------------------------------------------------------------------------- /hubert/pre_kmeans_hubert_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/hubert/pre_kmeans_hubert_old.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/install.py -------------------------------------------------------------------------------- /installers/install_linux_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/installers/install_linux_macos.sh -------------------------------------------------------------------------------- /installers/install_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/installers/install_windows.bat -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/main.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme.md -------------------------------------------------------------------------------- /readme/bark/how_bark_works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/bark/how_bark_works.md -------------------------------------------------------------------------------- /readme/bark/method_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/bark/method_3.png -------------------------------------------------------------------------------- /readme/common_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/common_issues.md -------------------------------------------------------------------------------- /readme/extensions/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/extensions/base.md -------------------------------------------------------------------------------- /readme/extensions/callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/extensions/callbacks.md -------------------------------------------------------------------------------- /readme/extensions/callbacks/webui/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/extensions/callbacks/webui/settings.md -------------------------------------------------------------------------------- /readme/extensions/callbacks/webui/tts/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/extensions/callbacks/webui/tts/list.md -------------------------------------------------------------------------------- /readme/extensions/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/extensions/guidelines.md -------------------------------------------------------------------------------- /readme/extensions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/extensions/index.md -------------------------------------------------------------------------------- /readme/extensions/js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/extensions/js.md -------------------------------------------------------------------------------- /readme/extensions/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/extensions/requirements.md -------------------------------------------------------------------------------- /readme/extensions/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/extensions/style.md -------------------------------------------------------------------------------- /readme/extensions/your_first_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/extensions/your_first_extension.md -------------------------------------------------------------------------------- /readme/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/features.md -------------------------------------------------------------------------------- /readme/gradio/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/gradio/info.md -------------------------------------------------------------------------------- /readme/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/readme.md -------------------------------------------------------------------------------- /readme/rvc/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/rvc/graph.png -------------------------------------------------------------------------------- /readme/rvc/training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/readme/rvc/training.md -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/run.sh -------------------------------------------------------------------------------- /run_py.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | py -3.10 main.py %* 3 | pause -------------------------------------------------------------------------------- /run_python.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python main.py %* 3 | pause -------------------------------------------------------------------------------- /scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/scripts/script.js -------------------------------------------------------------------------------- /scripts/scrolltabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/scripts/scrolltabs.js -------------------------------------------------------------------------------- /scripts/titles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/scripts/titles.js -------------------------------------------------------------------------------- /setup_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup_tools/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/commands.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup_tools/magicinstaller/magicinstaller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/magicinstaller.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/requirement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/requirement.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/requirements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/requirements/__init__.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/requirements/audio2numpy_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/requirements/audio2numpy_package.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/requirements/audiolm_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/requirements/audiolm_package.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/requirements/bark_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/requirements/bark_package.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/requirements/huggingface_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/requirements/huggingface_package.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/requirements/no_colab_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/requirements/no_colab_package.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/requirements/packaging_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/requirements/packaging_package.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/requirements/pytube_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/requirements/pytube_package.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/requirements/rvc_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/requirements/rvc_package.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/requirements/torch_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/requirements/torch_package.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/requirements/tts_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/requirements/tts_package.py -------------------------------------------------------------------------------- /setup_tools/magicinstaller/requirements/whisper_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/magicinstaller/requirements/whisper_package.py -------------------------------------------------------------------------------- /setup_tools/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/os.py -------------------------------------------------------------------------------- /setup_tools/requirements_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/requirements_parser.py -------------------------------------------------------------------------------- /setup_tools/venv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/setup_tools/venv.py -------------------------------------------------------------------------------- /simplestyle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simplestyle/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/simplestyle/manager.py -------------------------------------------------------------------------------- /update.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | git pull 4 | PAUSE -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/update.sh -------------------------------------------------------------------------------- /webui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/args.py -------------------------------------------------------------------------------- /webui/extensionlib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/extensionlib/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/extensionlib/callbacks.py -------------------------------------------------------------------------------- /webui/extensionlib/extensionmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/extensionlib/extensionmanager.py -------------------------------------------------------------------------------- /webui/extensionlib/registry.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/modules/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/download.py -------------------------------------------------------------------------------- /webui/modules/implementations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/__init__.py -------------------------------------------------------------------------------- /webui/modules/implementations/audio_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/audio_download.py -------------------------------------------------------------------------------- /webui/modules/implementations/audiocraft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/audiocraft.py -------------------------------------------------------------------------------- /webui/modules/implementations/audioldm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/audioldm.py -------------------------------------------------------------------------------- /webui/modules/implementations/audioldm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/audioldm2.py -------------------------------------------------------------------------------- /webui/modules/implementations/ffmpeg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/ffmpeg_utils.py -------------------------------------------------------------------------------- /webui/modules/implementations/gradio_monkeypatching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/gradio_monkeypatching.py -------------------------------------------------------------------------------- /webui/modules/implementations/huggingface_hub_monkeypatching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/huggingface_hub_monkeypatching.py -------------------------------------------------------------------------------- /webui/modules/implementations/patches/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/modules/implementations/patches/bark_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/patches/bark_api.py -------------------------------------------------------------------------------- /webui/modules/implementations/patches/bark_custom_voices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/patches/bark_custom_voices.py -------------------------------------------------------------------------------- /webui/modules/implementations/patches/bark_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/patches/bark_generation.py -------------------------------------------------------------------------------- /webui/modules/implementations/patches/denoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/patches/denoise.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/custom_pitch_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/custom_pitch_extraction.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/data_utils.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/infer_pack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/infer_pack/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/infer_pack/attentions.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/infer_pack/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/infer_pack/commons.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/infer_pack/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/infer_pack/models.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/infer_pack/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/infer_pack/models_onnx.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/infer_pack/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/infer_pack/modules.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/infer_pack/modules/F0Predictor/DioF0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/infer_pack/modules/F0Predictor/DioF0Predictor.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/infer_pack/modules/F0Predictor/F0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/infer_pack/modules/F0Predictor/F0Predictor.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/infer_pack/modules/F0Predictor/HarvestF0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/infer_pack/modules/F0Predictor/HarvestF0Predictor.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/infer_pack/modules/F0Predictor/PMF0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/infer_pack/modules/F0Predictor/PMF0Predictor.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/infer_pack/modules/F0Predictor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/infer_pack/onnx_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/infer_pack/onnx_inference.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/infer_pack/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/infer_pack/transforms.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/losses.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/rmvpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/rmvpe.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/rvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/rvc.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/slicer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/slicer2.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/split_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/split_audio.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/utils.py -------------------------------------------------------------------------------- /webui/modules/implementations/rvc/vc_infer_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/rvc/vc_infer_pipeline.py -------------------------------------------------------------------------------- /webui/modules/implementations/tts_monkeypatching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/tts_monkeypatching.py -------------------------------------------------------------------------------- /webui/modules/implementations/ttsmodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/ttsmodels.py -------------------------------------------------------------------------------- /webui/modules/implementations/whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/implementations/whisper.py -------------------------------------------------------------------------------- /webui/modules/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/models.py -------------------------------------------------------------------------------- /webui/modules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/modules/util.py -------------------------------------------------------------------------------- /webui/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/ui/tabs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/__init__.py -------------------------------------------------------------------------------- /webui/ui/tabs/audiocraft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/audiocraft.py -------------------------------------------------------------------------------- /webui/ui/tabs/audioldm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/audioldm/__init__.py -------------------------------------------------------------------------------- /webui/ui/tabs/audioldm/audioldm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/audioldm/audioldm.py -------------------------------------------------------------------------------- /webui/ui/tabs/audioldm/audioldm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/audioldm/audioldm2.py -------------------------------------------------------------------------------- /webui/ui/tabs/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/info.py -------------------------------------------------------------------------------- /webui/ui/tabs/rvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/rvc.py -------------------------------------------------------------------------------- /webui/ui/tabs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/settings.py -------------------------------------------------------------------------------- /webui/ui/tabs/text_to_speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/text_to_speech.py -------------------------------------------------------------------------------- /webui/ui/tabs/training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/ui/tabs/training/rvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/training/rvc.py -------------------------------------------------------------------------------- /webui/ui/tabs/training/training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/ui/tabs/training/training/rvc_workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/training/training/rvc_workspace.py -------------------------------------------------------------------------------- /webui/ui/tabs/training/training/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/training/training/workspace.py -------------------------------------------------------------------------------- /webui/ui/tabs/training_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/training_tab.py -------------------------------------------------------------------------------- /webui/ui/tabs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/utils.py -------------------------------------------------------------------------------- /webui/ui/tabs/whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/tabs/whisper.py -------------------------------------------------------------------------------- /webui/ui/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/ui/ui.py -------------------------------------------------------------------------------- /webui/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitmylo/audio-webui/HEAD/webui/webui.py --------------------------------------------------------------------------------