Updated Open Sound Control API (markdown)

BHBN
2021-12-27 18:42:31 +01:00
parent ad8faced3b
commit f6c081d7be

@@ -220,6 +220,7 @@ To add a translation, you should enter an `<osc>` XML node containing 2 nodes: `
> With the translation below, vimix will show/hide the sources 0 to 3 when pressing a button on LittleOSC.
<?xml version="1.0" encoding="UTF-8"?>
<!--LittleOSC translations-->
<osc>
<from>/1/push1</from>
<to>/vimix/0/alpha</to>
@@ -238,9 +239,11 @@ To add a translation, you should enter an `<osc>` XML node containing 2 nodes: `
</osc>
> Example 2: Download and install [MIEM Play](https://miem.laras.be/controller/) ([Android](https://play.google.com/store/apps/details?id=com.gwendallv.miemcontroller), [iOS](https://apps.apple.com/fr/app/miem-play/id1451086567)). Run it and set the IP Address and Port to target __vimix__ host.
> Using the default session configuration of the app, the following translations will allow controlling source 0 to 3 in __vimix__.
> Using the default session configuration of the app, the following translations will allow controlling source 0 to 5 in __vimix__.
> NB: the /vimix/info/ignore is handy to avoid logging other messages as error.
<?xml version="1.0" encoding="UTF-8"?>
<!--MIEM translations-->
<osc>
<from>/miem/1</from>
<to>/vimix/0/alpha</to>
@@ -257,6 +260,42 @@ To add a translation, you should enter an `<osc>` XML node containing 2 nodes: `
<from>/miem/4</from>
<to>/vimix/3/alpha</to>
</osc>
<osc>
<from>/miem/5</from>
<to>/vimix/4/alpha</to>
</osc>
<osc>
<from>/miem/6</from>
<to>/vimix/5/alpha</to>
</osc>
<osc>
<from>/voice</from>
<to>/vimix/info/ignore</to>
</osc>
<osc>
<from>/voice</from>
<to>/vimix/info/ignore</to>
</osc>
<osc>
<from>/drums</from>
<to>/vimix/info/ignore</to>
</osc>
<osc>
<from>/lights</from>
<to>/vimix/info/ignore</to>
</osc>
<osc>
<from>/reverb</from>
<to>/vimix/info/ignore</to>
</osc>
<osc>
<from>/synth1</from>
<to>/vimix/info/ignore</to>
</osc>
<osc>
<from>/synth2</from>
<to>/vimix/info/ignore</to>
</osc>
***