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
error (dimension mismatch) occurs when applying a pipeline that includes coloredNoise deformer and IRConvolution deformer.
where the original audio length is 118882 samples, impulse response length is 192000 samples.
The text was updated successfully, but these errors were encountered:
The problem comes from this chunk: https://github.com/bmcfee/muda/blob/master/muda/deformers/colorednoise.py#L43-L59
The issue is that we're using rfft, but not explicitly setting the signal length when calling irfft, so odd-length signals get corrupted.
rfft
irfft
I'll rewrite this module some time soon.
Sorry, something went wrong.
No branches or pull requests
error (dimension mismatch) occurs when applying a pipeline that includes coloredNoise deformer and IRConvolution deformer.
where the original audio length is 118882 samples, impulse response length is 192000 samples.
The text was updated successfully, but these errors were encountered: