Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aifsh/comfyui-openvoice
https://github.com/aifsh/comfyui-openvoice
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/aifsh/comfyui-openvoice
- Owner: AIFSH
- License: other
- Created: 2024-04-25T12:24:37.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-13T06:59:08.000Z (7 months ago)
- Last Synced: 2024-05-13T07:55:03.404Z (7 months ago)
- Language: Python
- Size: 5.74 MB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ComfyUI-OpenVoice
a custom comfyui node for [OpenVoice](https://github.com/myshell-ai/OpenVoice.git) to voice cloning and tts
## how to use
make sure `ffmpeg` is worked in your commandline
for Linux
```
apt update
apt install ffmpeg
```
for Windows,you can install `ffmpeg` by [WingetUI](https://github.com/marticliment/WingetUI) automaticallyDownload the checkpoint from [here](https://myshell-public-repo-hosting.s3.amazonaws.com/openvoice/checkpoints_v2_0417.zip) and extract it to the `ComfyUI-OpenVoice` folder.
```
git clone https://github.com/AIFSH/ComfyUI-OpenVoice.git
cd ComfyUI-OpenVoice
pip install -r requirements.txt
python -m unidic download
```
`tts weights` will be downloaded from huggingface automatically! if you in china,make sure your internet attach the huggingface
or if you still struggle with huggingface, you may try follow [hf-mirror](https://hf-mirror.com/) to config your env.## Tutorial
- [Demo](https://www.bilibili.com/video/BV1yC411G7NJ)# Debuging
1.
```
Could not load library libcudnn_cnn_infer.so.8. Error: /usr/lib/x86_64-linux-gnu/libcudnn_cnn_infer.so.8: undefined symbol: _ZN11nvrtcHelper4loadEb, version libcudnn_ops_infer.so.8
Please make sure libcudnn_cnn_infer.so.8 is in your library path!
```https://github.com/vladmandic/automatic/discussions/540
fix by
```
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/miniconda3/lib/python3.10/site-packages/torch/lib
```2.
```
issueを英語で書く必要はありません。------------------- ERROR DETAILS ------------------------
arguments:
[ifs] no such file or directory: /usr/local/miniconda3/lib/python3.10/site-packages/unidic/dicdir/mecabrc
----------------------------------------------------------
```
fix by
```
cp -r /usr/local/miniconda3/lib/python3.10/site-packages/unidic_lite/dicdir /usr/local/miniconda3/lib/python3.10/site-packages/unidic/
```## WeChat Group && Donate
## Thanks
- [OpenVoice](https://github.com/myshell-ai/OpenVoice.git)
- [MeloTTS](https://github.com/myshell-ai/MeloTTS.git)