PowerShell 技能连载 - 语音之周:更改讲述人的语音
在前一个技能中我们演示了如何使用语音转换器来念出文本。以下是查找您系统中安装的语言的方法:
1 | #requires -Version 2.0 |
结果类似如下:
1 | Culture Name Gender Age |
用这行代码可以返回缺省的语音:
1 | $speak.Voice |
假设您的系统安装了多个语音,以下是选择一个不同语音的方法。只需要传入您想使用的语音名字。这个例子在德文 Windows 10 系统上使用德语语音引擎:
1 | #requires -Version 2.0 |
PowerShell 技能连载 - 语音之周:更改讲述人的语音
http://blog.vichamp.com/2017/01/27/speech-week-using-different-voices-with-speech-synthesizer/