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.

113 lines
4.1KB

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