Let's Write a Reverb (2021)
signalsmith-audio.co.uk
Let's Write a Reverb (2021)
1–10 of 65 posts
Re: Let's Write a Reverb (2021)
#2Re: Let's Write a Reverb (2021)
#3Since the author does a quick comparison between convolution and algorithmic reverbs, I'll mention how I often combine them: a small/medium convolution reverb, plus a long algorithmic reverb. The convolution can perfectly diffuse the signal and it can also give a precise character to the sound, depending on the impulse response. It's great for adding a "body" to a raw sound generator. The algorithmic layer then adds a subtle ambience that can be extra long if desired.
Re: Let's Write a Reverb (2021)
#4Is it possible to model reverb using a neural network (e.g. wavenet or LSTMs) for real-time use? Is this what something like Neural DSP is doing under the hood?
Re: Let's Write a Reverb (2021)
#5Reverb algorithms are indeed random enough, a leading audio plugin brand once came up with a randomizing reverb freeware[0] embedded with a "submit when it sounds cool" button.
Re: Let's Write a Reverb (2021)
#6Is it possible to model reverb using a neural network (e.g. wavenet or LSTMs) for real-time use? Is this what something like Neural DSP is doing under the hood?
Not sure about Neural DSP or reverbs in general, but real-time neural network based DSP seems very possible. The open source Neural amp modeler[1] would be a good place to start diving in. [1] https://www.neuralampmodeler.com/the-code
Re: Let's Write a Reverb (2021)
#7I'm interested in doing the same at work, but the office PCs run Windows and I'm somewhat limited in what I can install.
The Arduino Audio Tools library seemed like it would work, but it only applies effects on one channel.
https://github.com/pschatzmann/arduino-audio-tools/wiki/Audi...
I discovered the Wishing Well stereo reverb pedal, and am wondering whether building one will allow me to apply the effect to music from an iPod, rather than a guitar.
https://scientificguitarist.wixsite.com/home/wishing-well
If anybody would like to group-buy the Wishing Well, please let me know - if I order PCBs and parts, I'll have spares.
Re: Let's Write a Reverb (2021)
#8>throw a random-number generator at all the delay times Reverb algorithms are indeed random enough, a leading audio plugin brand once came up with a randomizing reverb freeware[0] embedded with a "submit when it sounds cool" button. https://www.kvraudio.com/forum/viewtopic.php?t=453229
https://bedroomproducersblog.com/2021/11/17/baby-audio-magic...
And while it's not a one-button random reverb, MCharmVerb also heavily relies on randomizing:
Re: Let's Write a Reverb (2021)
#9Is it possible to model reverb using a neural network (e.g. wavenet or LSTMs) for real-time use? Is this what something like Neural DSP is doing under the hood?
The thing about reverb is they require a lot of state and nonlinearity is undesirable.