summaryrefslogtreecommitdiff
path: root/share/scripts/_midifilter.lua
diff options
context:
space:
mode:
Diffstat (limited to 'share/scripts/_midifilter.lua')
-rw-r--r--share/scripts/_midifilter.lua39
1 files changed, 39 insertions, 0 deletions
diff --git a/share/scripts/_midifilter.lua b/share/scripts/_midifilter.lua
new file mode 100644
index 0000000000..48f61a8277
--- /dev/null
+++ b/share/scripts/_midifilter.lua
@@ -0,0 +1,39 @@
+ardour {
+ ["type"] = "dsp",
+ name = "Midi Filter",
+ category = "Example", -- "Utility"
+ license = "MIT",
+ author = "Ardour Lua Task Force",
+ description = [[An Example Midi Filter for prototyping.]]
+}
+
+function dsp_ioconfig ()
+ return { { midi_in = 1, midi_out = 1, audio_in = 0, audio_out = 0}, }
+end
+
+function dsp_run (_, _, n_samples)
+ assert (type(midiin) == "table")
+ assert (type(midiout) == "table")
+ local cnt = 1;
+
+ function tx_midi (time, data)
+ midiout[cnt] = {}
+ midiout[cnt]["time"] = time;
+ midiout[cnt]["data"] = data;
+ cnt = cnt + 1;
+ end
+
+ -- for each incoming midi event
+ for _,b in pairs (midiin) do
+ local t = b["time"] -- t = [ 1 .. n_samples ]
+ local d = b["data"] -- get midi-event
+ local event_type
+ if #d == 0 then event_type = -1 else event_type = d[1] >> 4 end
+
+ if (#d == 3 and event_type == 9) then -- note on
+ tx_midi (t, d)
+ elseif (#d == 3 and event_type == 8) then -- note off
+ tx_midi (t, d)
+ end
+ end
+end