from music21 import *
from IPython.display import HTML, Javascript
m21url = "http://web.mit.edu/music21/music21j/src/music21.js"
def Javas(msg, lib=None):
pass
Javas('console.log("m", music21);', lib=[m21url])
HTML('''
<script>
require.config(
{ baseUrl: "http://web.mit.edu/music21/music21j/src/",
paths: {'music21': 'http://web.mit.edu/music21/music21j/src/music21',}
});
console.log('hi');
require(['music21'], function () {
console.log('hey!');
var n = new music21.note.Note("D#4");
var s = new music21.stream.Stream();
s.append(n);
s.appendNewCanvas($('.output_subarea.output_html.rendered_html.output_pyout')[0]);
});
</script>
''')
nn = note.Note
vfp = vexflow.toMusic21j.VexflowPickler()
vfp.mode = 'json'
# Example from http://jakevdp.github.io/blog/2013/06/01/ipython-notebook-javascript-python-communication/ adapted for IPython 2.0
# Add an input form similar to what we saw above
input_form = """
<div id="heya" style="background-color:gainsboro; border:solid black; width:600px; padding:20px;">
Code: <input type="text" id="code_input" size="50" height="2"
value="corpus.parse('bwv66.6').measures(0,4)"><br>
Result: <input type="text" id="result_output" size="50" value="??"><br>
<button onclick="exec_code()">Execute</button>
</div>
"""
# here the javascript has a function to execute the code
# within the input box, and a callback to handle the output.
javascript = """
<script type="text/Javascript">
var heya = $('#heya');
var newCanvas = $("<canvas/>");
heya.append(newCanvas);
function getData(msg) {
var data = handle_output(msg);
console.log(data);
data = data.slice(1, -1);
var jpc = new music21.jsonPickle.Converter();
var streamObj = jpc.run(data);
streamObj.replaceCanvas("#heya");
document.getElementById("result_output").value = streamObj._elements.length;
}
function handle_output(out){
console.log(out);
var res = null;
// if output is a print statement
if(out.msg_type == "stream"){ // nothing to do with music21 stream
res = out.content.data;
}
// if output is a python object
else if(out.msg_type === "pyout"){
res = out.content.data["text/plain"];
}
// if output is a python error
else if(out.msg_type == "pyerr"){
res = out.content.ename + ": " + out.content.evalue;
}
// if output is something we haven't thought of
else{
res = "[out type not implemented]";
}
return res;
}
function exec_code(){
var code_input = document.getElementById('code_input').value;
var messagedCodeInput = 'vfp.fromObject(' + code_input + ')';
var kernel = IPython.notebook.kernel;
var callbacks = { 'iopub' : {'output' : getData}};
document.getElementById("result_output").value = ""; // clear output box
var msg_id = kernel.execute(messagedCodeInput, callbacks, {silent:false});
console.log("button pressed");
// IPython.notebook.clear_output();
}
</script>
"""
HTML(input_form + javascript)
Code:
Result:
Result:
import random
def vfshow(s):
vfp = vexflow.toMusic21j.VexflowPickler()
vfp.mode = 'jsonSplit'
outputCode = vfp.fromObject(s)
idName = 'canvasDiv' + str(random.randint(0, 10000))
htmlBlock = '<div id="' + idName + '"><canvas/></div>'
js = '''
<script>
require(['music21'], function() {
data = ''' + outputCode + ''';
var jpc = new music21.jsonPickle.Converter();
streamObj = jpc.run(data);
streamObj.replaceCanvas("#''' + idName + '''");
});
</script>
'''
return HTML(htmlBlock + js)
bach = corpus.parse('bwv66.6').measures(0, 4)
vfshow(bach)
bach
<music21.stream.Score 4412264400>
Javascript('''var n = new music21.note.Note("F#4");
var s = new music21.stream.Stream();
s.append(n);
var newPlace = $('div.output_subarea.output_javascript.output_pyout');
console.log(newPlace);
s.appendNewCanvas(newPlace[newPlace.length-1]);''')
<IPython.core.display.Javascript at 0x107704250>
c = converter.parse('tinyNotation: 2/4 c4 d e f g a b c\'')
c.show()

e = converter.parse("tinyNotation: 2/4 e4 f g a b c' d' e'")
g = converter.parse("tinyNotation: 2/4 g4 a b c' d' e' f' g'")
s = stream.Score()
s.insert(0, c)
s.insert(0, e)
s.insert(0, g)
sc = s.chordify()
sc.show()

d = converter.parse("tinyNotation: 2/4 c#4 d- d# e- f# g- g# a- a# b-")
d.show()

db = converter.parse("tinyNotation: 2/4 e#4 f- b# c'-")
db.show()

e = converter.parse("tinyNotation: 2/4 e'4 f' g' a' b' c'' d'' e''")
g = converter.parse("tinyNotation: 2/4 g4 a b c' d' e' f' g'")
s = stream.Score()
s.insert(0, c)
s.insert(0, e)
s.insert(0, g)
sc = s.chordify()
sc.show()

r1 = converter.parse("tinyNotation: 4/4 g4 g8 g g4 g8 g")
r2 = converter.parse("tinyNotation: 4/4 g8 g g g g g g g")
r3 = converter.parse("tinyNotation: 4/4 g4 g g g")
r1.show()

r2.show()

r3.show()

r4 = converter.parse("tinyNotation: 4/4 g4 g8 g g4 g8 g g4 g8 g g4 g8 g g8 g g g g g g g g4 g g g g4 g8 g g4 g8 g g4 g8 g g4 g8 g g8 g g g g g g g g4 g g g ")
r4.makeMeasures(inPlace=True)
r4.getElementsByClass('Measure')[0].notes[0].lyric = "A"
r4.getElementsByClass('Measure')[1].notes[0].lyric = "A"
r4.getElementsByClass('Measure')[2].notes[0].lyric = "B"
r4.getElementsByClass('Measure')[3].notes[0].lyric = "C"
r4.getElementsByClass('Measure')[4].notes[0].lyric = "A"
r4.getElementsByClass('Measure')[5].notes[0].lyric = "A"
r4.getElementsByClass('Measure')[6].notes[0].lyric = "B"
r4.getElementsByClass('Measure')[7].notes[0].lyric = "C"
r4.__class__ = stream.Part
r4.show()

c = converter.parse("tinyNotation: 4/4 C1 G")
e = converter.parse("tinyNotation: 4/4 E1 B")
g = converter.parse("tinyNotation: 4/4 G1 d")
s = stream.Score()
s.insert(0, c)
s.insert(0, e)
s.insert(0, g)
sc = s.chordify()
sc.insert(0, clef.BassClef())
sc.flat.notes[0].lyric = "I"
sc.flat.notes[1].lyric = "V"
sc.show()

I = sc.flat.notes[0]
V = sc.flat.notes[1]
from copy import deepcopy
sc3 = stream.Part()
sc3.insert(0, clef.BassClef())
sc3.insert(0, meter.TimeSignature('4/4'))
sc3.append(deepcopy(I))
sc3.append(deepcopy(I))
sc3.append(deepcopy(I))
sc3.append(deepcopy(V))
sc3.append(deepcopy(I))
sc3.append(deepcopy(I))
sc3.append(deepcopy(V))
sc3.append(deepcopy(I))
sc3.makeMeasures(inPlace = True)
sc3.measure(4).rightBarline = 'double'
sc3.show()

all = stream.Score()
all.insert(0, r4)
all.insert(0, sc3)
all.show('musicxml')
import random
random.randint(10,20)
12
from os.path import expanduser
home = expanduser("~")
home
'/Users/cuthbert'
c = corpus.parse('luca/gloria')
len(c)
13
c.measures(1, 40).show()
