Created
February 26, 2015 10:06
-
-
Save GRGSIBERIA/ebdd8912e75ed6889529 to your computer and use it in GitHub Desktop.
1曲のJSONデータ,scoresに複数の楽譜情報を詰め込める.
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
| { | |
| "music_info": { | |
| "categories": [ | |
| "hoge", | |
| "yamada", | |
| "puyo" | |
| ], | |
| "group_name": "group_name", | |
| "music_name": "music_name" | |
| }, | |
| "scores": [ | |
| { | |
| "derrived_from": "derrived_from", | |
| "difficulty": "easy", | |
| "edit_by": "edit_by", | |
| "instrument": "guitar", | |
| "score_hash": "score_hash", | |
| "symbols": [ | |
| { | |
| "frets": 0, | |
| "string": 6, | |
| "timing": 44100 | |
| }, | |
| { | |
| "frets": 1, | |
| "string": 5, | |
| "timing": 88200 | |
| }, | |
| { | |
| "frets": 2, | |
| "string": 4, | |
| "timing": 132300 | |
| } | |
| ], | |
| "tempo": 120, | |
| "tuning": [ | |
| 1, | |
| 2, | |
| 3, | |
| 4, | |
| 5, | |
| 6 | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment