mirror of https://github.com/coqui-ai/TTS.git
Force the loading of the wav in synthesis using the AP sample rate to avoid breaking the demo
This commit is contained in:
parent
496a4be3e3
commit
ae62efd9eb
|
@ -39,7 +39,7 @@ def numpy_to_tf(np_array, dtype):
|
||||||
|
|
||||||
def compute_style_mel(style_wav, ap, cuda=False):
|
def compute_style_mel(style_wav, ap, cuda=False):
|
||||||
style_mel = torch.FloatTensor(ap.melspectrogram(
|
style_mel = torch.FloatTensor(ap.melspectrogram(
|
||||||
ap.load_wav(style_wav))).unsqueeze(0)
|
ap.load_wav(style_wav, sr=ap.sample_rate))).unsqueeze(0)
|
||||||
if cuda:
|
if cuda:
|
||||||
return style_mel.cuda()
|
return style_mel.cuda()
|
||||||
return style_mel
|
return style_mel
|
||||||
|
|
Loading…
Reference in New Issue