语音合成器无法获取所有已安装的语音 3



我在地区和语言下使用"添加语言"添加了许多声音。这些显示在"语音"中的"文本到语音转换"下。(我正在使用视窗 10(

我想在我的应用程序中将它们与System.Speech.Synthesis中的SpeechSynthesizer类一起使用。

在我的应用程序中列出可用语音时,仅显示少数实际可用的语音:

static void Main()
{
SpeechSynthesizer speech = new SpeechSynthesizer();
ReadOnlyCollection<InstalledVoice> voices = speech.GetInstalledVoices();
if (File.Exists("available_voices.txt"))
{
File.WriteAllText("available_voices.txt", string.Empty);
}
using (StreamWriter sw = File.AppendText("available_voices.txt"))
{
foreach (InstalledVoice voice in voices)
{                 
sw.WriteLine(voice.VoiceInfo.Name);                           
}
}
}

查看available_voices.txt仅列出了以下声音:

Microsoft David Desktop
Microsoft Hazel Desktop
Microsoft Zira Desktop
Microsoft Irina Desktop

但是在设置中的文本到语音下查看还有更多,例如Microsoft GeorgeMicrosoft Mark.

这里接受的答案: 语音合成器无法获取所有已安装的语音 建议将平台更改为 x86。我试过这个,但我没有看到任何变化。

这个答案: 语音合成器无法获取所有已安装的语音 2 建议使用 .NET v4.5,因为System.Speech.Synthesis中的错误。我的目标是.NET Framework 4.5,但我仍然只能检索4个语音。

我链接的问题中没有一个答案帮助我解决了我的问题,所以我再问一次。任何帮助都会得到赞赏。

在提出原始问题后已经过去了 3 年,API 似乎包含相同的问题,因此这里有一个更"深入"的答案。

TL;博士;代码示例 - 在底部

语音列表的问题在于Microsoft语音 API 的奇怪设计 - Windows 中有两组语音在注册表的不同位置注册 - 一组位于 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Speech\Voices,另一组位于 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Speech_OneCore\Voices。

问题是SpeechSynthesizer(或者更具体地说 - VoiceSynthesis(的初始化例程被钉在第一个上,同时我们通常需要两者的组合。

因此,实际上有两种方法可以克服这种行为。

选项1(其他答案中提到的选项(:操作注册表以物理方式从注册表复制语音定义记录Speech_OneCore从而使它们对 SpeechSynthesizer 可见。在这里,您有很多选择:手动注册表操作,PowerShell脚本,基于代码等。

选项2(我在项目中使用的选项(:使用反射将其他语音放入内部 VoiceSyntesis 的_installedVoices字段中,有效地模拟Microsoft在代码中执行的操作。

好消息是,语音 API 源代码现已开放,因此我们不必在黑暗中摸索,试图了解我们需要做什么。

以下是原始代码片段:

using (ObjectTokenCategory category = ObjectTokenCategory.Create(SAPICategories.Voices))
{
if (category != null)
{
// Build a list with all the voicesInfo
foreach (ObjectToken voiceToken in category.FindMatchingTokens(null, null))
{
if (voiceToken != null && voiceToken.Attributes != null)
{
voices.Add(new InstalledVoice(voiceSynthesizer, new VoiceInfo(voiceToken)));
}
}
}
}

我们只需要将SAPICategories.Voices常量替换为另一个注册表项路径,并重复整个配方。

坏消息是,这里使用的所有需要的类、方法和字段都是内部的,所以我们必须广泛使用反射来实例化类、调用方法和 get/set 字段。

请在下面找到我的实现示例 - 您在合成器上调用InjectOneCoreVoices扩展方法,它就可以完成这项工作。请注意,如果出现问题,它会引发异常,因此不要忘记适当的尝试/捕获环境。


public static class SpeechApiReflectionHelper
{
private const string PROP_VOICE_SYNTHESIZER = "VoiceSynthesizer";
private const string FIELD_INSTALLED_VOICES = "_installedVoices";
private const string ONE_CORE_VOICES_REGISTRY = @"HKEY_LOCAL_MACHINESOFTWAREMicrosoftSpeech_OneCoreVoices";
private static readonly Type ObjectTokenCategoryType = typeof(SpeechSynthesizer).Assembly
.GetType("System.Speech.Internal.ObjectTokens.ObjectTokenCategory")!;
private static readonly Type VoiceInfoType = typeof(SpeechSynthesizer).Assembly
.GetType("System.Speech.Synthesis.VoiceInfo")!; 

private static readonly Type InstalledVoiceType = typeof(SpeechSynthesizer).Assembly
.GetType("System.Speech.Synthesis.InstalledVoice")!;

public static void InjectOneCoreVoices(this SpeechSynthesizer synthesizer)
{
var voiceSynthesizer = GetProperty(synthesizer, PROP_VOICE_SYNTHESIZER);
if (voiceSynthesizer == null) throw new NotSupportedException($"Property not found: {PROP_VOICE_SYNTHESIZER}");
var installedVoices = GetField(voiceSynthesizer, FIELD_INSTALLED_VOICES) as IList;
if (installedVoices == null)
throw new NotSupportedException($"Field not found or null: {FIELD_INSTALLED_VOICES}");
if (ObjectTokenCategoryType
.GetMethod("Create", BindingFlags.Static | BindingFlags.NonPublic)?
.Invoke(null, new object?[] {ONE_CORE_VOICES_REGISTRY}) is not IDisposable otc)
throw new NotSupportedException($"Failed to call Create on {ObjectTokenCategoryType} instance");
using (otc)
{
if (ObjectTokenCategoryType
.GetMethod("FindMatchingTokens", BindingFlags.Instance | BindingFlags.NonPublic)?
.Invoke(otc, new object?[] {null, null}) is not IList tokens)
throw new NotSupportedException($"Failed to list matching tokens");
foreach (var token in tokens)
{
if (token == null || GetProperty(token, "Attributes") == null) continue;

var voiceInfo =
typeof(SpeechSynthesizer).Assembly
.CreateInstance(VoiceInfoType.FullName!, true,
BindingFlags.Instance | BindingFlags.NonPublic, null,
new object[] {token}, null, null);
if (voiceInfo == null)
throw new NotSupportedException($"Failed to instantiate {VoiceInfoType}");

var installedVoice =
typeof(SpeechSynthesizer).Assembly
.CreateInstance(InstalledVoiceType.FullName!, true,
BindingFlags.Instance | BindingFlags.NonPublic, null,
new object[] {voiceSynthesizer, voiceInfo}, null, null);

if (installedVoice == null) 
throw new NotSupportedException($"Failed to instantiate {InstalledVoiceType}");

installedVoices.Add(installedVoice);
}
}
}
private static object? GetProperty(object target, string propName)
{
return target.GetType().GetProperty(propName, BindingFlags.Instance | BindingFlags.NonPublic)?.GetValue(target);
}
private static object? GetField(object target, string propName)
{
return target.GetType().GetField(propName, BindingFlags.Instance | BindingFlags.NonPublic)?.GetValue(target);
}
}

在尝试了所有已发布的解决方案后,我通过编辑注册表解决了它:
copyComputerHKEY_LOCAL_MACHINESOFTWAREWOW6432NodeMicrosoftSpeech_OneCoreVoicesTokensMSTTS_V110_heIL_Asaf(其中MSTTS_V110_heIL_Asaf是我想在 .NET 中使用的语音的注册表文件夹,但不出现在GetInstalledVoices()中( 到一个看起来相同的注册表地址,但不是Speech_OneCore它只是Speech.

从技术上讲,为了复制注册表文件夹,我导出了原始文件夹,然后编辑了 .reg 文件以将Speech OneCore更改为Speech,然后应用了该新的 .reg 文件。

我通过安装来自其他来源的语音并获取Microsoft来解决它 语音平台 - 运行时(版本 11(

可用的语音可以在微软网站上找到(单击红色的下载按钮,声音应该列出(

抱歉,如果我的答案在主题发布后这么晚才出现,但我开发了一个小工具,可以修补已安装的语音以使它们可用于 .NET 文本到语音转换引擎。

该工具将"HKLM\SOFTWARE\Microsoft\Speech_OneCore\Voices\Tokens"键中的选定项目复制到"HKLM\SOFTWARE\Microsoft\Speech\Voices\Tokens"。

如果您有兴趣:TTSVoicePatcher(它是免费软件,法语/英语(

由于 HKLM 中对密钥的操作,该工具需要管理员权限才能启动。

Microsoft 网站上的Microsoft语音平台 - 运行时语言(版本 11(似乎只包含已安装的语言。不是可以在Speech_OneCore下找到的那些。

相关内容

  • 没有找到相关文章

最新更新