# Note

音符类型。

# 属性

名称 类型 默认值 说明
beam Beam[], null null 时值线
data NoteData[] null 音符数据
dot Dot, null null 附点
id string - 音符ID
kind NoteKind - 音符显示类型
measureId string - 所属的小节ID
notations Notations - 音符记号
stem Stem, null null 连音线
time Time null 时间
timeModification TimeModification null 时值变化
type NoteType - 音符类型

# 示例

{
    "beam": [
        "end"
    ],
    "data": [
        {
            "code": 42,
            "name": "Hi-Hat",
            "value": [
                22,
                42
            ],
            "index": 3
        }
    ],
    "dot": null,
    "id": "N_11_4",
    "measureId": "M_11",
    "notations": {
        "slur": null,
        "tied": null,
        "tuplet": "stop"
    },
    "stem": "down",
    "time": {
        "start": 817,
        "duration": 163,
        "end": 980
    },
    "timeModification": {
        "actualNotes": 3,
        "normalNotes": 2
    },
    "type": "eighth",
    "kind": "note"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
更新时间: 2025/5/2 12:00:08