-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsong_config.json
53 lines (53 loc) · 1.1 KB
/
song_config.json
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
{
"label_types": [
"intro",
"verse",
"chorus",
"bridge",
"solo",
"tab",
"tag",
"ending",
"outro",
"repeat"
],
"label_template": "(?P<pre>pre)?[ \\-]?(?P<label_type>{0}) *(?P<value>x?[0-9]*)(\\:)?",
"song_single_info_types": [
"title",
"subtitle",
"copyright",
"year",
"ccli",
"duration"
],
"song_multi_info_types": [
"composer",
"author",
"arranger",
"artist",
"album"
],
"section_info_types": [
"key",
"time",
"tempo",
"capo"
],
"info_template": "(?P<info_type>{0})\\W+(?P<value>[0-9]+|.+)",
"chord_mod_types": [
"m",
"sus",
"add",
"maj",
"dim",
"aug"
],
"chord_template": "([\\[\\<\\(]?(?P<root>[A-G][#b]?)(?P<mod>({0}|[0-9])*)?(\\/(?P<bass>[A-G][#b]?))?[\\]\\>\\)]?)",
"instruction_types": [
"ring",
"mute",
"rake",
"pm"
],
"instruction_template": "([\\[\\<\\(]?(?P<instruction_type>{0})[\\]\\>\\)]?)"
}