Created
July 26, 2012 17:37
-
-
Save 0xPr0xy/3183396 to your computer and use it in GitHub Desktop.
sound made with pyknon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pyknon.genmidi import Midi | |
from pyknon.music import NoteSeq | |
notes1 = NoteSeq("D4 F#8 A Bb4") | |
midi = Midi(1, tempo=90) | |
midi.seq_notes(notes1, track=0) | |
midi.write("demo.mid") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment