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.

224 lines
9.7KB

  1. <?php
  2. $PAGE_TITLE = "KXStudio : Repositories : Plugins";
  3. $PAGE_TYPE = "KXSTUDIO";
  4. $PAGE_SOURCE_1 = ARRAY("/Repositories", "/Repositories:Plugins");
  5. $PAGE_SOURCE_2 = ARRAY("Repositories", "Plugins");
  6. include_once("includes/header.php");
  7. function endsWith($haystack, $needle) {
  8. return strrpos($haystack, $needle, 0) === (strlen($haystack) - strlen($needle));
  9. }
  10. function print_plugin($package, $screenshot, $name, $category, $details) {
  11. if (! endsWith($screenshot, '.jpg')) {
  12. $screenshot = $screenshot . '.png';
  13. }
  14. echo
  15. '<table><tr><td align="center"><p>
  16. <a href="' . $ROOT . '/screenshots/' . $screenshot . '">
  17. <img src="screenshots/thumb/' . $screenshot . '" alt="' . $screenshot . '" class="img_thumb_150"/>
  18. </a></p></td><td><p><b>
  19. <a href="apt://' . $package . '" style="color: rgb(100,230,100);">' . $name . '</a></b> (' . $category . ')<br/>';
  20. for ($i = 0, $count = count($details); $i < $count; $i++) {
  21. echo $details[$i] . '<br>';
  22. }
  23. echo '</p></td></tr></table>';
  24. }
  25. ?>
  26. <div class="box box-description">
  27. <p>
  28. This section lists the audio plugins available in the repositories.<br/>
  29. Click on the green plugin name to install its respective package.<br/>
  30. (If the links don't work, make sure you have the 'apturl-kde' or 'apturl' packages installed)
  31. </p>
  32. <p>
  33. You might also want to check:
  34. </p>
  35. <ul>
  36. <li><a href="<?php echo $ROOT; ?>/Repositories:Applications">Applications in the repositories</a></li>
  37. </ul>
  38. <br/>
  39. </div>
  40. <!--
  41. TODO: (no ui)
  42. foo-plugins
  43. jackass
  44. leet-plugins
  45. midimsg-lv2
  46. tap-plugins
  47. vcf-plugins
  48. vocoder-ladspa
  49. wasp-ladspa
  50. TODO: (with ui)
  51. ams-lv2
  52. beatslash-lv2
  53. calf-git
  54. cursynth
  55. deteriorate-lv2
  56. dssi-vst
  57. guitarix (*)
  58. hexter
  59. ir.lv2
  60. ls16 ?
  61. phasex
  62. spiralsynthmodular
  63. whysynth
  64. wsynth-dssi
  65. zynaddsubfx
  66. TODO: (distrho/juce)
  67. teragon-audio
  68. arctican-plugins
  69. dexed
  70. drowaudio-plugins
  71. juced-plugins
  72. klangfalter
  73. oxbd
  74. pitcheddelay
  75. safe-plugins
  76. tal-plugins
  77. vex
  78. wolpertinger
  79. -->
  80. <?php
  81. /*
  82. print_plugin("pkg", "scr", "name", "cat", ARRAY(
  83. 'txt1',
  84. 'txt2'
  85. ));
  86. */
  87. print_plugin("add64", "add64", "Add64", "Standalone", ARRAY(
  88. 'Add64 is the result of experiments around additive synthesis and is intended for research purposes only.',
  89. 'The spectral drawing scheme for the harmonics and envelopes has been inspired by the virtual pipe organ Aeolus by Fons Adriaensen.',
  90. 'Project Page: <a href="https://sourceforge.net/projects/add64/" class="external text" rel="nofollow" target="_blank">https://sourceforge.net/projects/add64/</a>'
  91. ));
  92. print_plugin("amsynth", "amsynth", "amSynth", "Standalone + DSSI + LV2 + VST", ARRAY(
  93. 'amsynth is a software synth that provides a classic subtractive synthesizer topology.',
  94. 'Project Page: <a href="http://code.google.com/p/amsynth/" class="external text" rel="nofollow" target="_blank">http://code.google.com/p/amsynth/</a>',
  95. ));
  96. print_plugin("arpage", "arpage", "Arpage + Zonage", "Standalone", ARRAY(
  97. 'JACK MIDI arpeggiator with transport and tempo sync.',
  98. 'Project Page: <a href="http://sourceforge.net/projects/arpage/" class="external text" rel="nofollow" target="_blank">http://sourceforge.net/projects/arpage/</a>'
  99. ));
  100. print_plugin("artyfx", "artyfx", "Arty FX", "LV2", ARRAY(
  101. 'Arty FX is a plugin bundle of artistic “RT” effects.',
  102. 'The aim is to allow the designing of your sound just as you desired using a fast, effiecient workflow.',
  103. 'Homepage: <a href="http://openavproductions.com/artyfx/" class="external text" rel="nofollow" target="_blank">http://openavproductions.com/artyfx/</a>'
  104. ));
  105. print_plugin("calf-plugins", "calf", "Calf studio gear", "Standalone + LV2", ARRAY(
  106. 'The Calf plugins include all todays frequently used studio effects along with some feature-rich sound processors.',
  107. 'Homepage: <a href="http://calf-studio-gear.org/" class="external text" rel="nofollow" target="_blank">http://calf-studio-gear.org/</a>'
  108. ));
  109. print_plugin("caps", "nogui", "CAPS", "LADSPA", ARRAY(
  110. 'The C* Audio Plugin Suite (CAPS) comprises a range of classic sound effects and a few more basic audio DSP units, signal and noise generators.',
  111. 'The suite\'s aim is to provide impeccable sound quality, computational efficiency and no perceptible latency.',
  112. 'Homepage and Documentation: <a href="http://quitte.de/dsp/caps.html" class="external text" rel="nofollow" target="_blank">http://quitte.de/dsp/caps.html</a>'
  113. ));
  114. print_plugin("drmr", "drmr", "drmr", "LV2", ARRAY(
  115. 'DrMr is an LV2 sampler plugin.',
  116. 'It gives a way for lv2 hosts to have a built in drum synth that can save its entire state.',
  117. 'Project Page: <a href="https://github.com/nicklan/drmr/wiki" class="external text" rel="nofollow" target="_blank">https://github.com/nicklan/drmr/wiki</a>'
  118. ));
  119. print_plugin("drumgizmo", "drumgizmo", "DrumGizmo", "Standalone + LV2 + VST", ARRAY(
  120. 'DrumGizmo is a cross-platform drum plugin and stand-alone application.',
  121. 'It is comparable to several commercial drum plugin products.',
  122. 'Homepage/Wiki: <a href="http://www.drumgizmo.org/wiki/" class="external text" rel="nofollow" target="_blank">http://www.drumgizmo.org/wiki/</a>'
  123. ));
  124. print_plugin("drumkv1", "drumkv1", "drumkv1", "Standalone + LV2", ARRAY(
  125. 'drumkv1 is an old-school all-digital drum-kit sampler synthesizer with stereo fx.',
  126. 'Homepage: <a href="http://drumkv1.sourceforge.net/" class="external text" rel="nofollow" target="_blank">http://drumkv1.sourceforge.net/</a>'
  127. ));
  128. print_plugin("eq10q", "eq10q", "EQ10Q", "LV2", ARRAY(
  129. 'EQ10Q is a powerfull and flexible parametric equalizer.',
  130. 'It includes parametric equalization with diferent filter types like peaking, HPF, LPF, Shelving and Notch with IIR algorithms',
  131. 'and a nice GUI displaying the equalization curve.',
  132. 'Homepage: <a href="http://eq10q.sourceforge.net/" class="external text" rel="nofollow" target="_blank">http://eq10q.sourceforge.net/</a>'
  133. ));
  134. print_plugin("fabla", "fabla", "Fabla", "LV2", ARRAY(
  135. 'Fabla is a drum sampler plugin ideal for loading up your favorite sampled sounds and bashing away on a MIDI controller.',
  136. 'Homepage: <a href="http://openavproductions.com/fabla/" class="external text" rel="nofollow" target="_blank">http://openavproductions.com/fabla/</a>'
  137. ));
  138. print_plugin("fomp", "nogui", "FOMP", "LV2", ARRAY(
  139. 'Fomp is an LV2 port of the MCP, VCO, FIL, and WAH plugins by Fons Adriaensen.',
  140. 'There are 13 plugins in total: 1 auto-wah, 1 EQ, 3 chorus, 5 filters, and 3 oscillators.',
  141. 'Homepage: <a href="http://drobilla.net/software/fomp/" class="external text" rel="nofollow" target="_blank">http://drobilla.net/software/fomp/</a>'
  142. ));
  143. print_plugin("holap", "horgand", "HOLAP", "LADSPA + DSSI", ARRAY(
  144. 'HOLAP is a set of DSSI and LADSPA audio plugins including DSP effects and a FM synthesizer.',
  145. 'Most of this LADSPA plugins are based on the wonderful ZynAddSubFX synthesizer (Paul Nasca) set of effects.',
  146. 'Homepage: <a href="http://holap.berlios.de/" class="external text" rel="nofollow" target="_blank">http://holap.berlios.de/</a>'
  147. ));
  148. print_plugin("linuxsampler-all", "nogui", "LinuxSampler", "Standalone + DSSI + LV2 + VST", ARRAY(
  149. 'Free, streaming capable open source pure software audio sampler with professional grade features,',
  150. 'comparable to both hardware and commercial Windows/Mac software samplers.',
  151. 'Homepage and Documentation: <a href="http://www.linuxsampler.org/" class="external text" rel="nofollow" target="_blank">http://www.linuxsampler.org/</a>'
  152. ));
  153. print_plugin("mda-lv2", "nogui", "MDA-LV2", "LV2", ARRAY(
  154. 'MDA-LV2 is an LV2 port of the MDA plugins by Paul Kellett.',
  155. 'It contains 36 high-quality plugins for a variety of tasks.',
  156. 'Homepage: <a href="http://drobilla.net/software/mda-lv2/" class="external text" rel="nofollow" target="_blank">http://drobilla.net/software/mda-lv2/</a>'
  157. ));
  158. print_plugin("pizmidi-plugins", "nogui", "pizmidi", "VST", ARRAY(
  159. 'pizmidi is a collection of cross-platform MIDI processing plugins.',
  160. 'Project Page: <a href="https://bitbucket.org/agraef/pizmidi/" class="external text" rel="nofollow" target="_blank">https://bitbucket.org/agraef/pizmidi/</a>'
  161. ));
  162. print_plugin("rev-plugins", "nogui", "REV-Plugins", "LADSPA", ARRAY(
  163. 'Reverb LADSPA plugins.',
  164. 'Includes a stereo reverb plugin based on the well-known greverb, and LADSPA versions of zita-rev1 in resp. stereo and first order Ambisonic mode.',
  165. 'Homepage: <a href="http://kokkinizita.linuxaudio.org/linuxaudio/index.html" class="external text" rel="nofollow" target="_blank">http://kokkinizita.linuxaudio.org/linuxaudio/index.html</a>'
  166. ));
  167. print_plugin("samplv1", "samplv1", "samplv1", "Standalone + LV2", ARRAY(
  168. 'samplv1 is an old-school all-digital polyphonic sampler synthesizer with stereo fx.',
  169. 'Homepage: <a href="http://samplv1.sourceforge.net/" class="external text" rel="nofollow" target="_blank">http://samplv1.sourceforge.net/</a>'
  170. ));
  171. print_plugin("sorcer", "sorcer", "Sorcer", "LV2", ARRAY(
  172. 'Sorcer is a polyphonic wavetable synth plugin.',
  173. 'Its sonic fingerprint is one of harsh modulated sub-bass driven walls of sound.',
  174. 'Homepage: <a href="http://openavproductions.com/sorcer/" class="external text" rel="nofollow" target="_blank">http://openavproductions.com/sorcer/</a>'
  175. ));
  176. print_plugin("synthv1", "synthv1", "synthv1", "Standalone + LV2", ARRAY(
  177. 'synthv1 is an old-school all-digital 4-oscillator subtractive polyphonic synthesizer with stereo fx.',
  178. 'Homepage: <a href="http://synthv1.sourceforge.net/" class="external text" rel="nofollow" target="_blank">http://synthv1.sourceforge.net/</a>'
  179. ));
  180. print_plugin("triceratops", "triceratops", "Triceratops", "LV2", ARRAY(
  181. 'Triceratops is a polyphonic subtractive synthesizer plugin.',
  182. 'Project Page: <a href="http://sourceforge.net/projects/triceratops/" class="external text" rel="nofollow" target="_blank">http://sourceforge.net/projects/triceratops/</a>'
  183. ));
  184. ?>
  185. <p><br/></p>
  186. <?php
  187. include_once("includes/footer.php");
  188. ?>