# Measure

小节类型。

# 属性

名称 类型 默认值 说明
capo number 0 变调
harmonies Harmony[] [] 和弦图
id string - 小节ID
isLast boolean false 是否最后一节
metronome Metronome - 节拍
notes Note[] [] 音符
number string - 小节序号
time Time - 时间
timeSignature TimeSignature - 拍号

# 示例

{
  "capo": 0,
  "harmonies": [],
  "id": "M_1",
  "isLast": false,
  "metronome": {
    "beatUnit": 4,
    "bpm": 60
  },
  "notes": [],
  "number": "1",
  "time": {
    "duration": 500,
    "end": 500,
    "start": 0
  },
  "timeSignature": {
    "beats": 4,
    "beatType": 4
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
更新时间: 2025/3/7 12:38:41