Resample audio to 44100 when VAE encoding it.

This commit is contained in:
comfyanonymous 2024-06-24 16:55:20 -04:00
parent 866f54da8d
commit eab211bb1e
1 changed files with 7 additions and 1 deletions

View File

@ -31,7 +31,13 @@ class VAEEncodeAudio:
CATEGORY = "_for_testing/audio"
def encode(self, vae, audio):
t = vae.encode(audio["waveform"].movedim(1, -1))
sample_rate = audio["sample_rate"]
if 44100 != sample_rate:
waveform = torchaudio.functional.resample(audio["waveform"], sample_rate, 44100)
else:
waveform = audio["waveform"]
t = vae.encode(waveform.movedim(1, -1))
return ({"samples":t}, )
class VAEDecodeAudio: