mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-01-24 05:55:01 +03:00
371e1b8cac
pitch extractor sr is changed from fixed(16k) to audio sampl rate
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
import pyworld
|
|
import numpy as np
|
|
from const import PitchExtractorType
|
|
|
|
from voice_changer.DiffusionSVC.pitchExtractor.PitchExtractor import PitchExtractor
|
|
from voice_changer.utils.VoiceChangerModel import AudioInOut
|
|
|
|
|
|
class HarvestPitchExtractor(PitchExtractor):
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.pitchExtractorType: PitchExtractorType = "harvest"
|
|
self.f0_min = 50
|
|
self.f0_max = 1100
|
|
self.uv_interp = True
|
|
|
|
def extract(self, audio: AudioInOut, sr: int, block_size: int, model_sr: int, pitch, f0_up_key, silence_front=0):
|
|
hop_size = block_size * sr / model_sr
|
|
|
|
offset_frame_number = silence_front * sr
|
|
start_frame = int(offset_frame_number / hop_size) # frame
|
|
real_silence_front = start_frame * hop_size / sr # 秒
|
|
audio = audio[int(np.round(real_silence_front * sr)):]
|
|
|
|
f0, _ = pyworld.harvest(
|
|
audio.astype('double'),
|
|
sr,
|
|
f0_floor=self.f0_min,
|
|
f0_ceil=self.f0_max,
|
|
frame_period=(1000 * hop_size / sr))
|
|
pitch[-f0.shape[0]:] = f0[:pitch.shape[0]]
|
|
f0 = pitch
|
|
|
|
if self.uv_interp:
|
|
uv = f0 == 0
|
|
if len(f0[~uv]) > 0:
|
|
f0[uv] = np.interp(np.where(uv)[0], np.where(~uv)[0], f0[~uv])
|
|
f0[f0 < self.f0_min] = self.f0_min
|
|
|
|
f0 = f0 * 2 ** (float(f0_up_key) / 12)
|
|
|
|
return f0
|