Audio-to-Audio
audio
speech
voice-conversion

Is is typo?

#9
by hndrbrm - opened

I read on beatrice_trainer/__main__.py line 3124:

if target_f0 != target_f0:
    pitch_shift = 0
else:
    pitch_shift = int(round(12.0 * math.log2(target_f0 / source_f0)))

I thought it should be if target_f0 != source_f0 right?
The purposes is to calculate the relative pitch between target speaker and source speaker.

Sign up or log in to comment