From what I understand in the docs/code, Music21 output to Vexflow seems to be done through Music21j, which I find myself unable to get running. Isn't there an actual Vexflow output possible?
So, instead of getting something like this (output of getJSBody
):
require(['music21'], function() {
var pickleIn = {"hi": "hello"};
var jpc = new music21.fromPython.Converter();
...
});
...getting actual Vexflow code:
var vf = new Vex.Flow.Factory({renderer: {elementId: 'boo'}});
var score = vf.EasyScore();
var system = vf.System();
...
Sorry in advance if I'm missing something obvious...