MMVCv15 ignore minimum input

This commit is contained in:
wataru 2023-05-25 08:55:56 +09:00
parent 3233377abd
commit 3037c3d2f9

View File

@ -242,8 +242,8 @@ class MMVCv15:
convertSize = inputSize + crossfadeSize + solaSearchFrame
if convertSize < 8192:
convertSize = 8192
# if convertSize < 8192:
# convertSize = 8192
if convertSize % self.hps.data.hop_length != 0: # モデルの出力のホップサイズで切り捨てが発生するので補う。
convertSize = convertSize + (
self.hps.data.hop_length - (convertSize % self.hps.data.hop_length)