Skip to content

Instantly share code, notes, and snippets.

@ryanbriones
Created August 3, 2013 00:00
Show Gist options
  • Save ryanbriones/6144388 to your computer and use it in GitHub Desktop.
Save ryanbriones/6144388 to your computer and use it in GitHub Desktop.
JSON musical notation
{
"key_signature": {
"name": "C major",
"sharps": [],
"flats": [],
},
"time_signature": {
"upper": 4,
"lower": 4
},
"notes": [
{"note": "C2", "length": 0.25},
{"note": "C2", "length": 0.25},
{"note": "G2", "length": 0.25},
{"note": "G2", "length": 0.25},
{"note": "A2", "length": 0.25},
{"note": "A2", "length": 0.25},
{"note": "G2", "length": 0.5},
]
}
@HughDevlin
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment