Search found 12 matches

by xos
Thu Jan 18, 2024 1:31 pm
Forum: Developer's Section
Topic: Framework for audio plugins in C code
Replies: 21
Views: 305587

Re: Framework for audio plugins in C code

If some total newbie want to try it out and make plugs in C code, I can answer all your questions.
I'm quite unaware of what newbies needs to know, but I would like to know what the questions are.

by xos
Wed Jan 10, 2024 11:00 pm
Forum: Developer's Section
Topic: Framework for audio plugins in C code
Replies: 21
Views: 305587

Re: Framework for audio plugins in C code

sadko4u wrote: Wed Jan 10, 2024 8:30 pm

I'm digging into VST3 now. Before I implemented CLAP wrapper for my plugin framework. And now I realize that CLAP seems to be the better VST3.

It's all in C++ ?

by xos
Wed Jan 10, 2024 10:59 pm
Forum: Developer's Section
Topic: Framework for audio plugins in C code
Replies: 21
Views: 305587

Re: Framework for audio plugins in C code

I'm on an old Long Term Support (LTS) distro and I don't think it has Clap support yet. I don't know how often the average Linuxer updates his distro so there may or may not be more people like me... I tend to update distro when there is no support for it anymore. So when I was using Ubuntu, it was...
by xos
Wed Jan 03, 2024 7:28 pm
Forum: Developer's Section
Topic: Framework for audio plugins in C code
Replies: 21
Views: 305587

Re: Framework for audio plugins in C code

Added support for making MIDI effects and MIDI out from theVST2 plugins. And added a simple MIDI transpose example and many simpler templates if any one wants to get started with something simpler. Thinking about adding support for making/compiling CLAP plugs using the same plug code. Have made a s...
by xos
Mon Jan 01, 2024 8:54 pm
Forum: Developer's Section
Topic: Framework for audio plugins in C code
Replies: 21
Views: 305587

Re: Framework for audio plugins in C code

Added support for making MIDI effects and MIDI out from theVST2 plugins. And added a simple MIDI transpose example and many simpler templates if any one wants to get started with something simpler. Thinking about adding support for making/compiling CLAP plugs using the same plug code. Have made a sy...
by xos
Tue Dec 26, 2023 5:04 pm
Forum: Developer's Section
Topic: Framework for audio plugins in C code
Replies: 21
Views: 305587

Re: Framework for audio plugins in C code

then I can put it on the internet for people download? If you did that you would be infringing Steinberg's copyright. Unless you bought a license from them prior to 2018 you cannot legally release a new VST2 plugin. There are a lot of posts about this online, first example I pulled up - https://for...
by xos
Tue Dec 26, 2023 5:00 pm
Forum: Developer's Section
Topic: Framework for audio plugins in C code
Replies: 21
Views: 305587

Re: Framework for audio plugins in C code

d.healey wrote: Tue Dec 26, 2023 4:52 pm
xos wrote: Tue Dec 26, 2023 3:25 pm

It's only compatible with the VST2 ABI (not the API) and does not use Steinberg code and not their headerfiles either.

Doesn't it require the VST2 SDK?

No it does not require the VST2 SDK. Everything needed is in the repository.

by xos
Tue Dec 26, 2023 3:25 pm
Forum: Developer's Section
Topic: Framework for audio plugins in C code
Replies: 21
Views: 305587

Re: Framework for audio plugins in C code

It's only compatible with the VST2 ABI (not the API) and does not use Steinberg code and not their headerfiles either. And if you use it to make plugins, you can still tell your users that it's compatible with music programs that can load VST2 plugs. Trademark law clearly makes it possible to use ot...
by xos
Sun Dec 24, 2023 4:50 pm
Forum: Developer's Section
Topic: Framework for audio plugins in C code
Replies: 21
Views: 305587

Framework for audio plugins in C code

I put up the latest version is here...
https://github.com/logos-maker/RST

by xos
Tue Nov 07, 2023 4:46 pm
Forum: Developer's Section
Topic: Adding audio fx before audio output
Replies: 4
Views: 8069

Re: Adding audio fx before audio output

When I look at pulse effect here... https://github.com/wwmm/easyeffects ...it says that it started to use pipewire filters. And then I found this... https://docs.pipewire.org/audio-dsp-filter_8c-example.html ...example code in C on how to make a pipewire filter I guess. Does this mean that I should ...
by xos
Tue Nov 07, 2023 2:24 pm
Forum: Developer's Section
Topic: Adding audio fx before audio output
Replies: 4
Views: 8069

Adding audio fx before audio output

Is it possible for a program to add a EQ for example before audio output?
Any standard way to do this on a computer that uses pulse audio?
Or do you patch and rebuild everything?
Or is it something that can be done using pipewire?

by xos
Sat Jul 23, 2022 3:07 pm
Forum: Developer's Section
Topic: How do you open the plugin editor in Linux VST2 plugs?
Replies: 2
Views: 9187

How do you open the plugin editor in Linux VST2 plugs?

This is a programming question about VST2 plugs in Linux. When you get a opcode 14 to the dispatcher 'effEditOpen' that is what is used to open the GUI for the VST2 plugin. What exactly is in that 'void *ptr' that the dispatcher gives you in Linux? And how should you use it? Is it a x11 variable of ...