-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Plugins.php
91 lines (81 loc) · 3.2 KB
/
Plugins.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
$PAGE_TITLE = "KXStudio : Plugins";
$PAGE_TYPE = "KXSTUDIO";
$PAGE_SOURCE_1 = ARRAY("/Plugins");
$PAGE_SOURCE_2 = ARRAY("Plugins");
include_once("includes/header.php");
?>
<div class="box box-description">
<p>
This section lists the audio plugins made or forked by the KXStudio Team.<br/>
All plugins are open-source and completely free.
</p>
<p>
You might also want to check:
</p>
<ul>
<li><a href="<?php echo $ROOT; ?>/Applications">Applications from the KXStudio Team</a></li>
<li><a href="<?php echo $ROOT; ?>/Repositories:Plugins">Plugins in the KXStudio repositories</a></li>
</ul>
<br/>
</div>
<h3><span class="mw-headline" id="DISTRHO"> <img src="images/distrho-big.png" alt="distrho-big.png" class="img_text_align"/> </span></h3>
<p>
DISTRHO provides cross-platform plugins and Linux ports, including MVerb and TAL NoiseMaker.<br/>
The official website for DISTRHO is <a href="http://distrho.sourceforge.net/" class="external free" rel="nofollow" target="_blank">
http://distrho.sourceforge.net/</a>, and its respective forums are located
<a href="http://www.kvraudio.com/forum/viewforum.php?f=191" class="external text" rel="nofollow" target="_blank">here</a>.
</p>
<p>
The
<a href="https://github.com/DISTRHO/DPF-Plugins" class="external text" rel="nofollow" target="_blank">
DPF-Plugins</a>
project contains mostly original plugins made with our own framework (dubbed
<a href="https://github.com/DISTRHO/DPF" class="external text" rel="nofollow" target="_blank">
DPF</a>),
<br/>
while
<a href="https://github.com/DISTRHO/DISTRHO-Ports" class="external text" rel="nofollow" target="_blank">
DISTRHO-Ports</a>
contains ports of 3rd party plugins made with
<a href="https://github.com/DISTRHO/juce" class="external text" rel="nofollow" target="_blank">
Juce</a>.
</p>
<hr/>
<h3><span class="mw-headline" id="fluidplug"> FluidPlug </span></h3>
<p>
FluidPlug uses SoundFonts as LV2 plugins via FluidSynth.<br/>
Made for hosts that do not support desktop UIs or loading of external files.
</p>
<p>
The source code is available
<a href="https://github.com/falkTX/FluidPlug" class="external text" rel="nofollow" target="_blank">
here</a>.
</p>
<hr/>
<h3><span class="mw-headline" id="jackass"> JackAss </span></h3>
<p>
JackAss is a VST plugin that provides JACK-MIDI support for VST hosts.<br/>
Simply load the plugin in your favourite host to get a JACK-MIDI port.<br/>
Each new plugin instance creates a new MIDI port.
</p>
<p>
The source code is available
<a href="https://github.com/falkTX/JackAss" class="external text" rel="nofollow" target="_blank">
here</a>.
</p>
<hr/>
<h3><span class="mw-headline" id="lv2ext"> LV2 Extensions </span></h3>
<p>
The KXStudio project has a few LV2 extensions of its own, adding missing functionality into the LV2 stack.<br/>
These are:
</p>
<ul>
<li><a href="ns/lv2ext/external-ui">External UI</a></li>
<li><a href="ns/lv2ext/programs">Programs</a></li>
<li><a href="ns/lv2ext/rtmempool">Realtime-Safe Memory Pool</a></li>
</ul>
<br/>
<?php
include_once("includes/footer.php");
?>