From 1e0d45f97145f20b66b9e835e49bac8da0127c0a Mon Sep 17 00:00:00 2001 From: Datseris Date: Thu, 24 May 2018 23:41:02 +0200 Subject: [PATCH] remove program change example because it is untested in new version at the moment --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 08d6207..55badd1 100644 --- a/README.md +++ b/README.md @@ -103,10 +103,6 @@ addnotes!(track::MIDITrack, notes) # Adds a series of notes to a track getnotes(midi::MIDIFile, trackno = 2) getnotes(track::MIDITrack, tpq = 960) -# Change the program (instrument) on the given channel. -# Time is ABSOLUTE, not relative to the last event. -programchange(track::MIDITrack, time::Integer, channel::UInt8, program::UInt8) - # Add custom event (again, time is absolute) addevent!(track::MIDITrack, time::Integer, newevent::TrackEvent) ```