无论如何,我正在尝试找到关于比特率和与所选语音相关的其他信息的确切信息.如果我可以用这个信息初始化wave文件,那么同步问题就会被解决.但是,如果我在SupportedAu@R_502_410@Format中找不到这样的信息,我也不知道找到它们.例如,“Microsoft David Desktop”语音在VoiceInfo中不提供支持的格式,但它似乎支持PCM 16000 hz,16位格式.
如何找到SpeechSynthesizer所选语音的音频格式
var formats = CurVoice.VoiceInfo.SupportedAu@R_502_410@Formats; if (formats.Count > 0) { var format = formats[0]; reader.SetOutputToWaveFile(CurAu@R_502_410@File,format); } else { var format = // How can I find it,if the au@R_502_410@ hasn't provided it? reader.SetOutputToWaveFile(CurAu@R_502_410@File,format ); }
解决方法
SupportedAu@R_502_410@Formats的问题
System.Speech包装着名的COM语音API(SAPI),一些声音是32对64位,或者可能配置错误(在64位机器的注册表中,HKLM /软件/ Microsoft / Speech / Voices vs HKLM / Software / Wow6432Node / Microsoft /语音/声音.
我在System.Speech及其VoiceInfo类中指出了ILSpy,我非常相信SupportedAu@R_502_410@Formats完全来自注册表数据,因此当枚举SupportedAu@R_502_410@Formats时,如果您的TTS引擎未正确注册,可以获得零结果您的应用程序的Platform目标(x86,Any或64位),或者供应商根本不在注册表中提供此信息.
语音可能仍然支持不同的,附加的或更少的格式,因为这取决于语音引擎(代码)而不是注册表(数据).所以这可能是黑暗中的一枪.在这方面,标准Windows语音通常比第三方声音更加一致,但是它们仍然不一定有用地提供SupportedAu@R_502_410@Formats.
寻找这个信息的硬道
我发现仍然可以获得当前语音的当前格式 – 但是这样做依赖于反射来访问System.Speech SAPI包装器的内部.
因此这是相当脆弱的代码!我不建议在生产中使用.
注意:以下代码要求您一次调用Speak()进行安装;需要更多的呼叫来强制设置,而不需要Speak().但是,我可以叫Speak(“”)说什么也没有,只是很好.
执行:
[StructLayout(LayoutKind.Sequential)] struct WAVEFORMATEX { public ushort wFormatTag; public ushort nChannels; public uint nSamplesPerSec; public uint nAvgBytesPerSec; public ushort nBlockAlign; public ushort wBitsPerSample; public ushort cbSize; } WAVEFORMATEX GetCurrentWaveFormat(SpeechSynthesizer synthesizer) { var voiceSynthesis = synthesizer.GetType() .GetProperty("VoiceSynthesizer",BindingFlags.Instance | BindingFlags.NonPublic) .GetValue(synthesizer,null); var ttsVoice = voiceSynthesis.GetType() .GetMethod("CurrentVoice",BindingFlags.Instance | BindingFlags.NonPublic) .Invoke(voiceSynthesis,new object[] { false }); var waveFormat = (byte[])ttsVoice.GetType() .GetField("_waveFormat",BindingFlags.Instance | BindingFlags.NonPublic) .GetValue(ttsVoice); var pin = GCHandle.Alloc(waveFormat,GCHandleType.Pinned); var format = (WAVEFORMATEX)Marshal.PtrToStructure(pin.AddrOfPinnedObject(),typeof(WAVEFORMATEX)); pin.Free(); return format; }
用法:
SpeechSynthesizer s = new SpeechSynthesizer(); s.Speak("Hello"); var format = GetCurrentWaveFormat(s); Debug.WriteLine($"{s.Voice.SupportedAu@R_502_410@Formats.Count} formats are claimed as supported."); Debug.WriteLine($"Actual format: {format.nChannels} channel {format.nSamplesPerSec} Hz {format.wBitsPerSample} au@R_502_410@");
为了测试它,我重命名了Microsoft Anna的Au@R_502_410@Formats注册表项HKLM / Software / Wow6432Node / Microsoft / Speech / Voices / Tokens / MS-Anna-1033-20-Dsk / Attributes,导致SpeechSynthesizer.Voice.SupportedAu@R_502_410@Formats在查询时没有元素.以下是这种情况下的输出:
0 formats are claimed as supported. Actual format: 1 channel 16000 Hz 16 au@R_502_410@