KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Plugins.php 4.0KB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php
  2. $PAGE_TITLE = "KXStudio : Plugins";
  3. $PAGE_TYPE = "KXSTUDIO";
  4. $PAGE_SOURCE_1 = ARRAY("/Plugins");
  5. $PAGE_SOURCE_2 = ARRAY("Plugins");
  6. include_once("includes/header.php");
  7. ?>
  8. <div class="box box-description">
  9. <p>
  10. This section lists the audio plugins made or forked by the KXStudio Team.<br/>
  11. All plugins are open-source and completely free.
  12. </p>
  13. <p>
  14. You might also want to check:
  15. </p>
  16. <ul>
  17. <li><a href="<?php echo $ROOT; ?>/Repositories:Plugins">Plugins in the repositories</a></li>
  18. </ul>
  19. <br/>
  20. </div>
  21. <h3><span class="mw-headline" id="DISTRHO"> <img src="images/distrho-big.png" alt="distrho-big.png" class="img_text_align"/> </span></h3>
  22. <p>
  23. DISTRHO provides cross-platform plugins and Linux ports, including MVerb and TAL NoiseMaker.<br/>
  24. The official website for DISTRHO is <a href="http://distrho.sourceforge.net/" class="external free" rel="nofollow" target="_blank">
  25. http://distrho.sourceforge.net/</a>, and its respective forums are located
  26. <a href="http://www.kvraudio.com/forum/viewforum.php?f=191" class="external text" rel="nofollow" target="_blank">here</a>.
  27. </p>
  28. <p>
  29. The
  30. <a href="https://github.com/DISTRHO/DPF-Plugins" class="external text" rel="nofollow" target="_blank">
  31. DPF-Plugins</a>
  32. project contains mostly original plugins made with our own framework (dubbed
  33. <a href="https://github.com/DISTRHO/DPF" class="external text" rel="nofollow" target="_blank">
  34. DPF</a>),
  35. <br/>
  36. while
  37. <a href="https://github.com/DISTRHO/DISTRHO-Ports" class="external text" rel="nofollow" target="_blank">
  38. DISTRHO-Ports</a>
  39. contains ports of 3rd party plugins made with
  40. <a href="https://github.com/DISTRHO/juce" class="external text" rel="nofollow" target="_blank">
  41. Juce</a>.
  42. </p>
  43. <hr/>
  44. <h3><span class="mw-headline" id="dssi-vst"> dssi-vst </span></h3>
  45. <p>
  46. This was initially a fork of dssi-vst, based on "k_amlie"'s code updates (to make it more RT friendly),
  47. with a few additional fixes including:
  48. </p>
  49. <ul>
  50. <li>Enabled compiler optimizations where possible (ie, -O2 -ffast-math etc)</li>
  51. <li>Implemented time-pos support, by using a dummy jack-client (only works if host uses JACK + Transport)</li>
  52. <li>Implemented custom data/chunk, unofficial DSSI stuff (supported in Carla and a few other hosts)</li>
  53. <li>Fixed UI re-opening after being closed</li>
  54. <li>Update vestige header, to make more plugins load</li>
  55. </ul>
  56. <p>
  57. falkTX is now the maintainer of this project.<br/>
  58. The source code is available
  59. <a href="https://github.com/falkTX/dssi-vst" class="external text" rel="nofollow" target="_blank">
  60. here</a>.
  61. </p>
  62. <hr/>
  63. <h3><span class="mw-headline" id="fluidplug"> FluidPlug </span></h3>
  64. <p>
  65. FluidPlug uses SoundFonts as LV2 plugins via FluidSynth.<br/>
  66. Made for hosts that do not support desktop UIs or loading of external files.
  67. </p>
  68. <p>
  69. The source code is available
  70. <a href="https://github.com/falkTX/FluidPlug" class="external text" rel="nofollow" target="_blank">
  71. here</a>.
  72. </p>
  73. <hr/>
  74. <h3><span class="mw-headline" id="jackass"> JackAss </span></h3>
  75. <p>
  76. JackAss is a VST plugin that provides JACK-MIDI support for VST hosts.<br/>
  77. Simply load the plugin in your favourite host to get a JACK-MIDI port.<br/>
  78. Each new plugin instance creates a new MIDI port.
  79. </p>
  80. <p>
  81. The source code is available
  82. <a href="https://github.com/falkTX/JackAss" class="external text" rel="nofollow" target="_blank">
  83. here</a>.
  84. </p>
  85. <hr/>
  86. <h3><span class="mw-headline" id="lv2ext"> LV2 Extensions </span></h3>
  87. <p>
  88. The KXStudio project has a few LV2 extensions of its own, adding missing functionality into the LV2 stack.<br/>
  89. These are:
  90. </p>
  91. <ul>
  92. <li><a href="ns/lv2ext/external-ui">External UI</a></li>
  93. <li><a href="ns/lv2ext/programs">Programs</a></li>
  94. <li><a href="ns/lv2ext/rtmempool">Realtime-Safe Memory Pool</a></li>
  95. </ul>
  96. <br/>
  97. <?php
  98. include_once("includes/footer.php");
  99. ?>