File size: 4,978 Bytes
a8c3d91
 
 
 
 
 
ffe17e2
 
 
 
a8c3d91
ffe17e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a8c3d91
 
 
 
 
 
 
 
 
463b7cf
a8c3d91
463b7cf
a8c3d91
463b7cf
a8c3d91
463b7cf
a8c3d91
463b7cf
a8c3d91
 
 
 
 
 
 
 
 
 
 
 
 
 
722337b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a8c3d91
 
 
722337b
 
 
a8c3d91
722337b
 
 
 
 
 
 
 
 
 
 
 
 
a8c3d91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
722337b
 
a8c3d91
 
 
 
97d8d9b
 
a8c3d91
 
 
 
 
 
 
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
---
language:
- zh
- en
- ja
- ko
task_categories:
- audio-classification
- automatic-speech-recognition
- text-to-speech
pretty_name: Genshin Voice
dataset_info:
  features:
  - name: audio
    dtype: audio
  - name: transcription
    dtype: string
  - name: language
    dtype: string
  - name: speaker
    dtype: string
  - name: speaker_type
    dtype: string
  - name: type
    dtype: string
  - name: inGameFilename
    dtype: string
  splits:
  - name: train
    num_bytes: 264598217401.752
    num_examples: 463383
  download_size: 227704444125
  dataset_size: 264598217401.752
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# Genshin Voice

Genshin Voice is a dataset of voice lines from the popular game [Genshin Impact](https://genshin.hoyoverse.com/).

Hugging Face 🤗  [Genshin-Voice](https://huggingface.co/datasets/simon3000/genshin-voice)

<!-- STATS -->
Last update at `2024-08-30`

`463383` wavs

`20231` without speaker (4%)

`24819` without transcription (5%)

`602` without inGameFilename (0%)
<!-- STATS_END -->

## Dataset Details

### Dataset Description

The dataset contains voice lines from the game's characters in multiple languages, including Chinese, English, Japanese, and Korean.

The voice lines are spoken by the characters in the game and cover a wide range of topics, including greetings, combat, and story dialogue.

- **Language(s) (NLP):** Chinese, English, Japanese, Korean

## Uses

To install Hugging Face's datasets library, follow the instructions from [this link](https://huggingface.co/docs/datasets/installation#audio).

### Example: Load the dataset and filter for Chinese voices of Ganyu with transcriptions

```python
from datasets import load_dataset
import soundfile as sf
import os

# Load the dataset
dataset = load_dataset('simon3000/genshin-voice', split='train', streaming=True)

# Filter the dataset for Chinese voices of Ganyu with transcriptions
chinese_ganyu = dataset.filter(lambda voice: voice['language'] == 'Chinese' and voice['speaker'] == 'Ganyu' and voice['transcription'] != '')

# Create a folder to store the audio and transcription files
ganyu_folder = 'ganyu'
os.makedirs(ganyu_folder, exist_ok=True)

# Process each voice in the filtered dataset
for i, voice in enumerate(chinese_ganyu):
  audio_path = os.path.join(ganyu_folder, f'{i}_audio.wav')  # Path to save the audio file
  transcription_path = os.path.join(ganyu_folder, f'{i}_transcription.txt')  # Path to save the transcription file
  
  # Save the audio file
  sf.write(audio_path, voice['audio']['array'], voice['audio']['sampling_rate'])

  # Save the transcription file
  with open(transcription_path, 'w') as transcription_file:
    transcription_file.write(voice['transcription'])

  print(f'{i} done')  # Print the progress
```

### You unpacked the game and just want to know what the wavs are about

result.json format: (subject to change)

```json
{
  "9b5502fb1b83cb97.wav": {
    "inGameFilename": "VO_friendship\\VO_raidenShogun\\vo_raidenEi_dialog_pendant.wem",
    "filename": "9b5502fb1b83cb97.wav",
    "language": "English(US)",
    "transcription": "Really? So in all this time, no new Electro Visions have appeared in the outside world? Well, what I can say on this topic is subject to certain constraints, but... it is not by my will that Visions are granted or denied. The key is people's desire, and... well, there's another side to it too.",
    "speaker": "Raiden Shogun",
    "talkRoleType": "",
    "talkRoleID": "",
    "guid": "f8e72b65-6c0a-4df1-a2f0-2bb08dbeab75",
    "voiceConfigs": [
      {
        "gameTrigger": "Fetter",
        "gameTriggerArgs": 3001,
        "avatarName": "Switch_raidenShogun"
      }
    ]
  }
}
```

## Dataset Creation

### Source Data

The data was obtained by unpacking the [Genshin Impact](https://genshin.hoyoverse.com/) game.

#### Data Collection and Processing

Please refer to [Genshin-Voice](https://github.com/simon300000/genshin-voice) and [w4123/GenshinVoice](https://github.com/w4123/GenshinVoice) for more information on how the data was processed.

#### Who are the source data producers?

The source data producers are the developers of the game, miHoYo.

### Annotations

The dataset contains official annotations from the game, including language, speaker name, and transcription.

## Bias, Risks, and Limitations

Annotations are incomplete. Some voice lines are missing speaker names and transcriptions.

Speakers and transcriptions may contain markups and placeholders: `#<color=#37FFFF>パイモン:</color>{NICKNAME}、すごく怖い悪夢を見たことってあるか?\\n<color=#37FFFF>{NICKNAME}:...`

### Recommendations

Users should be made aware of the risks, biases and limitations of the dataset.

Speaker names can be partially inferred from the ingame filenames.

## Licensing Information

Copyright © COGNOSPHERE. All Rights Reserved.

## More Information

I can upload wav files on demand.