
TXT 示例琴谱
.txt
[
{
"name": "那天下雨了(三指)",
"author": "天天",
"transcribedBy": "天天",
"isComposed": true,
"bpm": 320,
"bitsPerPage": 16,
"pitchLevel": 0,
"isEncrypted": false,
"songNotes": [
{"time": 0, "key": "1Key0"},
{"time": 0, "key": "1Key3"},
{"time": 374, "key": "1Key4"}
]
}
]
这种格式适合直接保存为 .txt 文件。内容本质上也是 JSON,但最外层是琴谱数组,系统会直接识别。

JSON 示例琴谱
.json
{
"code": 200,
"message": "success",
"data": {
"author": "Unknown",
"bitsPerPage": 16,
"bpm": 290,
"isComposed": true,
"isEncrypted": false,
"name": "",
"pitchLevel": 0,
"songNotes": [
{"key": "1Key1", "time": 0},
{"key": "1Key5", "time": 0},
{"key": "1Key9", "time": 412}
],
"transcribedBy": "Unknown"
}
}
这种格式适合 .json 文件。系统会自动提取里面的 data,并转换成标准琴谱格式保存。