I am using music21 to extract the midi pitch numbers (in order) for a bunch of midi files.
I have been reading through the documentation and I can load one file like this:
from music21 import *
sBach = corpus.parse('bach/bwv7.7')
Now how do I show a sequence of midi numbers? I am sure this is possible but I can't find the function in the documentation.
And is there a way to do it for multiple files at the same time?