vst-rs icon indicating copy to clipboard operation
vst-rs copied to clipboard

VST 2.4 API implementation in rust. Create plugins or hosts. Previously rust-vst on the RustDSP group.

Results 33 vst-rs issues
Sort by recently updated
recently updated
newest added

Hey. I'm trying to write a test for my `process` function but I can't find a way to construct an audio buffer for the test. Any suggestions?

The host needs to know whether or not the plugin editor handles a given key event. Otherwise, the key event is sent to the host, and we don't receive a...

Used a quoteblock. Let me know if it should be more visible like with an h2 or something

This implements #184. I've chosen to mark `PluginParameterInfo` as `non_exhaustive` because support for the category, display index and label stuff is missing. So this struct needs to be constructed via...

As pointed out in #95, support for the `GetParamInfo` opcode is still missing. I will open a pull request in the next days that implements this opcode partially (including step...

As a VST developer, I want to be able to use `rust-vst` to create a VST that has a graphical user interface. To help this, `rust-vst` should provide at least...

GUI

This is useful when passing that functionality to something like wmidi

https://github.com/budziq/rust-skeptic#getting-started We could add a `build.rs` to test all Rust code blocks in `README.md`: ```rust fn main() { skeptic::generate_doc_tests(&["README.md"]); } ```

enhancement
documentation

This is an issue to track the TODO bullet point in the `README.md` that I removed in #94. This TODO is very vague. Can we come up with a list...

enhancement

Right now, if the host calls into a vst-rs plugin and the plugin panics because of a bug, the host crashes (at least if the plugin runs in the same...

enhancement
question