]> Shamusworld >> Repos - ardour-manual-diverged/blob - include/osc58-personal-monitoring-control.html
Move content from _manual/ to include/.
[ardour-manual-diverged] / include / osc58-personal-monitoring-control.html
1
2 <p>
3         Personal monitoring can allow a performer with a smart phone to set
4         their personal monitor mix for a floor wedge or inear monitoring.
5         In Ardour 5.6 OSC commands to allow this were added.
6 </p>
7 <h3>Setup</h3>
8 <p>
9         Some setup needs to be done in the GUI mixer window before this can
10         work.
11 </p>
12         <ul>
13                 <li>
14                         Create a bus for each performer who will have personal
15                         monitoring. A good practice is to name the bus with the
16                         performers name.
17                 </li>
18                 <li>
19                         Connect the output of that bus to one of the audio
20                         interface's playback ports that is not otherwise used. OSC
21                         will now include this bus in it's list of aux buses as it
22                         no longer has it's output connected to the Master bus.
23                 </li>
24                 <li>
25                         Add an aux send to each channel the performer needs to hear
26                         in their personal mix. Many performers only need three or
27                         four sources to be mixed. If the performer needs to hear a
28                         a set of inputs that are combined into a bus, adding the
29                         aux send to that bus may make more sense than adding ten
30                         drum channels for example.
31                 </li>
32                 <li>
33                         If the performer wishes to hear effects in their monitor,
34                         an extra send from the send bus, placing the performers aux
35                         send after the effect or a plugin can be added in line in
36                         the aux bus itself.
37                 </li>
38         </ul>
39 <p>
40         This gives stage or studio monitoring for the performer.
41 </p>
42
43 <h3>The OSC commands and feedback for personal monitoring</h3>
44 <p>
45         All of the personal monitoring commands and feedback start with a
46         <em>/cue</em>. It is expected that a surface used as a personal
47         monitor control will use only <em>/cue</em> commands.
48 </p>
49 <p class="note">
50         The send controls and feedback all have the send id (1 to n) in line
51         as part of the OSC path. So the path for the second send would be
52         <em>/cue/send/fader/2</em> to set the level. It is considered that
53         most surfaces used for this will only be able to handle one parameter.
54 </p>
55 <h4>Commands</h4>
56 <dl class="bindings">
57   <dt><kbd class="osc">/cue/connect</kbd></dt>
58   <dd>Returns a list of aux buses.</dd>
59   <dt><kbd class="osc">/cue/aux <em>aux-number</em></kbd></dt>
60   <dd>where <em>aux-number</em> is an integer which is the aux bus
61   number this surface will use.</dd>
62   <dt><kbd class="osc">/cue/next_aux</kbd></dt>
63   <dd>Sets the the aux bus to one bus higher.</dd>
64   <dt><kbd class="osc">/cue/previous_aux</kbd></dt>
65   <dd>Sets the aux to one bus lower.</dd>
66   <dt><kbd class="osc">/cue/connect</kbd></dt>
67   <dd>Returns a list of aux buses.</dd>
68   <dt><kbd class="osc">/cue/fader <em>position</em></kbd></dt>
69   <dd>where <em>position</em> is a float for the position of the fader
70   between 0.0 and 1.0.</dd>
71   <dt><kbd class="osc">/cue/mute <em>state</em></kbd></dt>
72   <dd>where <em>state</em> is a float of 0.0 for mute off and 1.0 for mute on.</dd>
73   <dt><kbd class="osc">/cue/send/fader/<em>id</em> <em>position</em></kbd></dt>
74   <dd>where <em>position</em> is a float for the position of the fader
75   between 0.0 and 1.0.</dd>
76   <dt><kbd class="osc">/cue/send/enable/<em>id</em> <em>state</em></kbd></dt>
77   <dd>where <em>state</em> is a float of 0.0 for disable and 1.0 for enable.</dd>
78 </dl>
79 <h4>Feedback</h4>
80 <dl class="bindings">
81   <dt><kbd class="osc">/cue/name <em>name</em></kbd></dt>
82   <dd>where <em>name</em> is a string that is the name of the currently
83   selected aux bus.</dd>
84   <dt><kbd class="osc">/cue/name/<em>id</em> <em>name</em></kbd></dt>
85   <dd>where <em>name</em> is a string that is the name of the aux bus
86   that <em>id</em> belongs to.</dd>
87   <dt><kbd class="osc">/cue/fader <em>position</em></kbd></dt>
88   <dd>where <em>position</em> is a float from 0.0 to 1.0 that shows the
89   fader position for the selected aux bus.</dd>
90   <dt><kbd class="osc">/cue/mute <em>state</em></kbd></dt>
91   <dd>where <em>state</em> is a float of 0.0 or 1.0 that shows the state
92   of the mute for the selected aux bus.</dd>
93   <dt><kbd class="osc">/cue/signal <em>activity</em></kbd></dt>
94   <dd>where <em>activity</em> is a float of 0.0 or 1.0 that shows audio
95   activity for the selected aux bus.</dd>
96   <dt><kbd class="osc">/cue/send/name/<em>id</em> <em>name</em></kbd></dt>
97   <dd>where <em>name</em> is a string that is the name of the channel
98   that send <em>id</em> belongs to.</dd>
99   <dt><kbd class="osc">/cue/send/fader/<em>id</em> <em>position</em></kbd></dt>
100   <dd>where <em>position</em> is a float from 0.0 to 1.0 that is the position
101   for the fader for the send that <em>id</em> belongs to.</dd>
102   <dt><kbd class="osc">/cue/send/enable/<em>id</em> <em>state</em></kbd></dt>
103   <dd>where <em>state</em> is a float of 0.0 or 1.0 that is the state
104   of the enable for the send that <em>id</em> belongs to.</dd>
105 </dl>
106 <p>
107         While a fader is being adjusted, the corresponding <em>/*/name</em>
108         text will give the level in db.
109 </p>
110