-
Notifications
You must be signed in to change notification settings - Fork 730
Closed
Description
To reproduce:
filename = "test.wav"
effect = torchaudio.sox_effects.SoxEffectsChain()
effect.set_input_file(filename)
effect.append_effect_to_chain("speed", 1.0)
x,sr = effect.sox_build_flow_effects()
x.shape
effect = torchaudio.sox_effects.SoxEffectsChain()
effect.set_input_file(filename)
effect.append_effect_to_chain("speed", 2.0)
x,sr = effect.sox_build_flow_effects()
x.shape
x.shape
will be the same for both.
The "tempo" effect does work, though. Weird, because these two effects have the same interface in SoX.
Metadata
Metadata
Assignees
Labels
No labels