Giter VIP home page Giter VIP logo

Comments (11)

josephmartin09 avatar josephmartin09 commented on July 30, 2024 25

I also noticed this. Steinberg Secretly archives their older VST SDK releases, in which I found one that has these files. This one (~2016) has the files still. I wouldn't recommend using this version for any of the VST3 functionality though as it may have changed.

https://www.steinberg.net/sdk_downloads/vstsdk366_27_06_2016_build_61.zip

from vst.net.

obiwanjacobi avatar obiwanjacobi commented on July 30, 2024

I haven't seen the latest VST3 download but if these files are there (in the VST2 folder?) you should use those. Something like: ....\VST_SDK\VST2_SDK\pluginterfaces\vst2.x ??
I had to remove the files from the project for 'license reasons'...

from vst.net.

Drachenkaetzchen avatar Drachenkaetzchen commented on July 30, 2024

No, they're definitely not there. Just downloaded the most recent SDK3 , not included. I do have a copy of the V2 SDK, so I'm good, but I'm wondering about others.

I'm currently working on a small PowerShell script to make all required adjustments as per Building the Source Code, and that was the point when I was looking for the file locations in the V3 SDK.

Will send a PR for the PowerShell script once it's working

from vst.net.

obiwanjacobi avatar obiwanjacobi commented on July 30, 2024

Yeah, that was to be expected. Steinberg has been pushing VST3 ever since it came out.
Perhaps we should try again on implementing VST3...? :-)

from vst.net.

Drachenkaetzchen avatar Drachenkaetzchen commented on July 30, 2024

The project I'm working on relies on VST2 only :(

https://www.native-instruments.com/forum/threads/announcing-presetmagician-an-automated-nksf-preset-creator-to-create-vst-prests-for-maschine-kontak.339907/#post-1706569

from vst.net.

obiwanjacobi avatar obiwanjacobi commented on July 30, 2024

I downloaded the latest VST SDK and it looks like they forgot to include the plugininterfaces folder in VST2_SDK... Perhaps they will fix it in the next release...? In a download from march this year (i had floating around), the plugininterfaces folder was still there...
You could try their forums. https://sdk.steinberg.net/index.php

from vst.net.

ValerianHavaux avatar ValerianHavaux commented on July 30, 2024

From October 2018 onward we are closing down the second version of VST for good. While the VST 2 SDK has been unavailable, and so have maintenance and technical support, the subset within the VST 3 SDK will also be omitted

Readmore at : https://www.steinberg.net/

If you want to publish your vst it is now impossible for you to do so in vst2. Migrate to vst3 except of course for vst homebrew for personal use. Also the @josephmartin09 links work perfectly.

from vst.net.

Drachenkaetzchen avatar Drachenkaetzchen commented on July 30, 2024

From October 2018 onward we are closing down the second version of VST for good. While the VST 2 SDK has been unavailable, and so have maintenance and technical support, the subset within the VST 3 SDK will also be omitted

Readmore at : https://www.steinberg.net/

If you want to publish your vst it is now impossible for you to do so in vst2. Migrate to vst3 except of course for vst homebrew for personal use. Also the @josephmartin09 links work perfectly.

I do not develop a plugin, I do develop a host, so that it a bit problematic.

from vst.net.

Drachenkaetzchen avatar Drachenkaetzchen commented on July 30, 2024

Also, the whole thing by Steinberg is extremely questionable. As I'm using vst.net, which does NOT include affect.h and aeffectx.h in it's source form, I can't see how Steinberg can possibly legally prevent that.

If I had these two files in a public repository, yes, they could take it down. But you cannot patent an API, you can only copyright it - but not in the EU.

The EU's highest court rejected these arguments. Computer code itself can be copyrighted, but functional characteristics—such as data formats and function names—cannot be. "To accept that the functionality of a computer program can be protected by copyright would amount to making it possible to monopolise ideas, to the detriment of technological progress and industrial development," the court stated.

Source: https://arstechnica.com/tech-policy/2012/05/eus-top-court-apis-cant-be-copyrighted-would-monopolise-ideas/

Also, the latest vst.net release is from 2014. Which implies that it (should) (most likely) use the aeffect.h and aeffectx.h headers from 2006, which were distributed under the license which said: "is not time limited."

I believe that using the AudioEffect and AudioEffectX classes would most likely be problematic, but using header files from 2006 (if you clicked them at that time) to compile software clearly aren't. I also don't see how Steinberg can prevent people from distributing compiled versions implementing VST2.

After all, the VST2 interface can be described as:
// VST2 interface uint8_t data[192];

To my knowledge there wasn't a case where a plugin or host was pulled from distribution because it implemented the VST2 interface. Note I do use the term "interface", because I believe it is not an API. An API is defined as:

a set of functions and procedures allowing the creation of applications that access the features or data of an operating system, application, or other service.

As (almost) everything in the VST2 interface goes via opcodes and not named functions, it is much more like a file format than an API. And - in the EU, this is legal if the purpose is interoperability.

I'm not sure if @obiwanjacobi did sign an agreement with Steinberg, but again - I see no legal possibility that they can force people from distributing VST2 plugins in binary format or using binary libraries which provide interfacing to VST2. In fact, I see the opposite: Steinberg being sued by many people because they use their market ownership to harm the market.

from vst.net.

obiwanjacobi avatar obiwanjacobi commented on July 30, 2024

I accepted the license when downloading the VST SDK. From what I remember you cannot redistribute the source and that's why they hunted all loose VST 2.x files down last year and made me (everybody) remove them from the repository.

I think if you make you own header file with some different wording you wont be spotted.
Not sure if that is legal though...

from vst.net.

farvardin avatar farvardin commented on July 30, 2024

I also noticed this. Steinberg Secretly archives their older VST SDK releases, in which I found one that has these files. This one (~2016) has the files still. I wouldn't recommend using this version for any of the VST3 functionality though as it may have changed.

https://www.steinberg.net/sdk_downloads/vstsdk366_27_06_2016_build_61.zip

unfortunately steinberg removed this version :(

you can still get the SDK from other non legitimate sources...

from vst.net.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.