MuGeminorum commited on
Commit
d616d1a
1 Parent(s): 25b02c0
CNPM.py CHANGED
@@ -1,40 +1,63 @@
1
  import os
2
  import random
 
3
  import datasets
4
  import pandas as pd
5
  from datasets.tasks import AudioClassification
6
 
7
 
8
- _SYSTEM_TONIC = ["C", "#C/bD", "D", "#D/bE", "E", "F",
9
- "#F/bG", "G", "#G/bA", "A", "#A/bB", "B"]
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
  _PATTERN = ["Gong", "Shang", "Jue", "Zhi", "Yu"]
12
 
13
- _TYPE = ["Pentatonic", "Hexatonic_Qingjue", "Hexatonic_Biangong",
14
- "Heptatonic_Yayue", "Heptatonic_Qingyue", "Heptatonic_Yanyue"]
 
 
 
 
 
 
15
 
16
- _HOMEPAGE = f"https://huggingface.co/datasets/ccmusic-database/{os.path.basename(__file__).split('.')[0]}"
 
 
 
 
17
 
18
  _CITATION = """\
19
  @dataset{zhaorui_liu_2021_5676893,
20
- author = {Zhaorui Liu, Monan Zhou, Shenyang Xu, Yuan Wang, Zhaowen Wang, Wei Li and Zijin Li},
21
- title = {CCMUSIC DATABASE: A Music Data Sharing Platform for Computational Musicology Research},
22
- month = {nov},
23
- year = {2021},
24
- publisher = {Zenodo},
25
- version = {1.1},
26
- doi = {10.5281/zenodo.5676893},
27
- url = {https://doi.org/10.5281/zenodo.5676893}
28
  }
29
  """
30
 
31
  _DESCRIPTION = """\
32
- Based on the working idea of combining manual labeling with computer in the construction of World Music Database, this database collects and labels the audio of five modes (including five tones, six tones and seven tones) of "Gong, Shang, Jue, Zhi and Yu". At the same time, it makes a detailed analysis of the judgment of Chinese national pentatonic modes, and finds application scenarios and technical models, which can provide raw data for the analysis and retrieval of Chinese national music characteristics.
33
  """
34
 
35
  _URLS = {
36
- 'audio': f"{_HOMEPAGE}/resolve/main/data/audio.zip",
37
- 'label': f"{_HOMEPAGE}/resolve/main/data/label.csv"
 
38
  }
39
 
40
 
@@ -42,16 +65,21 @@ class CNPM(datasets.GeneratorBasedBuilder):
42
  def _info(self):
43
  return datasets.DatasetInfo(
44
  description=_DESCRIPTION,
45
- features=datasets.Features({
46
- "audio": datasets.Audio(sampling_rate=44_100),
47
- "System": datasets.features.ClassLabel(names=_SYSTEM_TONIC),
48
- "Tonic": datasets.features.ClassLabel(names=_SYSTEM_TONIC),
49
- "Pattern": datasets.features.ClassLabel(names=_PATTERN),
50
- "Type": datasets.features.ClassLabel(names=_TYPE),
51
- "Mode_Name": datasets.Value("string"),
52
- "Length": datasets.Value("string")
53
- }),
54
- supervised_keys=("audio", "Type"),
 
 
 
 
 
55
  homepage=_HOMEPAGE,
56
  license="mit",
57
  citation=_CITATION,
@@ -59,33 +87,54 @@ class CNPM(datasets.GeneratorBasedBuilder):
59
  AudioClassification(
60
  task="audio-classification",
61
  audio_column="audio",
62
- label_column="Type"
63
  )
64
- ]
65
  )
66
 
67
- def _split_generators(self, dl_manager):
68
- audio_files = dl_manager.download_and_extract(_URLS['audio'])
69
- label_file = dl_manager.download(_URLS['label'])
70
-
71
- files = dl_manager.iter_files([audio_files])
72
- labels = pd.read_csv(
73
- label_file, index_col='File_Name', encoding='gbk')
74
-
75
- dataset = []
76
- for fpath in files:
77
- if os.path.basename(fpath).endswith(".wav"):
78
- dataset.append(fpath)
 
 
 
79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  random.shuffle(dataset)
81
 
82
  return [
83
  datasets.SplitGenerator(
84
  name=datasets.Split.TRAIN,
85
- gen_kwargs={
86
- "files": dataset,
87
- "labels": labels
88
- }
89
  )
90
  ]
91
 
@@ -93,17 +142,26 @@ class CNPM(datasets.GeneratorBasedBuilder):
93
  try:
94
  return labels.loc[key][col]
95
  except KeyError:
96
- return ''
97
 
98
  def _generate_examples(self, files, labels):
99
  for i, path in enumerate(files):
100
- fname = os.path.basename(path)
101
  yield i, {
102
- "audio": path,
103
- "System": _SYSTEM_TONIC[int(self._val_of_key(labels, fname, 'System'))],
104
- "Tonic": _SYSTEM_TONIC[int(self._val_of_key(labels, fname, 'Tonic'))],
105
- "Pattern": _PATTERN[int(self._val_of_key(labels, fname, 'Pattern'))],
106
- "Type": _TYPE[int(self._val_of_key(labels, fname, 'Type'))],
107
- "Mode_Name": self._val_of_key(labels, fname, 'Mode_Name'),
108
- "Length": self._val_of_key(labels, fname, 'Length')
 
 
 
 
 
 
 
 
 
109
  }
 
1
  import os
2
  import random
3
+ import hashlib
4
  import datasets
5
  import pandas as pd
6
  from datasets.tasks import AudioClassification
7
 
8
 
9
+ _SYSTEM_TONIC = [
10
+ "C",
11
+ "#C/bD",
12
+ "D",
13
+ "#D/bE",
14
+ "E",
15
+ "F",
16
+ "#F/bG",
17
+ "G",
18
+ "#G/bA",
19
+ "A",
20
+ "#A/bB",
21
+ "B",
22
+ ]
23
 
24
  _PATTERN = ["Gong", "Shang", "Jue", "Zhi", "Yu"]
25
 
26
+ _TYPE = [
27
+ "Pentatonic",
28
+ "Hexatonic_Qingjue",
29
+ "Hexatonic_Biangong",
30
+ "Heptatonic_Yayue",
31
+ "Heptatonic_Qingyue",
32
+ "Heptatonic_Yanyue",
33
+ ]
34
 
35
+ _DBNAME = os.path.basename(__file__).split(".")[0]
36
+
37
+ _DOMAIN = f"https://www.modelscope.cn/api/v1/datasets/ccmusic/{_DBNAME}/repo?Revision=master&FilePath=data"
38
+
39
+ _HOMEPAGE = f"https://www.modelscope.cn/datasets/ccmusic/{_DBNAME}"
40
 
41
  _CITATION = """\
42
  @dataset{zhaorui_liu_2021_5676893,
43
+ author = {Monan Zhou, Shenyang Xu, Zhaorui Liu, Zhaowen Wang, Feng Yu, Wei Li and Zijin Li},
44
+ title = {CCMusic: an Open and Diverse Database for Chinese and General Music Information Retrieval Research},
45
+ month = {mar},
46
+ year = {2024},
47
+ publisher = {HuggingFace},
48
+ version = {1.2},
49
+ url = {https://huggingface.co/ccmusic-database}
 
50
  }
51
  """
52
 
53
  _DESCRIPTION = """\
54
+ Musical pieces collected are mostly composed in pentatonic (five-note) scales, with some of them being hexatonic (six-note) and heptatonic (seven-note) scales. The total recording number is 287 with the average duration being 179.5 s. The expanded dataset is integrated into our database, and each data entry consists of seven columns: the first column denotes the audio recording in .wav format, sampled at 44,100 Hz. The second and third presents the name of the piece and artist. The subsequent columns represent the system, tonic, pattern, and type of the musical piece, respectively. The eighth column contains an additional Chinese name of the mode, while the final column indicates the duration of the audio in seconds. This dataset is applicable for tasks related to Chinese traditional pentatonic mode or computational ethnomusicology research related to Chinese music mode.
55
  """
56
 
57
  _URLS = {
58
+ "audio": f"{_DOMAIN}/audio.zip",
59
+ "mel": f"{_DOMAIN}/mel.zip",
60
+ "label": f"{_DOMAIN}/label.csv",
61
  }
62
 
63
 
 
65
  def _info(self):
66
  return datasets.DatasetInfo(
67
  description=_DESCRIPTION,
68
+ features=datasets.Features(
69
+ {
70
+ "audio": datasets.Audio(sampling_rate=22050),
71
+ "mel": datasets.Image(),
72
+ "title": datasets.Value("string"),
73
+ "artist": datasets.Value("string"),
74
+ "system": datasets.features.ClassLabel(names=_SYSTEM_TONIC),
75
+ "tonic": datasets.features.ClassLabel(names=_SYSTEM_TONIC),
76
+ "pattern": datasets.features.ClassLabel(names=_PATTERN),
77
+ "type": datasets.features.ClassLabel(names=_TYPE),
78
+ "mode_name": datasets.Value("string"),
79
+ "length": datasets.Value("string"),
80
+ }
81
+ ),
82
+ supervised_keys=("audio", "type"),
83
  homepage=_HOMEPAGE,
84
  license="mit",
85
  citation=_CITATION,
 
87
  AudioClassification(
88
  task="audio-classification",
89
  audio_column="audio",
90
+ label_column="type",
91
  )
92
+ ],
93
  )
94
 
95
+ def _str2md5(self, original_string):
96
+ """
97
+ Calculate and return the MD5 hash of a given string.
98
+ Parameters:
99
+ original_string (str): The original string for which the MD5 hash is to be computed.
100
+ Returns:
101
+ str: The hexadecimal representation of the MD5 hash.
102
+ """
103
+ # Create an md5 object
104
+ md5_obj = hashlib.md5()
105
+ # Update the md5 object with the original string encoded as bytes
106
+ md5_obj.update(original_string.encode("utf-8"))
107
+ # Retrieve the hexadecimal representation of the MD5 hash
108
+ md5_hash = md5_obj.hexdigest()
109
+ return md5_hash
110
 
111
+ def _split_generators(self, dl_manager):
112
+ audio_files = dl_manager.download_and_extract(_URLS["audio"])
113
+ mel_files = dl_manager.download_and_extract(_URLS["mel"])
114
+ label_file = dl_manager.download(_URLS["label"])
115
+
116
+ labels = pd.read_csv(label_file, index_col="文件名/File Name", encoding="gbk")
117
+ files = {}
118
+
119
+ for fpath in dl_manager.iter_files([audio_files]):
120
+ fname = os.path.basename(fpath)
121
+ if fname.endswith(".wav") or fname.endswith(".mp3"):
122
+ song_id = self._str2md5(fname.split(".")[0])
123
+ files[song_id] = {"audio": fpath}
124
+
125
+ for fpath in dl_manager.iter_files([mel_files]):
126
+ fname = os.path.basename(fpath)
127
+ if fname.endswith(".jpg"):
128
+ song_id = self._str2md5(fname.split(".")[0])
129
+ files[song_id]["mel"] = fpath
130
+
131
+ dataset = list(files.values())
132
  random.shuffle(dataset)
133
 
134
  return [
135
  datasets.SplitGenerator(
136
  name=datasets.Split.TRAIN,
137
+ gen_kwargs={"files": dataset, "labels": labels},
 
 
 
138
  )
139
  ]
140
 
 
142
  try:
143
  return labels.loc[key][col]
144
  except KeyError:
145
+ return ""
146
 
147
  def _generate_examples(self, files, labels):
148
  for i, path in enumerate(files):
149
+ fname = os.path.basename(path["audio"])
150
  yield i, {
151
+ "audio": path["audio"],
152
+ "mel": path["mel"],
153
+ "title": self._val_of_key(labels, fname, "曲名/Title"),
154
+ "artist": self._val_of_key(labels, fname, "演奏者/Artist"),
155
+ "system": _SYSTEM_TONIC[
156
+ int(self._val_of_key(labels, fname, "同宫系统/System"))
157
+ ],
158
+ "tonic": _SYSTEM_TONIC[
159
+ int(self._val_of_key(labels, fname, "主音音名/Tonic"))
160
+ ],
161
+ "pattern": _PATTERN[
162
+ int(self._val_of_key(labels, fname, "样式/Pattern"))
163
+ ],
164
+ "type": _TYPE[int(self._val_of_key(labels, fname, "种类/Type"))],
165
+ "mode_name": self._val_of_key(labels, fname, "调式全称/Mode Name"),
166
+ "length": self._val_of_key(labels, fname, "时长/Length"),
167
  }
README.md CHANGED
@@ -13,16 +13,19 @@ size_categories:
13
  - n<1K
14
  viewer: false
15
  ---
 
16
  # Dataset Card for Chinese National Pentatonic Mode Dataset
 
 
17
  ## Dataset Description
18
  - **Homepage:** <https://ccmusic-database.github.io>
19
  - **Repository:** <https://huggingface.co/datasets/ccmusic-database/CNPM>
20
  - **Paper:** <https://doi.org/10.5281/zenodo.5676893>
21
- - **Leaderboard:** <https://ccmusic-database.github.io/team.html>
22
  - **Point of Contact:** Chinese Ethnic Pentatonic Scale; Database; Music Information Retrieval; Pentatonic Therapy
23
 
24
  ### Dataset Summary
25
- Based on the working idea of combining manual labeling with computer in the construction of World Music Database, this database collects and labels the audio of five modes (including five tones, six tones and seven tones) of "Gong, Shang, Jue, Zhi and Yu". At the same time, it makes a detailed analysis of the judgment of Chinese national pentatonic modes, and finds application scenarios and technical models, which can provide raw data for the analysis and retrieval of Chinese national music characteristics.
26
 
27
  ### Supported Tasks and Leaderboards
28
  MIR, audio classification
@@ -31,17 +34,22 @@ MIR, audio classification
31
  Chinese, English
32
 
33
  ## Dataset Structure
 
 
 
 
 
34
  ### Data Instances
35
  .zip(.wav), .csv
36
 
37
- ### Data Fields
38
- Mode Type, Name, Performer, Album Name, National Mode Name, Tonggong System, Audio Links
39
 
40
  ### Data Splits
41
  train
42
 
43
  ## Usage
44
- ```
45
  from datasets import load_dataset
46
 
47
  dataset = load_dataset("ccmusic-dabase/CNPM", split='train')
@@ -50,6 +58,12 @@ for data in dataset:
50
  print(data)
51
  ```
52
 
 
 
 
 
 
 
53
  ## Dataset Creation
54
  ### Curation Rationale
55
  Lack of a dataset for Chinese National Pentatonic Mode
@@ -63,7 +77,7 @@ Teachers & students from FD-LAMT, CCOM, SCCM
63
 
64
  ### Annotations
65
  #### Annotation process
66
- Based on the working idea of combining manual labeling with computer in the construction of World Music Database, this database collects and labels the audio of five modes (including five tones, six tones and seven tones) of "Gong, Shang, Jue, Zhi and Yu". At the same time, it makes a detailed analysis of the judgment of Chinese national pentatonic modes, and finds application scenarios and technical models, which can provide raw data for the analysis and retrieval of Chinese national music characteristics.
67
 
68
  #### Who are the annotators?
69
  Teachers & students from FD-LAMT, CCOM, SCCM
@@ -73,7 +87,7 @@ Due to copyright reasons, only some of the audio can be released directly. This
73
 
74
  ## Considerations for Using the Data
75
  ### Social Impact of Dataset
76
- Promoting the development of music AI industry
77
 
78
  ### Discussion of Biases
79
  Only for Traditional Chinese Instruments
@@ -83,9 +97,9 @@ Only for Pentatonic Mode
83
 
84
  ## Additional Information
85
  ### Dataset Curators
86
- Weixin Ren, Mingjin Che, Zhaowen Wang, Qinyu Li, Jiaye Hu, Fan Xia, Wei Li
87
 
88
- ### Evalution
89
  [任伟鑫,车明锦,汪照文,孟文武,李沁雨,胡佳弋,夏凡,李伟.CNPM Database:一个用于计算音乐学的中国民族五声调式数据库[J].复旦学报(自然科学版),2022,61(05):555-563.DOI:10.15943/j.cnki.fdxb-jns.20221017.008.](https://kns.cnki.net/kcms2/article/abstract?v=lD5CuVSaeOtw0E2oWliKSMrLiLDt9iwvkwoTgSclPspwUECyt4uNZ6T7DCLlfwMqohXCQXkFzf_XjAUOQ3CAkhPqNj20H8eG9UfUVuHEey0x7Kqp32fMlJiM9xuPtdVMvC1PB2qW0qI=&uniplatform=NZKPT&src=copy)
90
 
91
  ### Licensing Information
@@ -114,18 +128,17 @@ SOFTWARE.
114
  ```
115
 
116
  ### Citation Information
117
- ```
118
  @dataset{zhaorui_liu_2021_5676893,
119
- author = {Zhaorui Liu, Monan Zhou, Shenyang Xu, Yuan Wang, Zhaowen Wang, Wei Li and Zijin Li},
120
- title = {CCMUSIC DATABASE: A Music Data Sharing Platform for Computational Musicology Research},
121
- month = {nov},
122
- year = {2021},
123
- publisher = {Zenodo},
124
- version = {1.1},
125
- doi = {10.5281/zenodo.5676893},
126
- url = {https://doi.org/10.5281/zenodo.5676893}
127
  }
128
  ```
129
 
130
  ### Contributions
131
- Provide a dataset for Chinese National Pentatonic Mode
 
13
  - n<1K
14
  viewer: false
15
  ---
16
+
17
  # Dataset Card for Chinese National Pentatonic Mode Dataset
18
+ The raw dataset includes audio recordings and annotations of five modes of Chinese music, encompassing the Gong, Shang, Jue, Zhi, and Yu modes. Musical pieces collected are mostly composed in pentatonic (five-note) scales, with some of them being hexatonic (six-note) and heptatonic (seven-note) scales. The total recording number is 287 with the average duration being 179.5s.
19
+
20
  ## Dataset Description
21
  - **Homepage:** <https://ccmusic-database.github.io>
22
  - **Repository:** <https://huggingface.co/datasets/ccmusic-database/CNPM>
23
  - **Paper:** <https://doi.org/10.5281/zenodo.5676893>
24
+ - **Leaderboard:** <https://www.modelscope.cn/datasets/ccmusic/CNPM>
25
  - **Point of Contact:** Chinese Ethnic Pentatonic Scale; Database; Music Information Retrieval; Pentatonic Therapy
26
 
27
  ### Dataset Summary
28
+ The expanded dataset is integrated into our database, and each data entry consists of seven columns: the first column denotes the audio recording in .wav format, sampled at 22,050 Hz. The second and third presents the name of the piece and artist. The subsequent columns represent the system, tonic, pattern, and type of the musical piece, respectively. The eighth column contains an additional Chinese name of the mode, while the final column indicates the duration of the audio in seconds.
29
 
30
  ### Supported Tasks and Leaderboards
31
  MIR, audio classification
 
34
  Chinese, English
35
 
36
  ## Dataset Structure
37
+ | audio(.wav, 22050Hz) | mel(.jpg, 22050Hz) | title | artist | system | tonic | pattern | type | mode_name | length |
38
+ | :---------------------------------------------: | :----------------------------------: | :----: | :----: | :------: | :------: | :-----: | :-----: | :-------: | :----: |
39
+ | <audio controls src="./data/刮地风 - 廖莎.mp3"> | <img src="./data/刮地风 - 廖莎.jpg"> | string | string | 12-class | 12-class | 5-class | 6-class | string | string |
40
+ | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
41
+
42
  ### Data Instances
43
  .zip(.wav), .csv
44
 
45
+ ### Data Fields ###
46
+ Mode type, Name, Performer, Album Name, National Mode Name, Tonggong System, Audio Links
47
 
48
  ### Data Splits
49
  train
50
 
51
  ## Usage
52
+ ```python
53
  from datasets import load_dataset
54
 
55
  dataset = load_dataset("ccmusic-dabase/CNPM", split='train')
 
58
  print(data)
59
  ```
60
 
61
+ ## Maintenance
62
+ ```bash
63
+ GIT_LFS_SKIP_SMUDGE=1 git clone git@hf.co:datasets/ccmusic-database/CNPM
64
+ cd CNPM
65
+ ```
66
+
67
  ## Dataset Creation
68
  ### Curation Rationale
69
  Lack of a dataset for Chinese National Pentatonic Mode
 
77
 
78
  ### Annotations
79
  #### Annotation process
80
+ Based on the working idea of combining manual labeling with a computer in the construction of the World Music Database, this database collects and labels the audio of five modes (including five tones, six tones and seven tones) of "Gong, Shang, Jue, Zhi and Yu". At the same time, it makes a detailed analysis of the judgment of Chinese national pentatonic modes and finds application scenarios and technical models, which can provide raw data for the analysis and retrieval of Chinese national music characteristics.
81
 
82
  #### Who are the annotators?
83
  Teachers & students from FD-LAMT, CCOM, SCCM
 
87
 
88
  ## Considerations for Using the Data
89
  ### Social Impact of Dataset
90
+ Promoting the development of the music AI industry
91
 
92
  ### Discussion of Biases
93
  Only for Traditional Chinese Instruments
 
97
 
98
  ## Additional Information
99
  ### Dataset Curators
100
+ Weixin Ren, Mingjin Che, Zhaowen Wang, Qinyu Li, Jiaye Hu, Fan Xia, Wei Li.
101
 
102
+ ### Evaluation
103
  [任伟鑫,车明锦,汪照文,孟文武,李沁雨,胡佳弋,夏凡,李伟.CNPM Database:一个用于计算音乐学的中国民族五声调式数据库[J].复旦学报(自然科学版),2022,61(05):555-563.DOI:10.15943/j.cnki.fdxb-jns.20221017.008.](https://kns.cnki.net/kcms2/article/abstract?v=lD5CuVSaeOtw0E2oWliKSMrLiLDt9iwvkwoTgSclPspwUECyt4uNZ6T7DCLlfwMqohXCQXkFzf_XjAUOQ3CAkhPqNj20H8eG9UfUVuHEey0x7Kqp32fMlJiM9xuPtdVMvC1PB2qW0qI=&uniplatform=NZKPT&src=copy)
104
 
105
  ### Licensing Information
 
128
  ```
129
 
130
  ### Citation Information
131
+ ```bibtex
132
  @dataset{zhaorui_liu_2021_5676893,
133
+ author = {Monan Zhou, Shenyang Xu, Zhaorui Liu, Zhaowen Wang, Feng Yu, Wei Li and Baoqiang Han},
134
+ title = {CCMusic: an Open and Diverse Database for Chinese and General Music Information Retrieval Research},
135
+ month = {mar},
136
+ year = {2024},
137
+ publisher = {HuggingFace},
138
+ version = {1.2},
139
+ url = {https://huggingface.co/ccmusic-database}
 
140
  }
141
  ```
142
 
143
  ### Contributions
144
+ Provide a dataset for the Chinese National Pentatonic Mode
data/label.csv DELETED
@@ -1,70 +0,0 @@
1
- File_Name,Mode_Name,System,Tonic,Pattern,Type,Length
2
- shang1.wav,D������,0,2,1,0,0.000648148
3
- shang10.wav,D������,0,2,1,0,0.0003125
4
- shang11.wav,G������,5,7,1,0,0.000219907
5
- shang12.wav,G������,5,7,1,0,0.000405093
6
- shang13.wav,G������,5,7,1,0,0.00037037
7
- shang14.wav,E������,2,4,1,0,0.000266204
8
- shang15.wav,E������,2,4,1,0,0.000578704
9
- shang16.wav,E������,2,4,1,0,0.000439815
10
- shang17.wav,E����������,2,4,1,4,0.000972222
11
- shang18.wav,D�����������,0,2,1,1,0.000324074
12
- shang19.wav,D������,0,2,1,0,0.000266204
13
- shang2.wav,D������,0,2,1,0,0.000636574
14
- shang20.wav,D������,0,2,1,0,0.000590278
15
- shang22.wav,C�������ӱ乬,10,0,1,2,0.00056713
16
- shang23.wav,C�������ӱ乬,10,0,1,2,0.000474537
17
- shang24.wav,C������,10,0,1,0,0.001215278
18
- shang25.wav,B������,9,11,1,0,0.000196759
19
- shang26.wav,B�������ӱ乬,9,11,1,2,0.000405093
20
- shang27.wav,B�������ӱ乬,9,11,1,2,0.000474537
21
- shang3.wav,D������,0,2,1,0,0.000729167
22
- shang4.wav,D������,0,2,1,0,0.00056713
23
- shang5.wav,A������,7,9,1,0,0.000300926
24
- shang6.wav,A������,7,9,1,0,0.000266204
25
- shang7.wav,A����������,7,9,1,4,0.000173611
26
- shang8.wav,A����������,7,9,1,4,0.000416667
27
- shang9.wav,A������,7,9,1,0,0.000243056
28
- jue1.wav,B������,7,11,2,0,0.000208333
29
- jue11.wav,B������,7,11,2,0,0.000289352
30
- jue12.wav,B������,7,11,2,0,0.000277778
31
- jue13.wav,B������,7,11,2,0,0.0003125
32
- jue14.wav,B������,7,11,2,0,0.000289352
33
- jue15.wav,B������,7,11,2,0,0.000243056
34
- jue16.wav,B������,7,11,2,0,0.000277778
35
- jue17.wav,B������,7,11,2,0,0.000231481
36
- jue18.wav,B������,7,11,2,0,0.000335648
37
- jue19.wav,B����������,7,11,2,3,0.000393519
38
- jue2.wav,B������,7,11,2,0,0.000266204
39
- jue20.wav,B�������ӱ乬,7,11,2,2,0.000405093
40
- jue21.wav,A�������ӱ乬,5,9,2,2,0.000173611
41
- jue22.wav,A�����������,5,9,2,1,0.000358796
42
- jue23.wav,A������,5,9,2,0,0.000486111
43
- jue24.wav,A������,5,9,2,0,0.000509259
44
- jue25.wav,A������,5,9,2,0,0.000486111
45
- jue26.wav,A������,5,9,2,0,0.000300926
46
- jue27.wav,A������,5,9,2,0,0.000497685
47
- jue28.wav,A������,5,9,2,0,0.0003125
48
- jue29.wav,A������,5,9,2,0,0.000497685
49
- jue3.wav,B������,7,11,2,0,0.000324074
50
- jue30.wav,A������,5,9,2,0,0.000775463
51
- jue31.wav,#F������,2,6,2,0,0.001180556
52
- jue32.wav,#F������,2,6,2,0,0.000856481
53
- jue33.wav,#F������,2,6,2,0,0.000891204
54
- jue34.wav,#F������,2,6,2,0,0.000798611
55
- jue35.wav,#F������,2,6,2,0,0.000520833
56
- jue36.wav,D������,10,2,2,0,0.000844907
57
- jue37.wav,D������,10,2,2,0,0.000659722
58
- jue38.wav,D������,10,2,2,0,0.000868056
59
- jue39.wav,D������,10,2,2,0,0.000671296
60
- jue4.wav,A�������ӱ乬,5,9,2,2,0.000208333
61
- jue40.wav,D������,10,2,2,0,0.000393519
62
- jue41.wav,D������,10,2,2,0,0.000405093
63
- jue42.wav,#F������,2,6,2,0,0.000601852
64
- jue43.wav,#F������,2,6,2,0,0.000601852
65
- jue44.wav,#F������,2,6,2,0,0.000659722
66
- jue5.wav,A������,5,9,2,0,0.000752315
67
- jue6.wav,#F������,2,6,2,0,0.000590278
68
- jue7.wav,#F������,2,6,2,0,0.000821759
69
- jue8.wav,D�������ӱ乬,10,2,2,2,0.000671296
70
- jue9.wav,D�����������,10,2,2,1,0.000358796
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/{audio.zip → 刮地风 - 廖莎.jpg} RENAMED
File without changes
data/{raw_data.zip → 刮地风 - 廖莎.mp3} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:31529ee9866c09164297a01143213e0afe950e01441921c1bbb5f48b4bfa9b38
3
- size 379378115
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:882464f35327ad63aacbd499295a0f40bb11636b966097b6274225dc9a9a1e37
3
+ size 858980