We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1fa192 commit caf0733Copy full SHA for caf0733
comfy_extras/nodes_audio.py
@@ -360,7 +360,7 @@ def INPUT_TYPES(s):
360
def load(self, audio):
361
audio_path = folder_paths.get_annotated_filepath(audio)
362
363
- waveform, sample_rate = torchaudio.load(audio_path)
+ waveform, sample_rate = load(audio_path)
364
audio = {"waveform": waveform.unsqueeze(0), "sample_rate": sample_rate}
365
return (audio, )
366
requirements.txt
@@ -25,6 +25,5 @@ av>=14.2.0
25
#non essential dependencies:
26
kornia>=0.7.1
27
spandrel
28
-soundfile
29
pydantic~=2.0
30
pydantic-settings~=2.0
0 commit comments