1 |
<html> |
2 |
<head> |
3 |
<meta name="author" content="Christian Schoenebeck"> |
4 |
<meta name="description" content="Assign initial value to MIDI controller."> |
5 |
</head> |
6 |
<body> |
7 |
<h1>set_ccN Opcode</h1> |
8 |
<p> |
9 |
Sets a different initial MIDI controller value to the requested MIDI controller. |
10 |
</p> |
11 |
|
12 |
<h3>Opcode Prototype</h3> |
13 |
<p/> |
14 |
<code lang="sfz"> |
15 |
set_cc??N??=??value?? |
16 |
</code> |
17 |
|
18 |
<h3>Parameters</h3> |
19 |
<table> |
20 |
<tr> |
21 |
<th>Parameter Name</th> <th>Description</th> |
22 |
</tr> |
23 |
<tr> |
24 |
<td><code>??N??</code></td> |
25 |
<td>Defines the MIDI controller which should be altered.<br> |
26 |
[required]</td> |
27 |
</tr> |
28 |
<tr> |
29 |
<td><code>??value??</code></td> |
30 |
<td>Defines the MIDI controller's new initial value (0-127).<br> |
31 |
[required]</td> |
32 |
</tr> |
33 |
</table> |
34 |
|
35 |
<h3>Allowed Sections</h3> |
36 |
<p>Should be used in <code><control></code> section. |
37 |
|
38 |
<h3>Examples</h3> |
39 |
<p> |
40 |
Sets the so called "MIDI Expression Controller" (MIDI CC #11) to its maximum value (127). |
41 |
<p/> |
42 |
<code lang="sfz"> |
43 |
<control> |
44 |
set_cc11=127 |
45 |
</code> |
46 |
|
47 |
<h3>Availabilty</h3> |
48 |
<p>Since LinuxSampler 2.0.0.svn41<p> |
49 |
<p>Conforms to SFZ v2<p> |
50 |
|
51 |
</body> |
52 |
</html> |