Last active
February 19, 2025 04:51
-
-
Save ology/a0fd2e2d9b733a68ef08cfd9a79e6cfb to your computer and use it in GitHub Desktop.
Why is a note played when note_off() fires?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Data::Dumper::Compact qw(ddc); | |
use MIDI::RtMidi::FFI::Device (); | |
my $midi_in = RtMidiIn->new; | |
$midi_in->open_port_by_name(qr/tempopad/i); | |
my $midi_out = RtMidiOut->new; | |
$midi_out->open_virtual_port('foo'); | |
$midi_out->open_port_by_name(qr/fluid/i); | |
while (1) { | |
my $msg = $midi_in->get_message_decoded; | |
if ($msg) { | |
warn ddc($msg); | |
$midi_out->note_on(0x00, 0x3C, 0x7A); | |
sleep 1; | |
$midi_out->note_off(0x00, 0x40); | |
sleep 1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment