# Parser()
构造函数 Parser()。通过 XML 文件解析为 JSON 格式数据。
# 配置
名称 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
debug | number | false | 否 | 是否调试模式 |
speed | number | 1 | 否 | 自定义速度(从 0 ~ 1) |
xmlStr | string | - | 是 | MusicXML文本 |
# 方法
名称 | 类型 | 说明 |
---|---|---|
getMeasureById | function(measureId: string): Measure | 通过ID获取小节 |
getNoteById | function(noteId: string): Note | 通过ID获取音符 |
# 返回值
名称 | 类型 | 默认值 | 说明 |
---|---|---|---|
parts | Part[] | [] | 声部 |
title | string | "" | 标题 |
# 示例
import { Parser } from 'musicxml2json-guitar'
const parser = new Parser({
debug: true,
speed: 1,
xmlStr
})
1
2
3
4
5
6
7
2
3
4
5
6
7
# JSON
{
"parts": [
{
"duration": 6500,
"measures": [
{
"time": {
"start": 0,
"duration": 500,
"end": 500
},
"id": "M_1",
"isLast": false,
"startTime": 0,
"capo": 0,
"harmonies": [],
"metronome": {
"beatUnit": 4,
"bpm": 60
},
"timeSignature": {
"beats": 6,
"beatType": 8
},
"number": "1",
"notes": [
{
"data": null,
"dot": null,
"stem": null,
"time": {
"start": 0,
"duration": 500,
"end": 500
},
"id": "N_1_1",
"beam": null,
"notations": {
"slur": null,
"tied": null,
"tuplet": null
},
"timeModification": null,
"type": "eighth",
"view": "rest"
}
]
}
],
"metronome": {
"beatUnit": 4,
"bpm": 60
},
"timeSignature": {
"beats": 4,
"beatType": 4
}
}
],
"title": "",
"_debug": true,
"_speed": 1
}
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63