Update MIDI channel pressure target from 129 to 1 for Ableton export

This commit is contained in:
2026-07-14 06:56:50 +02:00
parent d5f86370d7
commit aa515202ca
2 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ type AutomationPoint = {
value: number;
};
const CHANNEL_PRESSURE_TARGET = 129;
const CHANNEL_PRESSURE_TARGET = 1;
const SENTINEL_TIME = -63072000;
export function decodeChannelPressure(event: AblMidiEvent) {