i'm sending SSML to the speech synthesizer but it is only respecting the prosody duration if the gender is male. here's a code fragment:
using System.Speech.Synthesis;
SpeechSynthesizer synthesizer = new SpeechSynthesizer();
string slow_ssml_male = "<prosody duration='8000ms'><voice gender='male'>american one twenty three cleared to land runway one left</voice></prosody>";
string slow_ssml_female = "<prosody duration='8000ms'><voice gender='female'>american one twenty three cleared to land runway one left</voice></prosody>";PromptBuilder builder = new PromptBuilder();
builder.AppendSsmlMarkup(slow_ssml_male);
builder.AppendSsmlMarkup(slow_ssml_female);
synthesizer.Speak(builder);
what am i doing wrong?