-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathApplications:Carla-Control.php
68 lines (62 loc) · 3.68 KB
/
Applications:Carla-Control.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
<?php
$PAGE_TITLE = "KXStudio : Applications : Carla-Control";
$PAGE_TYPE = "APPLICATION_NU";
$PAGE_SOURCE_1 = ARRAY("/Applications", "/Applications:Carla-Control");
$PAGE_SOURCE_2 = ARRAY("Applications", "Carla-Control");
include_once("includes/header.php");
include_once("includes/versions.php");
?>
<!-- intro -->
<p>
Carla is an audio plugin host, with support for many audio drivers and plugin formats.<br/>
Carla-Control is a remote control application for Carla, providing the same interface but with the real backend running on a different machine.
</p>
<!-- Interface -->
<h3><span class="mw-headline" id="Interface"> The Interface </span></h3>
<p>
TODO
</p>
<!-- Usage -->
<h3><span class="mw-headline" id="Usage"> Usage </span></h3>
<p>
TODO
</p>
<!-- Download -->
<h3><span class="mw-headline" id="Download"> Download </span></h3>
<p>
Carla-Control is available in the KXStudio repositories, Fedora and ArchLinux (all with 'carla' package name).
</p>
<p>
Pre-compiled binaries are available for Linux, macOS and Windows (version <?php echo $VERSION_CARLA; ?>).<br/>
<img src="images/ico_linux.png" alt="" class="img_text_align_spaced"/>
<a href="https://github.com/falkTX/Carla/releases/download/v<?php echo $VERSION_CARLA_OLD; ?>/Carla_<?php echo $VERSION_CARLA_OLD; ?>-linux32.tar.xz" class="external text a_bigger_text" rel="nofollow" target="_blank">
Linux 32bit</a> (requires Qt 5.9 or higher)<br/>
<img src="images/ico_linux.png" alt="" class="img_text_align_spaced"/>
<a href="https://github.com/falkTX/Carla/releases/download/v<?php echo $VERSION_CARLA_OLD; ?>/Carla_<?php echo $VERSION_CARLA_OLD; ?>-linux64.tar.xz" class="external text a_bigger_text" rel="nofollow" target="_blank">
Linux 64bit</a> (requires Qt 5.9 or higher)<br/>
<img src="images/ico_mac.png" alt="" class="img_text_align_spaced"/>
<a href="https://github.com/falkTX/Carla/releases/download/v<?php echo $VERSION_CARLA; ?>/Carla-<?php echo $VERSION_CARLA_MAJ; ?>-macos-universal.dmg" class="external text a_bigger_text" rel="nofollow" target="_blank">
MacOS universal build</a> (requires macOS 10.12 or higher)<br/>
<img src="images/ico_windows.png" alt="" class="img_text_align_spaced"/>
<a href="https://github.com/falkTX/Carla/releases/download/v<?php echo $VERSION_CARLA; ?>/Carla-<?php echo $VERSION_CARLA_MAJ; ?>-win32.zip" class="external text a_bigger_text" rel="nofollow" target="_blank">
Windows 32bit</a><br/>
<img src="images/ico_windows.png" alt="" class="img_text_align_spaced"/>
<a href="https://github.com/falkTX/Carla/releases/download/v<?php echo $VERSION_CARLA; ?>/Carla-<?php echo $VERSION_CARLA_MAJ; ?>-win64.zip" class="external text a_bigger_text" rel="nofollow" target="_blank">
Windows 64bit</a><br/>
</p>
<p>
The latest source code is hosted on github, together with bug reports, feature requests, etc.<br/>
<img src="images/ico_github.png" alt="" class="img_text_align_spaced"/>
<a href="https://github.com/falkTX/Carla/" class="external text a_bigger_text" rel="nofollow" target="_blank">
Project page</a><br/>
<img src="images/ico_github.png" alt="" class="img_text_align_spaced"/>
<a href="https://github.com/falkTX/Carla/archive/main.zip" class="external text a_bigger_text" rel="nofollow" target="_blank">
Source code (zip)</a><br/>
<img src="images/ico_github.png" alt="" class="img_text_align_spaced"/>
<a href="https://github.com/falkTX/Carla/issues?state=open" class="external text a_bigger_text" rel="nofollow" target="_blank">
Bug reports / Feature requests</a><br/>
</p>
<p><br/></p>
<?php
include_once("includes/footer.php");
?>