Dragon voices and editing

2026-09-03T13:59:00.2366667+00:00

We are using Speech Studio for Text to Speech in our learning products. We love how natural the Dragon voices sound but there is no way to edit them. For example, sometimes it will completely ignore the word and pronounce something with letters that don't exist. We also would also enjoy having the other functions enabled like silence or pronunciation available.

Are any of these functions on the product roadmap for improvement to Dragon voices?

Azure Speech in Foundry Tools
0 comments No comments

Answer accepted by question author
Manish Deshpande 8,135 Reputation points Microsoft External Staff Moderator
2026-09-06T22:20:44.7933333+00:00

Hello @Fernandes, Alexander (CIHR/IRSC)

Thanks for the detailed question — and I'm glad the Dragon voices are working well for your learning content. What you're running into is real, and it comes down to how these voices are built, so let me explain it and then give you what you can do about it today.

Why this happens

Dragon HD voices are LLM-based. Instead of applying fixed phonetic rules, they infer pronunciation and prosody from the meaning of your text, and they're non-deterministic by default (the temperature parameter defaults to 1.0). That's where those odd renderings come from — sounds that aren't in the word you typed.

The same design is why the editing controls are greyed out in Speech Studio. mstts:silence, <prosody>, and <emphasis> are unsupported on every Dragon HD variant. <phoneme> and <break> are supported on DragonHD (but not on Dragon HD Omni), and <lexicon> works on both — for alias entries only.

What you can do right now

  1. Drop temperature to 0.3. The 1.0 default is the biggest single contributor to unpredictable output. <voice name='en-US-Ava:DragonHDLatestNeural' parameters='temperature=0.3'> Synthesize the same sentence five times and confirm the renders now match each other.
  2. Turn on enhancePronunciation. It's off by default and adds linguistic processing aimed at proper nouns, acronyms, mixed-case text, and context-ambiguous words — basically the profile of instructional vocabulary. Re-synthesize one of your known-bad terms with it on and A/B it against the original. It complements SSML pronunciation tags rather than replacing them.
  3. Confirm you're on DragonHD, not Omni, then use <phoneme> and <break>. Check that your voice string ends in :DragonHDLatestNeural. Omni trades away <phoneme> and <break> for style control and word boundary events, so for pronunciation-critical narration DragonHD is the right base model. Wrap the problem word in <phoneme alphabet="ipa" ph="…">…</phoneme>, and use <break time="800ms"/> wherever you'd have reached for silence — then confirm the pause shows up in the exported waveform.
  4. Build an alias-based custom lexicon for your recurring course terms. This is the only mechanism applied consistently across every request, so it's the highest-leverage fix for a content library. A few details worth knowing up front: author entries as respellings, not IPA (Dragon honors alias only); 100 KB max per file — requests fail above that, so split into multiple lexicons; one locale per lexicon; lexeme entries are case-sensitive; alias takes priority over phoneme for the same grapheme; and the file is cached by URI for up to 15 minutes, so edits aren't instant. Validate with the Custom Lexicon Validation tool, wait 15 minutes, then re-synthesize.
  5. For the few segments that truly need an unsupported tag — a workaround, not a fix. Synthesize just that segment with the non-HD counterpart of the same persona (e.g. en-US-AvaNeural), which supports the full SSML set, and splice it into the Dragon narration. HD voices keep a consistent persona with their non-HD counterparts, so the seam shouldn't be audible. Render one paragraph both ways and listen at the splice point to satisfy yourself.

On your roadmap question — straight answer

I couldn't find any published Microsoft roadmap commitment or announcement stating that <prosody>, mstts:silence, <emphasis>, or full lexicon-phoneme support will be enabled for Dragon voices, and I'd rather tell you that plainly than speculate.

What I can point to is that the Dragon family is clearly gaining editing capability: Dragon HD Omni shipped mstts:express-as style control with 60+ styles and 6 paralinguistic tags, multilingual auto-detection, and word boundary events, and enhancePronunciation was added specifically to improve pronunciation accuracy on HD voices. Worth knowing too: styles work on Dragon voices via inline markers in plain text — e.g. [reassuring] Let's review what we covered. — which may give you some of the expressive control you're after without SSML at all.

For your two specific asks (silence and pronunciation controls on Dragon voices), the product feedback channel in Speech Studio / Microsoft Foundry is the route that reaches the product group directly. It's genuinely read, and requests from customers using these voices at scale in production carry weight.

References

Thanks,
Manish.

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.