aboutsummaryrefslogtreecommitdiff
path: root/mkiv.py
diff options
context:
space:
mode:
authorGrissess <grissess@nexusg.org>2015-07-16 17:33:10 -0400
committerGrissess <grissess@nexusg.org>2015-07-16 17:33:10 -0400
commit1b2294e9318e0ddbaafd9fc7dd5ad55cbedf1cfa (patch)
tree11eadb20552cd82b7f418eb510935b67baa3a6b3 /mkiv.py
parent98e214c80fa70e4910ced4046ecc7dd95b2cbdec (diff)
Live performance, silence/play, percussion recognition, and some bugfixes
Diffstat (limited to 'mkiv.py')
-rw-r--r--mkiv.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/mkiv.py b/mkiv.py
index 249e809..5f5ea38 100644
--- a/mkiv.py
+++ b/mkiv.py
@@ -27,6 +27,7 @@ parser.add_option('-c', '--preserve-channels', dest='chanskeep', action='store_t
parser.add_option('-T', '--track-split', dest='tracks', action='append_const', const=TRACKS, help='Ensure all tracks are on non-mutual streams')
parser.add_option('-t', '--track', dest='tracks', action='append', help='Reserve an exclusive set of streams for certain conditions (try --help-conds)')
parser.add_option('--help-conds', dest='help_conds', action='store_true', help='Print help on filter conditions for streams')
+parser.add_option('-P', '--no-percussion', dest='no_perc', action='store_true', help='Don\'t try to filter percussion events out')
parser.add_option('-f', '--fuckit', dest='fuckit', action='store_true', help='Use the Python Error Steamroller when importing MIDIs (useful for extended formats)')
parser.set_defaults(tracks=[])
options, args = parser.parse_args()
@@ -192,6 +193,9 @@ for fname in args:
notegroups = []
auxstream = []
+ if not options.no_perc:
+ notegroups.append(NSGroup(filter = lambda mev: mev.ev.channel == 10, name='perc'))
+
for spec in options.tracks:
if spec is TRACKS:
for tidx in xrange(len(pat)):