如何VST插件做? [英] How are VST Plugins made?

查看:954
本文介绍了如何VST插件做?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使(或学习如何制作)VST插件。是否有这种特殊的SDK?一个人如何产生.VST,而不是一个.exe文件?此外,如果一个人寻找使音频单元的Logic Pro,怎么做呢?
谢谢

I would like to make (or learn how to make) VST plugins. Is there a special SDK for this? how does one yield a .vst instead of a .exe? Also, if one is looking to make Audio Units for Logic Pro, how is that done? Thanks

推荐答案

链接维基开始,解释他们是什么使链接到SDK。
下面是关于DEVE一些信息

Start with this link to the wiki, explains what they are and gives links to the sdk. Here is some information regarding the deve

如何编译插件 - 对于C ++ Builder的制作VST插件,首先需要由Steinberg的VST SDK。它可从伊凡Grabit的站点(该链接在页面的顶部)。

How to compile a plugin - For making VST plugins in C++Builder, first you need the VST sdk by Steinberg. It's available from the Yvan Grabit's site (the link is at the top of the page).

您需要做的下一件事就是创建一个.DEF文件(例如:myplugin.def)。这需要至少包含下列行:

The next thing you need to do is create a .def file (for example : myplugin.def). This needs to contain at least the following lines:

EXPORTS main=_main

Borland的编译器添加下划线的功能名称,这种出口的main()函数一个VST宿主预期的方式。有关.DEF文件的详细信息,请参阅C ++ Builder的帮助文件。

Borland compilers add an underscore to function names, and this exports the main() function the way a VST host expects it. For more information about .def files, see the C++Builder help files.

这是不够的,虽然。如果你打算使用任何VCL元(什么与表单或组件),你必须照顾你的插件不会崩溃的Cubase(或其他VST宿主,对于这个问题)。具体方法如下:

This is not enough, though. If you're going to use any VCL element (anything to do with forms or components), you have to take care your plugin doesn't crash Cubase (or another VST host, for that matter). Here's how:


  1. 包括float.h时。

  2. 在你的效果类的构造函数,写

  1. Include float.h.
  2. In the constructor of your effect class, write

_control87(PC_64|MCW_EM,MCW_PC|MCW_EM);


这是应该做的伎俩。

下面是一些有用的网站:

Here are some more useful sites:

<一个href=\"http://www.steinberg.net/en/company/developer.html\">http://www.steinberg.net/en/company/developer.html

<一个href=\"http://www.asktoby.com/Toby%20Newman%20-%20Dissertation%20-%20%20how%20to%20write%20a%20VST%20plugin.pdf\">how写一个VST插件(PDF)通过 http://www.asktoby.com/#vsttutorial

这篇关于如何VST插件做?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆