diff --git a/include/control-surfaces-softube-console1.html b/include/control-surfaces-softube-console1.html index d9945e77..5eb7eb36 100644 --- a/include/control-surfaces-softube-console1.html +++ b/include/control-surfaces-softube-console1.html @@ -46,6 +46,12 @@ saved, the connections will be made automatically in this and other future sessions.
+The checkbox "Swap Solo and Mute" does exactly that. In Ardour and Mixbus, these buttons are arranged exactly the other way round than in Console1. Since this can be irritating, the assignment can be reversed here. +
+
Work in Progress
+The checkbox "Create Plugin Mapping Stubs" automatically creates mapping files for external plugins - if they does not already exists. See the last section "External Plugins" for further information.
+
A lot of functionality is developed to be used with Harrison Mixbus @@ -184,8 +190,8 @@
Group | +Set or unset the Console 1 into "External Plugin Mode" | + |
---|---|---|
1-20 | +Select the plugin at position [selected number]. Pressing repeatedly then shows or hides the plugin.The LED of the selected channel stay on permanently, the channel LED of the plugin number stays in 'blinking mode'. | +|
Mute | +Disables the plugin | +
All other assignements needs to be done with the mapping files. A stub of such a mapping file can be automatically created when the checkbox "Create Plugin Mapping Stubs" in the "Control Protocol Settings" dialog is enabled.
+The mapping files are created in a subdirectory "c1mappings" of the Ardour/Mixbus settings directory
+This is the example of a mapping file for the a-compressor. The file name is created from the unique URL of the plugin. In this case its urn:ardour:a-comp.xml +
+<?xml version="1.0" encoding="UTF-8"?> +<c1plugin-mapping + ID="urn:ardour:a-comp" + NAME="ACE Compressor"> + <param-mapping id="0"> + <name>Attack</name> + <mapping shift="false">COMP_ATTACK</mapping> + </param-mapping> + + <param-mapping id="1"> + <name>Release</name> + <mapping shift="false">COMP_RELEASE</mapping> + </param-mapping> + + <param-mapping id="2"> + <name>Knee</name> + <mapping shift="false"></mapping> + </param-mapping> + + <param-mapping id="3"> + <name>Ratio</name> + <mapping shift="false">COMP_RATIO</mapping> + </param-mapping> + + <param-mapping id="4"> + <name>Threshold</name> + <mapping shift="false">COMP_THRESH</mapping> + </param-mapping> + + <param-mapping id="5"> + <name>Makeup</name> + <mapping shift="false">COMP_PAR</mapping> + </param-mapping> + + <param-mapping id="6"> + <name>Sidechain</name> + <mapping shift="false"></mapping> + </param-mapping> +</c1plugin-mapping> + ++ +
It is planned to allow creating the mapping file for the plugins inside the setup dialog. This, however, might take some time. +
diff --git a/source/images/c1_settings.png b/source/images/c1_settings.png index 554ac5fb..65a8438e 100644 Binary files a/source/images/c1_settings.png and b/source/images/c1_settings.png differ