Skip to content

Instantly share code, notes, and snippets.

@0xPr0xy
Created July 26, 2012 17:37
Show Gist options
  • Save 0xPr0xy/3183396 to your computer and use it in GitHub Desktop.
Save 0xPr0xy/3183396 to your computer and use it in GitHub Desktop.
sound made with pyknon
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