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.

185 lines
10KB

  1. <?php
  2. $PAGE_TITLE = "KXStudio : Applications : Carla";
  3. $PAGE_TYPE = "APPLICATION";
  4. $PAGE_SOURCE_1 = ARRAY("/Applications", "/Applications:Carla");
  5. $PAGE_SOURCE_2 = ARRAY("Applications", "Carla");
  6. include_once("includes/header.php");
  7. ?>
  8. <!-- Intro -->
  9. <p>
  10. Carla is an audio plugin host, with support for many audio drivers and plugin formats.<br/>
  11. It has some nice features like automation of parameters via MIDI CC (and send output back as MIDI too) and full OSC control.<br/>
  12. </p>
  13. <p>
  14. Carla currently supports LADSPA (including LRDF), DSSI, LV2, VST2/3 and AU plugin formats, plus SF2 and SFZ file support.<br/>
  15. It uses JACK as the default and preferred audio driver but also supports native drivers like ALSA, DirectSound or CoreAudio.<br/>
  16. </p>
  17. <p>
  18. There are 4 types of engine processing:
  19. </p>
  20. <ul>
  21. <li><b>Single-client</b>: (JACK driver only)<br/>
  22. Same as Multi-client, except that all JACK ports belong to a single master client.<br/>
  23. This is needed when a setup doesn't support multi-client JACK apps, such as LADISH.
  24. </li>
  25. <li><b>Multi-client</b>: (JACK driver only)<br/>
  26. Every single plugin is exposed as a new JACK client. Audio and MIDI ports are registered as needed.
  27. </li>
  28. <li><b>Rack</b>:<br/>
  29. Plugins are processed in order, from top to bottom.<br/>
  30. Plugins with non-stereo audio channels are not supported, but a forced-stereo option is available for Mono ones.
  31. </li>
  32. <li><b>Patchbay</b>:<br/>
  33. Modular patchbay mode, just like in JACK Multi-client and many other modular applications.<br/>
  34. Every plugin gets its own canvas group and ports allowing you to interconnect plugin audio and MIDI.
  35. </li>
  36. </ul>
  37. <!-- Goals and Vision -->
  38. <h3><span class="mw-headline" id="Goals-and-Vision"> Goals and Vision </span></h3>
  39. <p>
  40. Carla has the goal of being a simple and quick-to-use libre and open-source modular plugin host.<br/>
  41. This means several things:
  42. </p>
  43. <ul>
  44. <li>Be 100% free (free in price while also being free to use, modify and redistribute)</li>
  45. <li>Have its main features be simple to use</li>
  46. <li>Be fast from starting up to running plugins and having sound (assuming the user knows what to do)</li>
  47. </ul>
  48. <p>
  49. While simple in nature, a dumb-down host is not the target.<br/>
  50. Rather, it aims to be a simple tool that has advanced features under the hood, toggled by the user as needed.<br/>
  51. The basic functionality should be easily accessible and intuitive, while not making it hard for advanced users to do what they want.
  52. </p>
  53. <p>
  54. Carla's main functionality should be all about plugins and modularity, with Rack-mode (stereo top-down processing) as a bonus.<br/>
  55. In order to achieve this, it should load as many plugin formats as possible and allow inter-connectivity between them.<br/>
  56. Plugin bridges are used to load even more plugin formats and types, sometimes even those that are not native to the current platform.
  57. </p>
  58. <p>
  59. Carla should make it possible for others to use it within their projects.<br/>
  60. This is achieved by means of a simple API, plus Carla itself as a plugin.
  61. </p>
  62. <p>
  63. Remote control (over the network), while not its focus, should be possible.<br/>
  64. The backend can be running in one machine, while the frontend is in another.<br/>
  65. This is related to the previous point, where Carla should be usable by other projects.<br/>
  66. Being able to be remotely controlled allows Carla to run in embedded systems.
  67. </p>
  68. <p>
  69. Backwards-compatibility is a must.<br/>
  70. Carla should never implement a new feature that breaks old projects, nor making new projects unloadable in old versions.<br/>
  71. While a project with new features obviously won't load those in old Carla versions, the "old" supported features have to remain backwards-compatible.
  72. </p>
  73. <p>
  74. Carla should attempt to correct plugin mistakes whenever possible, so it runs as many of them as possible. A warning is logged in such cases.<br/>
  75. The target is to not annoy users that are unable to fix things by themselves (they cannot write code usually).<br/>
  76. The logged warnings should be clear enough that 3rd party developers understand what they have to fix after reading them.
  77. </p>
  78. <p>
  79. Carla should also be a great tool for debugging and developing new plugins.<br/>
  80. This is made possible by providing ways to run without audio, aka dummy driver, in order to detect leaks and memory issues.<br/>
  81. It also provides a way to test a single plugin and/or its custom UI.
  82. </p>
  83. <p>
  84. Finally, Carla should be able to be compiled and run in as many formats and platforms as possible.<br/>
  85. This means Linux, macOS and Windows as first-class platforms, but also be able to run in BSDs, HaikuOS and any other POSIX-compliant system.<br/>
  86. In terms of formats, this means running as Standalone and plugin (LV2 and VST2 minimum), while also providing its own API to easily extend it to more places.
  87. </p>
  88. <p>
  89. As a final note, it is worth saying that the personal goal of its author is to be able to make full songs within this single tool.<br/>
  90. This often involves running other tools inside Carla, but everything is still contained within it and managed by it.<br/>
  91. New features and requirements might be added to Carla as a way to achieve this goal.
  92. </p>
  93. <!-- Interface -->
  94. <h3><span class="mw-headline" id="Interface"> The Interface </span></h3>
  95. <p>
  96. By default Carla uses its own internal theme, a screenshot of it follows along with some plugins:<br/>
  97. <a href="screenshots/carla.png" class="external text" rel="nofollow"><img src="screenshots/carla.png" alt="carla.png" /></a><br/>
  98. The user can keep the custom theme but use system colors, or simply disable the custom theme altogether.<br/>
  99. The result may not be as nice though.<br/>
  100. </p>
  101. <p>
  102. The 'Patchbay' uses the same canvas engine that Catarina, Catia and Claudia do:<br/>
  103. <a href="screenshots/carla-patchbay.png" class="external text" rel="nofollow"><img src="screenshots/carla-patchbay.png" alt="carla-patchbay.png" /></a>
  104. </p>
  105. <p>
  106. The last tab "Log" simply prints debug info from time to time when an internal error occurs, in a way that doesn't disturb the user.<br/>
  107. This tab is not available in the Windows version.<br/>
  108. </p>
  109. <!-- Usage -->
  110. <h3><span class="mw-headline" id="Usage"> Usage </span></h3>
  111. <p>
  112. The first time you run Carla you'll most likely want to scan for plugins.<br/>
  113. You can configure your plugin folders in the settings if needed. When done, use "Add New Plugin" in the toolbar, then press the "Refresh" button.<br/>
  114. </p>
  115. <p>
  116. Because Carla is a somewhat complex application, a single page is not enough to cover it entirely.<br/>
  117. (We're currently writing the rest of the pages so be back soon!)
  118. </p>
  119. <!-- <ul> -->
  120. <!-- <li></li> -->
  121. <!-- </ul> -->
  122. <!-- Videos -->
  123. <h3><span class="mw-headline" id="Videos"> Videos </span></h3>
  124. <p>
  125. A few videos from falkTX, Carla's creator, showing off Carla's features and a few workflows.
  126. </p>
  127. <h6>Sonoj 2017</h6>
  128. <p>
  129. <iframe width="1024" height="576" src="https://media.ccc.de/v/sonoj2017-1704-carla-plugin-host/oembed" frameborder="0" allowfullscreen></iframe>
  130. </p>
  131. <h6>LAC 2018</h6>
  132. <p>
  133. <iframe width="1024" height="576" src="https://media.ccc.de/v/lac2018-24-carla_plugin_host_feature_overview_and_workflows/oembed" frameborder="0" allowfullscreen></iframe>
  134. </p>
  135. <!-- Download -->
  136. <h3><span class="mw-headline" id="Download"> Download </span></h3>
  137. <p>
  138. Carla is available in the KXStudio repositories, Fedora and ArchLinux (all with 'carla' package name).
  139. </p>
  140. <p>
  141. Pre-compiled binaries are available for Linux, macOS and Windows (version 2.0.0).<br/>
  142. <img src="images/ico_linux.png" alt="" class="img_text_align_spaced"/>
  143. <a href="https://github.com/falkTX/Carla/releases/download/v2.0.0/Carla_2.0.0-linux32.tar.xz" class="external text a_bigger_text" rel="nofollow" target="_blank">
  144. Linux 32bit</a><br/>
  145. <img src="images/ico_linux.png" alt="" class="img_text_align_spaced"/>
  146. <a href="https://github.com/falkTX/Carla/releases/download/v2.0.0/Carla_2.0.0-linux64.tar.xz" class="external text a_bigger_text" rel="nofollow" target="_blank">
  147. Linux 64bit</a><br/>
  148. <img src="images/ico_mac.png" alt="" class="img_text_align_spaced"/>
  149. <a href="https://github.com/falkTX/Carla/releases/download/v2.0.0/Carla_2.0.0-macos.dmg" class="external text a_bigger_text" rel="nofollow" target="_blank">
  150. MacOS 64bit</a><br/>
  151. <img src="images/ico_windows.png" alt="" class="img_text_align_spaced"/>
  152. <a href="https://github.com/falkTX/Carla/releases/download/v2.0.0/Carla_2.0.0-win32.zip" class="external text a_bigger_text" rel="nofollow" target="_blank">
  153. Windows 32bit (No SSE, for old PCs)</a><br/>
  154. <img src="images/ico_windows.png" alt="" class="img_text_align_spaced"/>
  155. <a href="https://github.com/falkTX/Carla/releases/download/v2.0.0/Carla_2.0.0-win32-nosse.zip" class="external text a_bigger_text" rel="nofollow" target="_blank">
  156. Windows 32bit</a><br/>
  157. <img src="images/ico_windows.png" alt="" class="img_text_align_spaced"/>
  158. <a href="https://github.com/falkTX/Carla/releases/download/v2.0.0/Carla_2.0.0-win64.zip" class="external text a_bigger_text" rel="nofollow" target="_blank">
  159. Windows 64bit</a><br/>
  160. </p>
  161. <p>
  162. The latest source code is hosted on github, together with bug reports, feature requests, etc.<br/>
  163. <img src="images/ico_github.png" alt="" class="img_text_align_spaced"/>
  164. <a href="https://github.com/falkTX/Carla/" class="external text a_bigger_text" rel="nofollow" target="_blank">
  165. Project page</a><br/>
  166. <img src="images/ico_github.png" alt="" class="img_text_align_spaced"/>
  167. <a href="https://github.com/falkTX/Carla/archive/master.zip" class="external text a_bigger_text" rel="nofollow" target="_blank">
  168. Source code (zip)</a><br/>
  169. <img src="images/ico_github.png" alt="" class="img_text_align_spaced"/>
  170. <a href="https://github.com/falkTX/Carla/issues?state=open" class="external text a_bigger_text" rel="nofollow" target="_blank">
  171. Bug reports / Feature requests</a><br/>
  172. </p>
  173. <p><br/></p>
  174. <?php
  175. include_once("includes/footer.php");
  176. ?>