mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Merge branch 'master' of https://github.com/Xjph/ObservatoryCore
This commit is contained in:
commit
c0894a3a10
@ -195,30 +195,20 @@ namespace Observatory.Herald
|
|||||||
var ssmlNamespace = ssmlDoc.DocumentElement.NamespaceURI;
|
var ssmlNamespace = ssmlDoc.DocumentElement.NamespaceURI;
|
||||||
XmlNamespaceManager ssmlNs = new(ssmlDoc.NameTable);
|
XmlNamespaceManager ssmlNs = new(ssmlDoc.NameTable);
|
||||||
ssmlNs.AddNamespace("ssml", ssmlNamespace);
|
ssmlNs.AddNamespace("ssml", ssmlNamespace);
|
||||||
|
ssmlNs.AddNamespace("mstts", "http://www.w3.org/2001/mstts");
|
||||||
|
|
||||||
var voiceNode = ssmlDoc.SelectSingleNode("/ssml:speak/ssml:voice", ssmlNs);
|
var voiceNode = ssmlDoc.SelectSingleNode("/ssml:speak/ssml:voice", ssmlNs);
|
||||||
|
|
||||||
voiceNode.Attributes.GetNamedItem("name").Value = voiceName;
|
voiceNode.Attributes.GetNamedItem("name").Value = voiceName;
|
||||||
|
|
||||||
string ssmlResult;
|
|
||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(styleName))
|
if (!string.IsNullOrWhiteSpace(styleName))
|
||||||
{
|
{
|
||||||
voiceNode.InnerText = $"<mstts:express-as style=\"{styleName}\">" + voiceNode.InnerText + "</mstts:express-as>";
|
var expressAsNode = ssmlDoc.CreateElement("express-as", "http://www.w3.org/2001/mstts");
|
||||||
|
expressAsNode.SetAttribute("style", styleName);
|
||||||
// This is a kludge but I don't feel like dealing with System.Xml and namespaces
|
expressAsNode.InnerXml = voiceNode.InnerXml;
|
||||||
ssmlResult = ssmlDoc.OuterXml
|
voiceNode.InnerXml = expressAsNode.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>");
|
|
||||||
}
|
}
|
||||||
else
|
return ssmlDoc.OuterXml;
|
||||||
{
|
|
||||||
ssmlResult = ssmlDoc.OuterXml;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ssmlResult;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static string GetAzureKey(HeraldSettings settings, HttpClient httpClient)
|
private static string GetAzureKey(HeraldSettings settings, HttpClient httpClient)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user