You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

translation_dataset

Synthetic, expressive, multilingual speech for cross-lingual dubbing research. Each example pairs a style-annotated text with generated audio that clones an English reference voice: the voice stays the same, the language changes.

  • ~1.9M examples in the one_speaker config
  • 17 languages
  • ~900 distinct reference speakers

Samples

Each sample shows the generated audio followed by the English reference voice that conditioned it.

English (en)

Italian (it)

Russian (ru)

Arabic (ar)

Chinese (zh)

Japanese (ja)

Korean (ko)

Hindi (hi)

Configs

config content
one_speaker single-speaker voice only
ambient_v3, ambient_v4 single-speaker voice with ambient background
music_sfx_step2, dynamic_sfx_step2 multi-speaker scenes with separate voice, SFX and music stems
music_sfx_step3, dynamic_sfx_step3 same scenes as Step 2 with regenerated backgrounds

Some configs are still being uploaded and may be incomplete.

Structure (one_speaker)

field type description
id int utterance ID; the same id appears once per language, linking parallel translations
language string ISO 639-1 code
transcription string text with inline style directives
references list<struct> reference voices, {audio, text}
generated_audio Audio synthesized speech

Background configs add fields such as bg_prompt, bg_profile, bg_audio, and, for multi-speaker configs, separate sfx_audio, music_audio and mixed_audio stems.

Style directives

Transcriptions contain bracketed prosodic cues that are meant to be performed, not read:

[inhale] So, the detective... [soft voice] just looked at the file
[long pause] and then he [gasp] he said it. [angry] It w-w-wasn't a robbery.
[shouting] It was an ambush!!!

Stuttering, syllabic emphasis and repeated punctuation are also used as intensity cues. These cues are requests to the synthesizer and are not verified perceptual annotations.

Loading

from datasets import load_dataset

ds = load_dataset("mlinmg/translation_dataset", "one_speaker", split="train", streaming=True)
ex = next(iter(ds))

The dataset is several hundred GB; streaming is recommended.

Limitations

  • Fully synthetic audio. It is not human speech and should not be treated as such.
  • English-only reference voices, so target-language accents may be influenced by the source timbre.
  • Intelligibility, speaker fidelity and background quality have not been exhaustively validated. Synthesis artifacts may be present.
  • License to be determined.
Downloads last month
348