Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,122 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- zh
|
4 |
+
tags:
|
5 |
+
- AIvtuber
|
6 |
+
- VirtuaReal
|
7 |
+
---
|
8 |
+
# 岁己SUI的直播音频
|
9 |
+
|
10 |
+
## Dataset Description
|
11 |
+
|
12 |
+
- **Homepage:**
|
13 |
+
- **Repository:**
|
14 |
+
- **Paper:**
|
15 |
+
- **Leaderboard:**
|
16 |
+
- **Point of Contact:**
|
17 |
+
|
18 |
+
### Dataset Summary
|
19 |
+
|
20 |
+
岁己每月直播的音频,因为录制直播流网络不稳定、断流,会导致部分文件时间码错误,使用时建议先转码为wav/flac等无损格式
|
21 |
+
|
22 |
+
下面是一个简单的aac转wav的powershell脚本,请保存为.ps1文件后运行,同时请确保path变量中有ffmpeg或自行修改ffmpeg.exe路径
|
23 |
+
|
24 |
+
```
|
25 |
+
$OutPutPath = ".\"
|
26 |
+
$InputSuffix = "aac"
|
27 |
+
$OutputSuffix = "wav"
|
28 |
+
New-Item $OutPutPath -Type Directory
|
29 |
+
foreach($Files in Get-Item * -Include *$InputSuffix){
|
30 |
+
$OutputFile = $UserPath + $Files.BaseName + "." + $OutputSuffix
|
31 |
+
ffmpeg.exe -i $Files $OutputFile
|
32 |
+
}
|
33 |
+
Pause
|
34 |
+
```
|
35 |
+
|
36 |
+
### Supported Tasks and Leaderboards
|
37 |
+
|
38 |
+
[More Information Needed]
|
39 |
+
|
40 |
+
### Languages
|
41 |
+
|
42 |
+
Chinese(98%)
|
43 |
+
|
44 |
+
English(1%)
|
45 |
+
|
46 |
+
Japanese(1%)
|
47 |
+
|
48 |
+
## Dataset Structure
|
49 |
+
|
50 |
+
### Data Instances
|
51 |
+
|
52 |
+
[More Information Needed]
|
53 |
+
|
54 |
+
### Data Fields
|
55 |
+
|
56 |
+
[More Information Needed]
|
57 |
+
|
58 |
+
### Data Splits
|
59 |
+
|
60 |
+
[More Information Needed]
|
61 |
+
|
62 |
+
## Dataset Creation
|
63 |
+
|
64 |
+
### Curation Rationale
|
65 |
+
|
66 |
+
[More Information Needed]
|
67 |
+
|
68 |
+
### Source Data
|
69 |
+
|
70 |
+
#### Initial Data Collection and Normalization
|
71 |
+
|
72 |
+
[More Information Needed]
|
73 |
+
|
74 |
+
#### Who are the source language producers?
|
75 |
+
|
76 |
+
[More Information Needed]
|
77 |
+
|
78 |
+
### Annotations
|
79 |
+
|
80 |
+
#### Annotation process
|
81 |
+
|
82 |
+
[More Information Needed]
|
83 |
+
|
84 |
+
#### Who are the annotators?
|
85 |
+
|
86 |
+
[More Information Needed]
|
87 |
+
|
88 |
+
### Personal and Sensitive Information
|
89 |
+
|
90 |
+
[More Information Needed]
|
91 |
+
|
92 |
+
## Considerations for Using the Data
|
93 |
+
|
94 |
+
### Social Impact of Dataset
|
95 |
+
|
96 |
+
[More Information Needed]
|
97 |
+
|
98 |
+
### Discussion of Biases
|
99 |
+
|
100 |
+
[More Information Needed]
|
101 |
+
|
102 |
+
### Other Known Limitations
|
103 |
+
|
104 |
+
[More Information Needed]
|
105 |
+
|
106 |
+
## Additional Information
|
107 |
+
|
108 |
+
### Dataset Curators
|
109 |
+
|
110 |
+
[More Information Needed]
|
111 |
+
|
112 |
+
### Licensing Information
|
113 |
+
|
114 |
+
[More Information Needed]
|
115 |
+
|
116 |
+
### Citation Information
|
117 |
+
|
118 |
+
[More Information Needed]
|
119 |
+
|
120 |
+
### Contributions
|
121 |
+
|
122 |
+
[More Information Needed]
|