VoxFlash-TTS ⚑

July 14, 2026 Β· View on GitHub

The Fastest Voice Cloning System for Real-Time Inference
Zero-shot Β· Chinese & English Β· Edge-Deployable Β· Consumer GPU

Demo Hugging Face Stars License CUDA Docker

🌐 Live Demo Β· πŸš€ Quick Start Β· πŸ— Architecture Β· πŸ“Š Evaluation Β· πŸ€— Model Card


VoxFlash Banner

English Β· δΈ­ζ–‡


What is VoxFlash-TTS?

VoxFlash-TTS is the fastest voice cloning system in the industry, built around a radically compressed latent diffusion architecture. It supports zero-shot voice cloning in Chinese and English, runs on consumer-grade GPUs, and is designed from the ground up for edge deployment.

The key insight: most TTS inference bottlenecks are a sequence length problem. By compressing 24kHz audio into a 9 Hz latent representation β€” roughly 8Γ— more compressed than EnCodec β€” VoxFlash reduces end-to-end compute by orders of magnitude without sacrificing acceptable audio quality.

Generating 10 seconds of audio requires processing just 90 latent vectors, compared to 750+ in conventional systems.


Highlights

  • ⚑ Millisecond-level inference on consumer GPUs
  • πŸŽ™οΈ Zero-shot voice cloning β€” no fine-tuning required
  • 🌏 Chinese & English β€” same-language and cross-lingual cloning
  • πŸ’» Edge-friendly β€” low VRAM footprint, low-end GPU compatible
  • 🐳 One-command Docker deployment β€” up and running in minutes
  • πŸ“¦ ~600 MB ONNX β€” full pipeline in a single deployable artifact

Architecture

VoxFlash-TTS is built on an ultra-compressed latent diffusion pipeline:

Text Input
    β”‚
    β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚   Phoneme Encoder   β”‚  ConvNeXtV2 β€” lightweight, hardware-friendly
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
    β”‚
    β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  Coarse Alignment   β”‚  Explicit alignment β€” lower complexity than Cross-Attention
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
    β”‚
    β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚   Diffusion Model   β”‚  Multi-step denoising in latent space (NFE=16)
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
    β”‚                     β–²
    β”‚              β”Œβ”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”
    β”‚              β”‚Speaker Enc. β”‚  Reference audio β†’ speaker embedding
    β”‚              β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
    β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚    VAE Decoder      β”‚  9 Hz latent β†’ 24kHz high-fidelity waveform
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
    β”‚
    β–Ό
Audio Output

Why 9 Hz?

SystemLatent Frame RateLatent vectors for 10s audio
EnCodec~75 fps~750
Speech LM (semantic tokens)~50 fps~500
Stable Audio~21.5 fps~215
VoxFlash-TTS9 fps90

Transformer self-attention scales at O(nΒ²) with sequence length. Cutting the sequence by 8Γ— reduces attention compute by ~64Γ—. This is why VoxFlash can deliver millisecond inference where others cannot.


Changelog


Quick Start

Requirements

  • NVIDIA GPU with CUDA β‰₯ 12.3.2
  • Docker

Installation

# Pull the image
docker pull berlinisaiah/ttsv2:v3

Run

# Background mode (production)
docker container run -d --gpus all \
  --mount type=bind,source=$(pwd)/resources,target=/app/resources \
  -p 8000:8000 berlinisaiah/ttsv2:v3

# Foreground mode (debug)
docker container run -it --gpus all \
  --mount type=bind,source=$(pwd)/resources,target=/app/resources \
  -p 8000:8000 berlinisaiah/ttsv2:v3

Access WebUI

Open your browser and navigate to:

http://127.0.0.1:8000/demo.html

Capabilities

Supported Languages

LanguageSame-language CloningCross-lingual Cloning
Chinese (Mandarin)βœ…βœ…
Englishβœ…βœ…

Zero-Shot Cloning

No fine-tuning needed. Provide any reference audio clip and VoxFlash extracts a speaker embedding, injects it into the diffusion process, and outputs speech matching the target voice.

Cross-lingual cloning (e.g. Chinese reference β†’ English output) is supported, demonstrating effective disentanglement of voice timbre from language identity.


Evaluation

Audio samples are drawn from the Seed-TTS evaluation set for direct comparison with leading systems.

SystemInference SpeedDeploymentZero-ShotCross-lingual
Seed-TTSSlowCloud GPUβœ…βœ…
CosyVoice 2MediumMediumβœ…βœ…
FastSpeech variantsFastLow❌❌
VoxFlash-TTSFastestEdge / Consumer GPUβœ…βœ…

πŸ‘‰ Listen to audio samples at voxflash.github.io


Use Cases

ScenarioKey RequirementVoxFlash Advantage
Real-time voice interactionLow first-packet latencyShort latent sequences, fewer diffusion steps
Large-scale batch synthesisThroughput & GPU costOrders-of-magnitude compute reduction
Edge / on-device deploymentLow VRAM & power drawLightweight architecture, consumer GPU capable
Individual developersSimple setupOne Docker command, no tuning required

Model Size

FileSizeContents
main_model.onnx697 MBPhoneme Encoder + Diffusion Model + Speaker Encoder
vae_decode.onnx51.5 MBVAE Decoder
vae_encode.onnx46.1 MBVAE Encoder
vocoder.onnx59.7 MBVocoder
Total~854 MBFull pipeline

Limitations

  • Audio quality under extreme compression may fall short of quality-focused systems such as Seed-TTS
  • Currently optimized for Chinese and English; other languages have not been systematically evaluated
  • Accent naturalness in cross-lingual cloning has room for improvement
  • Reference audio shorter than 3 seconds may reduce speaker similarity

Citation

If VoxFlash-TTS has been useful in your research or engineering work, please cite:

@misc{voxflash2026,
  title     = {VoxFlash-TTS: Ultra-Compressed Latent Diffusion for Real-Time Voice Cloning},
  author    = {VoxFlash},
  year      = {2026},
  url       = {https://github.com/VoxFlash/VoxFlashTTS},
  note      = {GitHub repository}
}

Contributing

Contributions, issues, and feature requests are welcome. Please open an issue first to discuss what you would like to change.


License

This project is licensed under the Apache 2.0 License.


Contact


WeChat Community

Scan the QR code below to join the VoxFlash-TTS Voice Cloning Group on WeChat:

VoxFlash-TTS WeChat Group QR Code

QR code valid for 7 days. Please re-enter the group if it expires.


Not the most expressive TTS β€” the fastest, lightest, and easiest-to-deploy voice cloning system.