mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-01-24 14:05:00 +03:00
45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
import pyworld
|
|
import numpy as np
|
|
import scipy.signal as signal
|
|
|
|
from voice_changer.RVC.pitchExtractor.PitchExtractor import PitchExtractor
|
|
|
|
|
|
class HarvestPitchExtractor(PitchExtractor):
|
|
def extract(self, audio, f0_up_key, sr, window, silence_front=0):
|
|
audio = audio.detach().cpu().numpy()
|
|
n_frames = int(len(audio) // window) + 1
|
|
start_frame = int(silence_front * sr / window)
|
|
real_silence_front = start_frame * window / sr
|
|
|
|
silence_front_offset = int(np.round(real_silence_front * sr))
|
|
audio = audio[silence_front_offset:]
|
|
|
|
f0_min = 50
|
|
f0_max = 1100
|
|
f0_mel_min = 1127 * np.log(1 + f0_min / 700)
|
|
f0_mel_max = 1127 * np.log(1 + f0_max / 700)
|
|
|
|
f0, t = pyworld.harvest(
|
|
audio.astype(np.double),
|
|
fs=sr,
|
|
f0_ceil=f0_max,
|
|
frame_period=10,
|
|
)
|
|
f0 = pyworld.stonemask(audio.astype(np.double), f0, t, sr)
|
|
f0 = signal.medfilt(f0, 3)
|
|
|
|
f0 = np.pad(f0.astype("float"), (start_frame, n_frames - len(f0) - start_frame))
|
|
|
|
f0 *= pow(2, f0_up_key / 12)
|
|
f0bak = f0.copy()
|
|
f0_mel = 1127 * np.log(1 + f0 / 700)
|
|
f0_mel[f0_mel > 0] = (f0_mel[f0_mel > 0] - f0_mel_min) * 254 / (
|
|
f0_mel_max - f0_mel_min
|
|
) + 1
|
|
f0_mel[f0_mel <= 1] = 1
|
|
f0_mel[f0_mel > 255] = 255
|
|
f0_coarse = np.rint(f0_mel).astype(int)
|
|
|
|
return f0_coarse, f0bak
|