IAHispano / Applio

A simple, high-quality voice conversion tool focused on ease of use and performance.
https://applio.org
MIT License
1.49k stars 247 forks source link

[BUG] Elevenlabs-TTS error #519

Closed AznamirWoW closed 2 weeks ago

AznamirWoW commented 1 month ago

Elevelabs-TTS works only with the current GIT build, but returns an error Voice conversion failed: 'hubert'

the reason is that /rvc/lib/utils.py does not have "hubert" entry in load_embeddings function

embedding_list = {
    "hubert": os.path.join(embedder_root, "hubert_base.pt"),
    "contentvec": os.path.join(embedder_root, "contentvec_base.pt"),
    "japanese-hubert-base": os.path.join(embedder_root, "japanese-hubert-base.pt"),
    "chinese-hubert-large": os.path.join(embedder_root, "chinese-hubert-large.pt"),
}