Skip to content

Commit

Permalink
feat: Initial support for Ardour
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed May 21, 2019
1 parent b202874 commit 4512985
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions src/constants/MixerProtocolPresets.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,61 @@ export const MixerProtocolPresets = {
test: 0.6,
},
},
// ---------------------------------------------------------
ardourMaster: {
protocol: 'OSC',
label: 'Ardour DAW - Master Mode',
mode: "master", //master (ignores mixers faderlevel, and use faderlevel as gain preset),
//client (use feedback from mixers fader level)
leadingZeros: true,
pingCommand: [
{
oscMessage: "/strip/list",
value: "",
type: ""
}
],
pingTime: 9500,
initializeCommands: [
{
oscMessage: '/ch/{channel}/mix/fader',
value: "",
type: ""
},
{
oscMessage: '/ch/{channel}/config/name',
value: "",
type: ""
}
],
fromMixer: {
CHANNEL_FADER_LEVEL: 'none', //'none' ignores this command
CHANNEL_OUT_GAIN: '/strip/fader/{channel}',
CHANNEL_VU: '/meters/1',
CHANNEL_NAME: '/ch/{channel}/config/name',
GRP_OUT_GAIN: '/dca/{channel}/fader',
GRP_VU: 'none',
GRP_NAME: '/dca/{channel}/config/name',
},
toMixer: {
CHANNEL_FADER_LEVEL: 'none',
CHANNEL_OUT_GAIN: '/strip/fader/{channel}',
GRP_OUT_GAIN: '/dca/{channel}/fader',
},
fader: {
min: 0,
max: 1,
zero: 0.75,
step: 0.01,
fadeTime: 40,
},
meter: {
min: 0,
max: 1,
zero: 0.75,
test: 0.6,
},
},
// ---------------------------------------------------------
genericMidi: {
protocol: 'MIDI',
Expand Down

0 comments on commit 4512985

Please sign in to comment.