MFX plugin for Cakewalk DAWs (Sonar, Cakewalk by Bandlab etc.).
You can define MIDI notes to trigger any CC commands while being passed through.
The configuration is done via JSON notation.

Example Configuration:

JSON Schema:

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",  
  "description": "MIDI note No.",
  "patternProperties": {  	
    "^(0?[0-9]?[0-9]|1[01][0-9]|12[0-7])$": {
      "type": "object",
      "description": "CC data",
      "properties": {
        "cc": {
          "description": "Array of CC data-value tuples",
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "#": {
                "description": "CC No.",
                "type": "number",
                "minimum": 0,
                "maximum": 127
              },
              "val": {
                "description": "CC value",
                "type": "number",
                "minimum": 0,
                "maximum": 127
              }
            },
            "required": ["#", "val"],
            "additionalProperties": false
          }
        },
        "timeshift": { "type": "number" }        
      },
      "additionalProperties": false
    }
  },
  "additionalProperties": false
}

System requirements

Windows 7 64bit or newer

Downloads

TSMidiNoteMapper (ZIP, 272.64 KB)

License and disclaimer

TSMidiNoteMapper is a hobby project and is offered as freeware.
You may not distribute, sell, rent, or modify this software without permission from the author.

Any liability or warranty is excluded.