Peter Sobot

Results 71 comments of Peter Sobot

Thanks @kleblackford! It seems like there are two bugs here: 1. The parameter mapping logic _should_ detect the values for your plugin's parameter, but is not doing so. I haven't...

This issue has been resolved as part of https://github.com/spotify/pedalboard/issues/278#issuecomment-1957915612, and VST3 plugins should now work as expected in `AudioStream` objects in [Pedalboard v0.8.8](https://pypi.org/project/pedalboard/0.8.8/) or later. If you find any specific...

Hi @Myuqou! Thanks for this contribution - this looks really great! I have a couple high-level suggestions before I think we can merge this: - These new methods look like...

Hi @AWAS666! I'm not sure I can help unless you have a code example to reproduce the issue. The `PitchShift` plugin does buffer audio within itself depending on how extreme...

Hmm, this does appear to be a more complicated bug than I thought - while the pitch shifter does buffer audio, it should still output _something_. This might require a...

There are a number of things to consider when changing Pedalboard to support this feature. Pedalboard currently [passes a single mutable I/O buffer](https://github.com/spotify/pedalboard/blob/master/pedalboard/process.h#L234) to all plugins in a `process` call,...

Hi @cweaver-logitech! That's a bit tricky: a segmentation fault should never happen in Pedalboard (or Python), but I see three areas to investigate (both on the Pedalboard side): - This...

Hi @spolezhaev! That's not currently on the roadmap, but wouldn't be too hard to add - [the `process` method of `ExternalPlugin`](https://github.com/spotify/pedalboard/blob/master/pedalboard/ExternalPlugin.h#L1390-L1412) would need to be overloaded to take in multiple...

Apologies for the delay - #297 has now been merged, exposing a `.raw_state` property as of [Pedalboard v0.9.6](https://pypi.org/project/pedalboard/0.9.6/).

Hi @dunossauro! JUCE does now seem to support hosting [LV2](https://docs.juce.com/master/classLV2PluginFormat.html) and [LADSPA](https://docs.juce.com/master/classLADSPAPluginFormat.html) plugins. The only barrier to getting support for those formats that into Pedalboard would be adding the additional...