mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-09-01 02:09:02 +00:00
format
This commit is contained in:
@@ -1,22 +1,24 @@
|
||||
---
|
||||
title: Create MIDI Control Change
|
||||
title: Create MIDI Control Change
|
||||
sidebar:
|
||||
label: Create
|
||||
order: 1
|
||||
label: Create
|
||||
order: 1
|
||||
---
|
||||
|
||||
This processor will create a MIDI Control Change message with the specified channel, control number, and control value.
|
||||
|
||||
- **type**: `midi.control_change.create`
|
||||
- **params**:
|
||||
- **channel**: the MIDI channel
|
||||
- **control**: the control number
|
||||
- **value**: the control value
|
||||
- **channel**: the MIDI channel
|
||||
- **control**: the control number
|
||||
- **value**: the control value
|
||||
|
||||
### Example
|
||||
|
||||
```yaml
|
||||
- type: midi.control_change.create
|
||||
params:
|
||||
channel: "1"
|
||||
control: "64"
|
||||
value: "127"
|
||||
```
|
||||
```
|
||||
|
||||
@@ -1,14 +1,16 @@
|
||||
---
|
||||
title: Decode MIDI Message
|
||||
sidebar:
|
||||
label: Decode
|
||||
order: 3
|
||||
label: Decode
|
||||
order: 3
|
||||
---
|
||||
|
||||
This processor will decode incoming bytes into a MIDI message. This processor will return an error if the message being processed is not an array of bytes.
|
||||
|
||||
- **type**: `midi.message.decode`
|
||||
|
||||
### Example
|
||||
|
||||
```yaml
|
||||
- type: midi.message.decode
|
||||
```
|
||||
|
||||
@@ -1,14 +1,16 @@
|
||||
---
|
||||
title: Encode MIDI Message
|
||||
sidebar:
|
||||
label: Encode
|
||||
order: 2
|
||||
label: Encode
|
||||
order: 2
|
||||
---
|
||||
|
||||
This processor will encode a MIDI message into an array of bytes. This processor will return an error if the message being processed is not a MIDI message.
|
||||
|
||||
- **type**: `midi.message.encode`
|
||||
|
||||
### Example
|
||||
|
||||
```yaml
|
||||
- type: midi.message.encode
|
||||
```
|
||||
```
|
||||
|
||||
@@ -1,14 +1,16 @@
|
||||
---
|
||||
title: Unpack MIDI Message
|
||||
sidebar:
|
||||
label: Unpack
|
||||
order: 4
|
||||
label: Unpack
|
||||
order: 4
|
||||
---
|
||||
|
||||
This processor will unpack a MIDI message into its individual components. This processor will return an error if the message being processed is not a MIDI message.
|
||||
|
||||
- **type**: `midi.message.unpack`
|
||||
|
||||
### Example
|
||||
|
||||
```yaml
|
||||
- type: midi.message.unpack
|
||||
```
|
||||
```
|
||||
|
||||
@@ -1,22 +1,24 @@
|
||||
---
|
||||
title: Create MIDI Note On
|
||||
title: Create MIDI Note On
|
||||
sidebar:
|
||||
label: Create
|
||||
order: 1
|
||||
label: Create
|
||||
order: 1
|
||||
---
|
||||
|
||||
This processor will create a MIDI Note On message with the specified channel, note, and velocity.
|
||||
|
||||
- **type**: `midi.note_on.create`
|
||||
- **params**:
|
||||
- **channel**: the MIDI channel
|
||||
- **note**: the note number
|
||||
- **velocity**: the velocity
|
||||
- **channel**: the MIDI channel
|
||||
- **note**: the note number
|
||||
- **velocity**: the velocity
|
||||
|
||||
### Example
|
||||
|
||||
```yaml
|
||||
- type: midi.note_on.create
|
||||
params:
|
||||
channel: "1"
|
||||
note: "60"
|
||||
velocity: "127"
|
||||
```
|
||||
```
|
||||
|
||||
@@ -1,22 +1,24 @@
|
||||
---
|
||||
title: Create MIDI Note Off
|
||||
title: Create MIDI Note Off
|
||||
sidebar:
|
||||
label: Create
|
||||
order: 1
|
||||
label: Create
|
||||
order: 1
|
||||
---
|
||||
|
||||
This processor will create a MIDI Note Off message with the specified channel, note, and velocity.
|
||||
|
||||
- **type**: `midi.note_off.create`
|
||||
- **params**:
|
||||
- **channel**: the MIDI channel
|
||||
- **note**: the note number
|
||||
- **velocity**: the velocity
|
||||
- **channel**: the MIDI channel
|
||||
- **note**: the note number
|
||||
- **velocity**: the velocity
|
||||
|
||||
### Example
|
||||
|
||||
```yaml
|
||||
- type: midi.note_off.create
|
||||
params:
|
||||
channel: "1"
|
||||
note: "60"
|
||||
velocity: "127"
|
||||
```
|
||||
```
|
||||
|
||||
@@ -1,20 +1,22 @@
|
||||
---
|
||||
title: Create MIDI Prgoram Change
|
||||
title: Create MIDI Prgoram Change
|
||||
sidebar:
|
||||
label: Create
|
||||
order: 1
|
||||
label: Create
|
||||
order: 1
|
||||
---
|
||||
|
||||
This processor will create a MIDI Program Change message with the specified channel and program number.
|
||||
|
||||
- **type**: `midi.program_change.create`
|
||||
- **params**:
|
||||
- **channel**: the MIDI channel
|
||||
- **program**: the program number
|
||||
- **channel**: the MIDI channel
|
||||
- **program**: the program number
|
||||
|
||||
### Example
|
||||
|
||||
```yaml
|
||||
- type: midi.program_change.create
|
||||
params:
|
||||
channel: "1"
|
||||
program: "10"
|
||||
```
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user