Iver Jordal

Results 210 comments of Iver Jordal

I thought about it for a little bit and came to realize that there are two forms of noise gating: One is simple, almost like a compressor, except it turns...

And what do you mean with cpu version github? Are you refering to https://github.com/iver56/audiomentations?

Oh, that is indeed a low sample rate. Maybe you can use audiomentations for now then, since it works there @KentoNishi Have you tried torch-pitch-shift with sr=8000?

Good :) torch-audiomentations actually depends on torch-pitch-shift, but uses its get_fast_shifts feature. So yeah, if you use torch-pitch-shift directly without get_fast_shifts, it'll probably work.

That's an interesting use case, AliKarimi95 Note: Although the pitch shift transform in torch-audiomentations can be comparatively fast on GPU, it is slow on CPU. When running pitch shift on...

I see. It doesn't seem to difficult to implement. However, in the "Choose your distribution" case, I would rather pass a callable (e.g. a function or a lambda) than a...

Ok. I might be a bit on the cautious side here. I generally avoid eval because of its security implications [1], and because there is often a better way [2]...