CoolFace
Datasetpublic

Lucari053/French_game_voice

French Game Voice Dataset Dataset of 100k+ cleaned audio samples of French video game voices with transcriptions. Features Format: Mono WAV 16-bit, 48 kHz Size: ~500 hours of audio Transcriptions: Faster Whisper Large V3 + in-game subtitles Usage from datasets import load_dataset dataset = load_dataset("Lucari053/French_game_voice") # Access the data sample = dataset['train'][0] audio = sample['audio'] text = sample['text']

sourceHugging Faceupdated 10mo agoView on Hugging Face
1likes202downloads
Dataset Card

French Game Voice Dataset

Dataset of 100k+ cleaned audio samples of French video game voices with transcriptions.

Features

  • Format: Mono WAV 16-bit, 48 kHz
  • Size: ~500 hours of audio
  • Transcriptions: Faster Whisper Large V3 + in-game subtitles

Usage

python

from datasets import load_dataset

dataset = load_dataset("Lucari053/French_game_voice")

# Access the data
sample = dataset['train'][0]
audio = sample['audio']
text = sample['text']