├── .gitignore ├── README.md ├── __init__.py ├── doc ├── sing_workflow.json └── speech_workflow.json ├── requirements.txt └── seedvc ├── dac ├── __init__.py ├── __main__.py ├── model │ ├── __init__.py │ ├── base.py │ ├── dac.py │ ├── discriminator.py │ └── encodec.py ├── nn │ ├── __init__.py │ ├── layers.py │ ├── loss.py │ └── quantize.py └── utils │ ├── __init__.py │ ├── decode.py │ └── encode.py └── modules ├── alias_free_torch ├── __init__.py ├── act.py ├── filter.py └── resample.py ├── audio.py ├── bigvgan ├── activations.py ├── alias_free_activation │ ├── cuda │ │ ├── __init__.py │ │ ├── activation1d.py │ │ ├── anti_alias_activation.cpp │ │ ├── anti_alias_activation_cuda.cu │ │ ├── compat.h │ │ ├── load.py │ │ └── type_shim.h │ └── torch │ │ ├── __init__.py │ │ ├── act.py │ │ ├── filter.py │ │ └── resample.py ├── bigvgan.py ├── config.json ├── env.py ├── meldataset.py └── utils.py ├── campplus ├── DTDNN.py ├── classifier.py └── layers.py ├── commons.py ├── diffusion_transformer.py ├── encodec.py ├── flow_matching.py ├── gpt_fast ├── generate.py ├── model.py └── quantize.py ├── hifigan ├── f0_predictor.py └── generator.py ├── layers.py ├── length_regulator.py ├── quantize.py ├── rmvpe.py └── wavenet.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SeedVC-ComfyUI 2 | a custom node for [seed-vc](https://github.com/Plachtaa/seed-vc),you can find [workflow](./doc) 3 | 4 | ## Update 5 | - 2024-10-28: 6 | - Updated fine-tuned 44k singing voice conversion model with better audio quality 7 | - 2024-10-24: 8 | - Updated v0.3 pretrained model, changed speech content encoder to OpenAI Whisper 9 | - 2024-09-22: 10 | - Updated singing voice conversion model to use BigVGAN from NVIDIA, providing large improvement to high-pitched singing voices 11 | - 2024.9.18 sing vc 12 | 13 | ## 教程 14 | - [Demo](https://b23.tv/IfDHZ9w) 15 | - [镜像](https://www.xiangongyun.com/image/detail/f19243de-f62b-435e-96fc-ce29acbedd85) 16 | - [一键包](https://b23.tv/2Uj8QHD) 17 | ## Disclaimer / 免责声明 18 | We do not hold any responsibility for any illegal usage of the codebase. Please refer to your local laws about DMCA and other related laws. 我们不对代码库的任何非法使用承担任何责任. 请参阅您当地关于 DMCA (数字千年法案) 和其他相关法律法规. 19 | ## Example 20 | |source|reference|output| 21 | |--|--|--| 22 | |