yeeko/Elaina_WanderingWitch_audio_JA
收藏Hugging Face2026-04-05 更新2026-04-12 收录
下载链接:
https://hf-mirror.com/datasets/yeeko/Elaina_WanderingWitch_audio_JA
下载链接
链接失效反馈官方服务:
资源简介:
---
license: other
language:
- ja
tags:
- audio
- voice
- elaina
- wandaring-witch
- majo-no-tabitabi
- japanese
- anime
annotations_creators:
- no-annotation
language_creators:
- found
---
<!-- Chinese / 中文 -->
# 伊蕾娜 语音数据集 (Elaina Voice Audio Dataset)
## 角色介绍
**伊蕾娜(Elaina / イレイナ)** 是来自 **《魔女之旅》(Majo no Tabitabi / 魔女の旅々)** 的主角。
她是一位银发琉璃瞳的旅人魔女,带着温柔的微笑造访各地,见证人间百态。性格冷静又带点俏皮,声音柔和动听,由 **本渡楓(Kaede Hondo)** 配音。
> _"这位戴着魔女证明的胸针,飘扬着灰色秀发,那美貌与才能的光辉,让太阳都不禁眯起双眼的美女,到底是谁呢?没错,就是我。"_
> — 伊蕾娜
## 数据集概述
本数据集收录了 **伊蕾娜 日语配音** 的音频切片及对应文本。
### 基本信息
| 项目 | 内容 |
|------|------|
| 角色 | 伊蕾娜 (Elaina) |
| 作品 | 魔女之旅 (Majo no Tabitabi) |
| 配音演员 | 本渡楓 (Kaede Hondo) |
| 配音语言 | 日语(JA) |
| 音频来源 | B站 / Bilibili |
| 数据格式 | Parquet + MP3/WAV |
## 数据预览

> 伊蕾娜,《魔女之旅》主角,银发琉璃瞳的旅人魔女。声优:本渡楓。
## 使用说明
### 加载数据集
```python
from datasets import load_dataset
dataset = load_dataset("yeeko/Elaina_WanderingWitch_audio_JA")
print(dataset["train"][0])
```
### ⚠️ Windows + Python 3.11/3.12 兼容性问题
在 **Windows + Python 3.11/3.12** 环境下,`datasets` 库内部会触发 `multiprocessing` 的 `RLock._recursion_count` 错误,导致数据集加载失败。这是 Python 官方尚未修复的已知问题。
**解法一:绕过 load_dataset(推荐)**
```python
import pandas as pd
url = "https://huggingface.co/datasets/yeeko/Elaina_WanderingWitch_audio_JA/resolve/main/train/metadata.parquet"
df = pd.read_parquet(url) # pandas 直接读,无多进程问题
print(df.head())
# 音频 URL: https://huggingface.co/datasets/yeeko/Elaina_WanderingWitch_audio_JA/resolve/main/train/{filename}
```
**解法二:禁用多进程**
```python
import os
os.environ["HF_DATASETS_DISABLE_MULTIPROCESSING"] = "1"
from datasets import load_dataset
dataset = load_dataset("yeeko/Elaina_WanderingWitch_audio_JA", num_workers=0)
```
## 注意事项
- ⚠️ 本数据集仅供**学习与研究**使用
- 🎭 音频版权归原作者及版权方所有
- 📌 如需用于商业用途,请联系版权方授权
---
<!-- Japanese / 日本語 -->
# イレイナ 声優データセット (Elaina Voice Audio Dataset)
## キャラクター紹介
**イレイナ(Elaina)** は、**『魔女の旅々(Majo no Tabitabi)』**の主人公です。
銀髪琉璃色の瞳を持つ旅する魔女で、穏やかな微笑みを浮かべながら各地を旅し、様々な人間ドラマに出会います。冷静で少し俏皮な性格,声音柔和で美しい。声優は **本渡楓(Kaede Hondo)**。
> _"この魔女の証であるブローチを付け、灰色の髪を靡かせて、その美しさと才能の輝きに太陽さえも思わず目を細めてしまうほどの美女は、誰でしょうか。そう、私です!"_
> — イレイナ
## データセット概要
このデータセットは、**イレイナの日本語声優**の音声クリップと対応テキストを収録しています。
| 項目 | 内容 |
|------|------|
| キャラクター | イレイナ (Elaina) |
| 作品 | 魔女の旅々 (Majo no Tabitabi) |
| 声優 | 本渡楓 (Kaede Hondo) |
| 配音言語 | 日本語(JA) |
| 音声ソース | Bilibili |
## データプレビュー

> イレイナ、『魔女の旅々』の主人公。銀髪琉璃色の瞳を持つ旅する魔女。声優:本渡楓。
## 使用方法
```python
from datasets import load_dataset
dataset = load_dataset("yeeko/Elaina_WanderingWitch_audio_JA")
print(dataset["train"][0])
```
### ⚠️ Windows + Python 3.11/3.12 互換性问题
**Windows + Python 3.11/3.12** 環境では、`datasets` ライブラリが `multiprocessing` の `RLock._recursion_count` エラーを引き起こすことがあります(Python 側の未修正バグ)。
**回避方法1:load_dataset をバイパス(推奨)**
```python
import pandas as pd
url = "https://huggingface.co/datasets/yeeko/Elaina_WanderingWitch_audio_JA/resolve/main/train/metadata.parquet"
df = pd.read_parquet(url) # pandas 直接読込、multiprocess なし
print(df.head())
# 音声URL: https://huggingface.co/datasets/yeeko/Elaina_WanderingWitch_audio_JA/resolve/main/train/{filename}
```
**回避方法2:マルチプロセスを無効化**
```python
import os
os.environ["HF_DATASETS_DISABLE_MULTIPROCESSING"] = "1"
from datasets import load_dataset
dataset = load_dataset("yeeko/Elaina_WanderingWitch_audio_JA", num_workers=0)
```
---
<!-- English -->
# Elaina Voice Audio Dataset
## Character Introduction
**Elaina** is the protagonist of **"Wandering Witch: The Journey of Elaina" (Majo no Tabitabi / 魔女の旅々)**.
She is a silver-haired traveling witch who visits various countries with a gentle smile, witnessing all manner of human drama. Calm yet mischievous, with a warm and beautiful voice. Voiced by **Kaede Hondo (本渡楓)**.
> _"Who is this beautiful woman, adorned with a brooch bearing the proof of her witch's power, her flowing grey hair, whose beauty and talent so radiant that even the sun squints? That's right, it's me."_
> — Elaina
## Dataset Overview
This dataset contains audio clips and corresponding transcripts of Elaina's **Japanese voice acting**.
| Item | Content |
|------|---------|
| Character | Elaina (イレイナ) |
| Series | Wandering Witch: The Journey of Elaina (魔女の旅々) |
| Voice Actor | Kaede Hondo (本渡楓) |
| Language | Japanese (JA) |
| Audio Source | Bilibili |
## Data Preview

> Elaina, the protagonist of "Wandering Witch: The Journey of Elaina." Voiced by Kaede Hondo.
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("yeeko/Elaina_WanderingWitch_audio_JA")
print(dataset["train"][0])
```
### ⚠️ Windows + Python 3.11/3.12 Compatibility Issue
On **Windows with Python 3.11/3.12**, the `datasets` library triggers a known `multiprocessing` `RLock._recursion_count` error. This is a upstream Python bug that has not been fixed yet.
**Workaround 1: Bypass load_dataset (recommended)**
```python
import pandas as pd
url = "https://huggingface.co/datasets/yeeko/Elaina_WanderingWitch_audio_JA/resolve/main/train/metadata.parquet"
df = pd.read_parquet(url) # pandas reads directly, no multiprocessing
print(df.head())
# Audio URL: https://huggingface.co/datasets/yeeko/Elaina_WanderingWitch_audio_JA/resolve/main/train/{filename}
```
**Workaround 2: Disable multiprocessing**
```python
import os
os.environ["HF_DATASETS_DISABLE_MULTIPROCESSING"] = "1"
from datasets import load_dataset
dataset = load_dataset("yeeko/Elaina_WanderingWitch_audio_JA", num_workers=0)
```
## Disclaimer
- ⚠️ This dataset is for **learning and research purposes only**
- 🎭 Audio copyright belongs to the original creators and respective copyright holders
- 📌 For commercial use, please contact the copyright holder for authorization
---
*Dataset created with 🌿 by Yeeko*
提供机构:
yeeko



