fixed osc server

This commit is contained in:
Jade (Rose) Rowland 2024-04-21 17:52:22 -04:00
parent 5d8eea7299
commit 57ad278137
4 changed files with 7 additions and 8 deletions

View file

@ -122,8 +122,7 @@ Pattern.prototype.midi = function (output) {
//magic number to get audio engine to line up, can probably be calculated somehow
const latencyMs = 34;
// passing a string with a +num into the webmidi api adds an offset to the current time https://webmidijs.org/api/classes/Output
const timeOffsetString = `${getEventOffsetMs(targetTime, currentTime) + latencyMs}`;
const timeOffsetString = `+${getEventOffsetMs(targetTime, currentTime) + latencyMs}`;
// destructure value
let { note, nrpnn, nrpv, ccn, ccv, midichan = 1, midicmd, gain = 1, velocity = 0.9 } = hap.value;