Roderick van Domburg

Results 376 comments of Roderick van Domburg

Closing this because it's stale. Feel free to reopen if the issue remains, with additional clarification.

I like the idea. I was anyway surprised that we didn’t have biquads in yet. This equalizer could be just a convenience struct with a bank of biquads underneath it....

I have an experimental equal-loudness algorithm here with a seven-band equalizer: https://github.com/roderickvd/pleezer/blob/main/src/loudness.rs Eventually I want to extract and port these into Rodio, but haven’t gotten around to it and won’t...

> > If you needed a graphic EQ like this I think you'd just cascade a set of biquads > > Thank you!. For me there are some magic words...

I maintain two projects that use Rodio: - [`librespot`](https://github.com/librespot-org/librespot) - the open source Spotify library & player; - [`pleezer`](https://github.com/roderickvd/pleezer) - the same for Deezer. At one point in time, `librespot`...

> With latest rodio from source I have an issue where Decoder::next() returns None where some samples are expected (I compute how many samples I should get using Decoder::total_duration()). Are...

Thanks for the earlier PR. Like @wgibbs-rs stated, this code is no longer being used.

@marcpabst I got added as maintainer and am doing some backlog grooming. Yes there is interest in this. I'd like to ensure that a sensical number of hosts would be...

> Is anyone working on adding a compressor effect? If not, I'd like to work on it. Are you proposing a compressor or a limiter? I have a limiter as...

Automatic gain control maintains a consistent output level regardless of input level, high or low. Compression reduces the dynamic range by attenuating beyond some threshold, according to some ratio. Limiting...