mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Preserve inner XML when setting a voice style (#37)
The former method lost any XML markup (such as say-as tags, etc) embedded within the voice tag. In the future if support for setting voice speed is added, it can be inserted here easily as well.
This commit is contained in:
parent
b4ce5b641c
commit
1727e5fb2a
@ -195,30 +195,20 @@ namespace Observatory.Herald
|
||||
var ssmlNamespace = ssmlDoc.DocumentElement.NamespaceURI;
|
||||
XmlNamespaceManager ssmlNs = new(ssmlDoc.NameTable);
|
||||
ssmlNs.AddNamespace("ssml", ssmlNamespace);
|
||||
|
||||
ssmlNs.AddNamespace("mstts", "http://www.w3.org/2001/mstts");
|
||||
|
||||
var voiceNode = ssmlDoc.SelectSingleNode("/ssml:speak/ssml:voice", ssmlNs);
|
||||
|
||||
voiceNode.Attributes.GetNamedItem("name").Value = voiceName;
|
||||
|
||||
string ssmlResult;
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(styleName))
|
||||
{
|
||||
voiceNode.InnerText = $"<mstts:express-as style=\"{styleName}\">" + voiceNode.InnerText + "</mstts:express-as>";
|
||||
|
||||
// This is a kludge but I don't feel like dealing with System.Xml and namespaces
|
||||
ssmlResult = ssmlDoc.OuterXml
|
||||
.Replace(" xmlns=", " xmlns:mstts=\"https://www.w3.org/2001/mstts\" xmlns=")
|
||||
.Replace($"<mstts:express-as style=\"{styleName}\">", $"<mstts:express-as style=\"{styleName}\">")
|
||||
.Replace("</mstts:express-as>", "</mstts:express-as>");
|
||||
var expressAsNode = ssmlDoc.CreateElement("express-as", "http://www.w3.org/2001/mstts");
|
||||
expressAsNode.SetAttribute("style", styleName);
|
||||
expressAsNode.InnerXml = voiceNode.InnerXml;
|
||||
voiceNode.InnerXml = expressAsNode.OuterXml;
|
||||
}
|
||||
else
|
||||
{
|
||||
ssmlResult = ssmlDoc.OuterXml;
|
||||
}
|
||||
|
||||
return ssmlResult;
|
||||
return ssmlDoc.OuterXml;
|
||||
}
|
||||
|
||||
private static string GetAzureKey(HeraldSettings settings, HttpClient httpClient)
|
||||
|
Loading…
x
Reference in New Issue
Block a user