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
Looks like torchaudio.Resample is not very fast compared to other libraries implementing resampling in python.
torchaudio.Resample
See https://github.com/jonashaag/audio-resampling-in-python
Looks like we could switch to soxr and get a 10x speed increase.
soxr
The text was updated successfully, but these errors were encountered:
hi Juan. I found a cheap way to avoid resampling if you're using pipewire is to force the rate with
pw-metadata -n settings 0 clock.force-rate 16000
that's for microphone reording.
There's also an aubio library which provides resampling. It provides a python module
https://aubio.org/doc/latest/synth_2test-sampler_8c-example.html
Sorry, something went wrong.
No branches or pull requests
Looks like
torchaudio.Resample
is not very fast compared to other libraries implementing resampling in python.See https://github.com/jonashaag/audio-resampling-in-python
Looks like we could switch to
soxr
and get a 10x speed increase.The text was updated successfully, but these errors were encountered: