Luke Oliff.

An Open Source TTS Model That Edits Words After Recording

·Voice AI·6 min read·Luke Oliff

On July 1, a Chinese startup called Yunshang Qulv released an open-source TTS model that does something I haven’t seen in a production system before. ViiTorVoice-NAR can replace a single word inside a finished audio recording without regenerating anything around it. Change “hello” to “hey” in the middle of a 30-second clip, and only that word changes. The rest stays identical down to the background noise, breath rhythm, and emotional register.

It’s on GitHub and Hugging Face under Apache 2.0. You can download it, run it locally, and edit speech the way you’d edit text in a document. That is genuinely novel, so I spent a couple of days getting my head around how it works and what it means.

How ViiTorVoice-NAR edits audio without touching the rest

Most TTS models are autoregressive. They generate audio left to right, one chunk at a time, and each chunk depends on every chunk before it. To change a word in the middle, you regenerate everything from that point forward, which changes cadence, pauses, and intonation in ways that make the edit obvious.

ViiTorVoice-NAR uses a non-autoregressive masked language model instead, inspired loosely by how BERT works on text. During training, it learns to mask a contiguous block of audio tokens and reconstruct them by attending to what comes before and after simultaneously. At inference time, you mark the region you want to replace, the model blanks it out and fills it in using bidirectional context. The surrounding audio stays untouched because the model never regenerates it.

The company reports word error rates of 1.32% for English and 0.99% for Chinese on the Seed-TTS benchmark. Those are self-reported figures, not independently verified, and they sit below Fish Audio S2’s published 0.54% Chinese WER from March. But the Seed-TTS benchmark measures standard TTS accuracy, not word editing, so the comparison is apples to the other kind of fruit. What matters is that the editing capability works at all, at production-level latency: 60ms first-frame audio, which is fast enough for real-time use.

The reference-text-free cloning angle

Same architecture also enables a second capability I find more concerning. Because the model processes audio bidirectionally and extracts speaker identity from acoustic features alone, it can clone a voice from raw audio without requiring a transcript of what the speaker said.

Every conventional voice cloning system needs a reference clip and an accurate transcription. The transcription anchors the model’s understanding of the speaker’s phoneme habits. ViiTorVoice-NAR skips that step entirely. You upload a raw audio sample, commercial, podcast clip, public recording, and it can synthesize new content in that speaker’s voice without ever knowing what they actually said.

A model you can download for free, running on your own hardware, that clones voices without requiring the user to prove they have the right to use that audio, without a consent mechanism, without watermarking. That capability exists now in a freely available package with Apache 2.0 license.

The timing matters. The EU AI Act’s Article 50 takes effect August 2, requiring that any product generating or manipulating audio content mark its outputs in a machine-readable format. ViiTorVoice-NAR ships with zero watermarking tooling built in. Anyone deploying it in EU-facing contexts needs to implement compliant labeling independently, and 26 days is not a lot of time to add infrastructure that doesn’t exist yet.

What this means for the voice AI landscape

I think there are three takeaways, in increasing order of importance.

First, word-level editing is going to be a standard TTS feature within a year. The user experience is too obviously better. Every podcast editor, video producer, and voice app developer who tries it will want it. The commercial API vendors will ship their own versions, and the ones that don’t will sound dated. This is the first implementation, not the last.

Second, the gap between open-source and commercial TTS continues to shrink, differently than it is in text. The open-weight TTS models on the Speech Arena still trail the closed leaders by over 100 Elo points. But ViiTorVoice-NAR’s editing capability isn’t something the top commercial models can do yet. Open source wins on novelty, commercial wins on raw quality, and the two advantages don’t overlap.

Third, reference-text-free voice cloning in an open-source package without consent or watermarking infrastructure creates a regulatory exposure that the developer community hasn’t fully processed. The EU AI Act compliance deadline is 26 days away. Multiple US states now treat voice as a protected identity attribute under right-of-publicity statutes. The FCC declared AI-generated voice calls illegal in 2024. This model makes all of those easier to violate, not harder.

That’s not a reason the model shouldn’t exist. But it is a reason to think about what you build with it, and whether the infrastructure around it matches the capability inside it. The engineering is impressive. The deployment ethics are a separate conversation, and the calendar is making that conversation urgent.

FAQ

What is ViiTorVoice-NAR?

ViiTorVoice-NAR is a non-autoregressive text-to-speech model from Chinese startup Yunshang Qulv, released open-source on July 1, 2026 under Apache 2.0. Its defining capability is word-level editing: replacing individual words inside a finished audio recording without regenerating the surrounding content. It also supports reference-text-free voice cloning from raw audio without requiring a transcript.

How does ViiTorVoice-NAR compare to other open-source TTS models?

It offers capabilities that no other open-source TTS model provides, specifically word-level local editing and reference-text-free voice cloning. On standard TTS benchmarks, its reported word error rates (1.32% English, 0.99% Chinese) are competitive but not market-leading. Where it stands out is inference-time features, not raw accuracy.

Does ViiTorVoice-NAR include audio watermarking?

No. The release ships without built-in watermarking or disclosure tooling. Deployers serving users in the European Union will need to implement their own machine-readable labeling to comply with EU AI Act Article 50, which takes effect August 2, 2026.

Is ViiTorVoice-NAR safe to deploy in production?

The model itself is a capable piece of engineering. The safety question is about what you build around it. For EU-facing applications, you need audio watermarking before August 2. For voice cloning, consider whether you can verify consent for every reference audio source, especially given the reference-text-free capability means you never see a transcript that might indicate ownership.