spotify / pedalboard

🎛 🔊 A Python library for audio.
https://spotify.github.io/pedalboard
GNU General Public License v3.0
5.15k stars 260 forks source link

Better document the "reset" parameter #179

Closed RenaKunisaki closed 1 year ago

RenaKunisaki commented 1 year ago

I was about to write this off as too slow for my use case (realtime processing with some other unavoidable latency) because most of the effects introduce a very noticeable buzz or just don't seem to do anything, which I assumed was a latency issue.

Then I stumbled upon the reset parameter of the Pedalboard object:

samples = board(samples, self.SAMPLE_RATE, reset=False)

Magically, now it works perfectly! This seems like something that should be more clearly explained in the examples.