We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
my audio clip is in mono 16khz audio, [ 0 0 0 ... 63 100 127], so it will throw
---> 15 down = time_stretch(sample, Fraction(2, 1), SAMPLE_RATE) 16 wavfile.write( 17 "./stretched_down_2.wav", 18 SAMPLE_RATE, 19 np.swapaxes(down.cpu()[0].numpy(), 0, 0).astype(dtype), 20 ) File /opt/conda/envs/classify-audio/lib/python3.9/site-packages/torch_time_stretch/main.py:108, in time_stretch(input, stretch, sample_rate, n_fft, hop_length) 106 if not hop_length: 107 hop_length = n_fft // 32 --> 108 batch_size, channels, samples = input.shape 109 # resampler = T.Resample(sample_rate, int(sample_rate / stretch)).to(input.device) 110 output = input ValueError: not enough values to unpack (expected 3, got 2)
The text was updated successfully, but these errors were encountered:
idk same error
Sorry, something went wrong.
No branches or pull requests
my audio clip is in mono 16khz audio, [ 0 0 0 ... 63 100 127], so it will throw
The text was updated successfully, but these errors were encountered: