PowerShell 技能连载 - 语音之周:更改讲述人的语音

在前一个技能中我们演示了如何使用语音转换器来念出文本。以下是查找您系统中安装的语言的方法:

1
2
3
4
5
6
#requires -Version 2.0
Add-Type -AssemblyName System.Speech
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.GetInstalledVoices() |
Select-Object -ExpandProperty VoiceInfo |
Select-Object -Property Culture, Name, Gender, Age

结果类似如下:

1
2
3
4
5
Culture Name                    Gender   Age
------- ---- ------ ---
en-US Microsoft Zira Desktop Female Adult
en-US Microsoft David Desktop Male Adult
de-DE Microsoft Hedda Desktop Female Adult

用这行代码可以返回缺省的语音:

1
$speak.Voice

假设您的系统安装了多个语音,以下是选择一个不同语音的方法。只需要传入您想使用的语音名字。这个例子在德文 Windows 10 系统上使用德语语音引擎:

1
2
3
4
5
#requires -Version 2.0
Add-Type -AssemblyName System.speech
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.SelectVoice('Microsoft Hedda Desktop')
$speak.Speak('Jetzt spreche ich deutsch.')

PowerShell 技能连载 - 语音之周:更改讲述人的语音

http://blog.vichamp.com/2017/01/27/speech-week-using-different-voices-with-speech-synthesizer/

作者

吴波

发布于

2017-01-27

更新于

2022-07-06

许可协议

评论