Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use the vst sdk on the .net framework

I like making music using mostly my computer and especially love using synthesisers. There is a wide range of synthesiser plugins available online which are quite awesome. I have downloaded the VST (Virtual Studio Technology) SDK which is the platform that most plugins I know of use.

I would like to know if you can use the SDK on the .Net framework to write plugins; the only documentation and tutorials I could find is for C++ and I'm not that trusted with C++. I could learn to use C++, I taught myself C# in a week, but to use an unknown language and to learn other new concepts don't seem like a good combination.

Could anyone just give me pointers in the right direction on how to get started and even if it is possible to program it using .Net?

Regards Charl

like image 995
ChP Avatar asked Sep 24 '11 23:09

ChP


1 Answers

Many beginners find VST.NET the perfect choice to start off with. It comes with some samples and with VS2008/VS2010 project templates that yield working plugins. So its a great way to start.

VST.NET provides a framework that structures and groups the VST API into manageable pieces. Out of the box it provides support for common functionality such as plugin parameters and programs.

So drop by at the VST.NET codeplex site and we'll help you get started.

BTW: To my knowledge the noise project has been abandoned and although VST.NET might not appear to be very active, I still continue to react on the questions posted on its codeplex site.

like image 50
obiwanjacobi Avatar answered Oct 05 '22 01:10

obiwanjacobi