mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-01-23 21:45:00 +03:00
remove unused comment
This commit is contained in:
parent
40eccd653f
commit
3c1d87751e
@ -90,14 +90,12 @@ class Pipeline(object):
|
||||
|
||||
self.t_pad = round(self.sr * quality_padding_sec) # 前後に音声を追加
|
||||
self.t_pad_tgt = round(self.targetSR * quality_padding_sec) # 前後に音声を追加 出力時のトリミング(モデルのサンプリングで出力される)
|
||||
print("audio shape", self.t_pad, self.t_pad_tgt, audio.shape)
|
||||
audio_pad = F.pad(audio, (self.t_pad, self.t_pad), mode="reflect").squeeze(0)
|
||||
p_len = audio_pad.shape[0] // self.window
|
||||
sid = torch.tensor(sid, device=self.device).unsqueeze(0).long()
|
||||
|
||||
# RVC QualityがOnのときにはsilence_frontをオフに。
|
||||
silence_front = silence_front if repeat == 0 else 0
|
||||
print("silence_front", silence_front)
|
||||
|
||||
# ピッチ検出
|
||||
pitch, pitchf = None, None
|
||||
|
Loading…
Reference in New Issue
Block a user