Reference-Driven Multi-Speaker Audio Scene Generation from In-the-Wild Priors
Paper β’ 2606.19325 β’ Published
ScenA generates multi-speaker audio scenes (dialogue, conversation) from a text prompt, conditioned on one or more reference-audio clips that set the speakers' voices. It is an audio-only, reference-conditioned text-to-audio flow-matching DiT built on the LTX-2 architecture (~4B parameters, 48 layers).
| file | size | contents |
|---|---|---|
scena.safetensors |
~8.2 GB | the ScenA transformer + Gemma text-projection weights |
audio_vae.safetensors |
~365 MB | the audio VAE (encoder+decoder) + vocoder (bundled so you don't need the full LTX-2 model) |
You also need the Gemma-3-12B-IT text encoder (google/gemma-3-12b-it, gated on HF).
git clone https://github.com/finmickey/scena
cd scena
pip install -e . # or: uv sync
# download the checkpoint + audio VAE bundle
huggingface-cli download mifinkelson/scena scena.safetensors audio_vae.safetensors --local-dir ./checkpoints
Two example reference voices ship with the repo under examples/references/ β the same two voices
drive both examples below, so this runs out of the box:
from ltx_pipelines.t2aud_ref_cond import T2AudRefCondPipeline
pipe = T2AudRefCondPipeline(
checkpoint_path="checkpoints/scena.safetensors",
audio_vae_path="checkpoints/audio_vae.safetensors",
gemma_root="/path/to/google/gemma-3-12b-it",
)
refs = ["examples/references/reference_1.wav", "examples/references/reference_2.wav"]
# A simple two-speaker dialogue
pipe(
prompt='The speaker from reference 1 says: "The taxi drivers are on strike again." The speaker from reference 2 says: "What for?" The speaker from reference 1 says: "They want the government to reduce the price of the gasoline." The speaker from reference 2 says: "It is really a hot potato."',
ref_audio_paths=refs,
duration=7.0,
seed=1,
).save("dialogue.wav")
# Farm at sunrise β the same two voices in a scene with sound effects
pipe(
prompt='A farm at sunrise: a rooster crows. Chickens cluck softly throughout. The speaker from reference 1 says with a yawn: "Way too early for this." The speaker from reference 2 chuckles: "Welcome to country life." The rooster crows again.',
ref_audio_paths=refs,
duration=8.0,
seed=1,
).save("farm.wav")
ref_audio_paths.@article{finkelson2026scena,
title = {Reference-Driven Multi-Speaker Audio Scene Generation from In-the-Wild Priors},
author = {Finkelson, Michael and Segal, Daniel and Richardson, Eitan and Armon, Shahar and Goldring, Nani and Panet, Poriya and Zabari, Nir and Brazowski, Benjamin and Patashnik, Or and HaCohen, Yoav},
journal = {arXiv preprint arXiv:2606.19325},
year = {2026}
}
Released under the LTX-2 Community License.