aboutsummaryrefslogtreecommitdiff
path: root/shiv.py
diff options
context:
space:
mode:
authorGrissess <grissess@nexusg.org>2016-09-12 11:52:50 -0400
committerGrissess <grissess@nexusg.org>2016-09-12 11:52:50 -0400
commitbab20d4625ddddad7911d548edca12cc0ea93c6b (patch)
tree2a48ef4c45c0578700cdaf7275e5abf74215001c /shiv.py
parent33d49cd847ab06c6912a216cc3b4ff8a549145b1 (diff)
DRUM SUPPORT!
Diffstat (limited to 'shiv.py')
-rw-r--r--shiv.py68
1 files changed, 64 insertions, 4 deletions
diff --git a/shiv.py b/shiv.py
index ac6e2b1..051d175 100644
--- a/shiv.py
+++ b/shiv.py
@@ -8,6 +8,7 @@ import math
parser = optparse.OptionParser()
parser.add_option('-n', '--number', dest='number', action='store_true', help='Show number of tracks')
parser.add_option('-g', '--groups', dest='groups', action='store_true', help='Show group names')
+parser.add_option('-G', '--group', dest='group', action='append', help='Only compute for this group (may be specified multiple times)')
parser.add_option('-N', '--notes', dest='notes', action='store_true', help='Show number of notes')
parser.add_option('-M', '--notes-stream', dest='notes_stream', action='store_true', help='Show notes per stream')
parser.add_option('-m', '--meta', dest='meta', action='store_true', help='Show meta track information')
@@ -23,8 +24,9 @@ parser.add_option('-x', '--aux', dest='aux', action='store_true', help='Show inf
parser.add_option('-a', '--almost-all', dest='almost_all', action='store_true', help='Show useful information')
parser.add_option('-A', '--all', dest='all', action='store_true', help='Show everything')
+parser.add_option('-t', '--total', dest='total', action='store_true', help='Make cross-file totals')
-parser.set_defaults(height=20)
+parser.set_defaults(height=20, group=[])
options, args = parser.parse_args()
@@ -65,6 +67,7 @@ else:
def show_hist(values, height=None):
if not values:
print '{empty histogram}'
+ return
if height is None:
height = options.height
xs, ys = values.keys(), values.values()
@@ -85,16 +88,29 @@ def show_hist(values, height=None):
print COL.YELLOW + '\t ' + ''.join([s[i] if len(s) > i else ' ' for s in xcs]) + COL.NONE
print
+if options.total:
+ tot_note_cnt = 0
+ max_note_cnt = 0
+ tot_pitches = {}
+ tot_velocities = {}
+ tot_dur = 0
+ max_dur = 0
+ tot_streams = 0
+ max_streams = 0
+ tot_notestreams = 0
+ max_notestreams = 0
+ tot_groups = {}
+
for fname in args:
+ print
+ print 'File :', fname
try:
iv = ET.parse(fname).getroot()
- except IOError:
+ except Exception:
import traceback
traceback.print_exc()
print 'Bad file :', fname, ', skipping...'
continue
- print
- print 'File :', fname
print '\t<computing...>'
if options.meta:
@@ -115,10 +131,19 @@ for fname in args:
streams = iv.findall('./streams/stream')
notestreams = [s for s in streams if s.get('type') == 'ns']
auxstreams = [s for s in streams if s.get('type') == 'aux']
+ if options.group:
+ print 'NOTE: Restricting results to groups', options.group, 'as requested'
+ notestreams = [ns for ns in notestreams if ns.get('group', '<anonymous>') in options.group]
+
if options.number:
print 'Stream count:'
print '\tNotestreams:', len(notestreams)
print '\tTotal:', len(streams)
+ if options.total:
+ tot_streams += len(streams)
+ max_streams = max(max_streams, len(streams))
+ tot_notestreams += len(notestreams)
+ max_notestreams = max(max_notestreams, len(notestreams))
if not (options.groups or options.notes or options.histogram or options.histogram_tracks or options.vel_hist or options.vel_hist_tracks or options.duration or options.duty_cycle or options.aux):
continue
@@ -128,6 +153,8 @@ for fname in args:
for s in notestreams:
group = s.get('group', '<anonymous>')
groups[group] = groups.get(group, 0) + 1
+ if options.total:
+ tot_groups[group] = tot_groups.get(group, 0) + 1
print 'Groups:'
for name, cnt in groups.iteritems():
print '\t{} ({} streams)'.format(name, cnt)
@@ -180,14 +207,20 @@ for fname in args:
dur = float(note.get('dur'))
if options.notes:
note_cnt += 1
+ if options.total:
+ tot_note_cnt += 1
if options.notes_stream:
notes_stream[sidx] += 1
if options.histogram:
pitches[pitch] = pitches.get(pitch, 0) + 1
+ if options.total:
+ tot_pitches[pitch] = tot_pitches.get(pitch, 0) + 1
if options.histogram_tracks:
pitch_tracks[sidx][pitch] = pitch_tracks[sidx].get(pitch, 0) + 1
if options.vel_hist:
velocities[vel] = velocities.get(vel, 0) + 1
+ if options.total:
+ tot_velocities[vel] = tot_velocities.get(vel, 0) + 1
if options.vel_hist_tracks:
velocities_tracks[sidx][vel] = velocities_tracks[sidx].get(vel, 0) + 1
if (options.duration or options.duty_cycle) and time + dur > max_dur:
@@ -195,6 +228,9 @@ for fname in args:
if options.duty_cycle:
cum_dur[sidx] += dur
+ if options.notes and options.total:
+ max_note_cnt = max(max_note_cnt, note_cnt)
+
if options.histogram_tracks:
for sidx, hist in enumerate(pitch_tracks):
print 'Stream {} (group {}) pitch histogram:'.format(sidx, notestreams[sidx].get('group', '<anonymous>'))
@@ -219,3 +255,27 @@ for fname in args:
show_hist(velocities)
if options.duration:
print 'Playing duration: {}'.format(max_dur)
+
+if options.total:
+ print 'Totals:'
+ if options.number:
+ print '\tTotal streams:', tot_streams
+ print '\tMax streams:', max_streams
+ print '\tTotal notestreams:', tot_notestreams
+ print '\tMax notestreams:', max_notestreams
+ print
+ if options.notes:
+ print '\tTotal notes:', tot_note_cnt
+ print '\tMax notes:', max_note_cnt
+ print
+ if options.groups:
+ print '\tGroups:'
+ for grp, cnt in tot_groups.iteritems():
+ print '\t\t', grp, ':', cnt
+ print
+ if options.histogram:
+ print 'Overall pitch histogram:'
+ show_hist(tot_pitches)
+ if options.vel_hist:
+ print 'Overall velocity histogram:'
+ show_hist(tot_velocities)