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