PlayVoice / whisper-vits-svc

Core Engine of Singing Voice Conversion & Singing Voice Clone
https://huggingface.co/spaces/maxmax20160403/sovits5.0
MIT License
2.55k stars 914 forks source link

Question about pitch(f0) hop_length #154

Closed Gabibing closed 7 months ago

Gabibing commented 7 months ago

First, I would like to express my gratitude to everyone who has contributed to maintaining such a wonderful repository.

While reviewing the code, I noticed that two files require different hop_length values. in prepare/preprocess_crepe.py, it is set to 160, but in vits/data_utils.py, it is set to 320. Is this a bug, or is there a process in place to reconcile these differences?

MaxMax2016 commented 7 months ago

prepare/preprocess_crepe.py use 16kHz wave vits/data_utils.py, use 32kHz wave

Gabibing commented 7 months ago

I see. Thank you for the answer.