The scenario:
You are building an in-vehicle application that uses Azure AI Speech for text-to-speech (TTS).
Requirement: Optimize the quality of synthesized voice output.
You must choose the most appropriate SSML (Speech Synthesis Markup Language) attribute.
Option A – style attribute of the mstts:express-as element
Used to apply expressive styles like " cheerful, " " empathetic, " or " angry. "
Helpful for emotion/tone, but not specifically about audio quality for clarity in motor vehicles.
Option B – level attribute of the emphasis element
Controls how strongly certain words are emphasized.
Improves meaning and focus, but does not optimize overall voice quality.
Option C – pitch attribute of the prosody element ✅
The < prosody > element allows adjustments to pitch, rate, and volume.
Adjusting pitch directly affects the naturalness and clarity of the synthesized speech.
Especially useful in noisy environments such as cars, because modifying pitch can make speech stand out better against background noise.
This directly improves perceived quality of voice output.
Option D – effect attribute of the voice element
Used for special voice effects (like whispering).
Not typically used for general clarity or quality improvements.
Correct Answer: C. the pitch attribute of the prosody element
Microsoft References
SSML support in Azure AI Speech
Prosody element in SSML