WIN10设置让小娜朗读文本

WIN10设置让小娜朗读文本

1、首先是打开控制面板,可以按住win+R组合键出现运行窗口,如下图所示。

2、然后在命令输入窗口输入control,即可进入到控制面板了,如下图所示。

3、当进入到控制面板后,选择“外观和个性化”选项,如下图所示。

4、在右边一栏选择“轻松使用设置中心”选项,如下图所示。

5、我们选择轻松使用设置中心下的“适应弱视”进入到下一步的设置,如下图所示。

6、然后选择朗读文本和描述下的“启动音频描述”就可以聆听对视频内容的描述了。

7、我们也可以选择启动讲述功能,启动该功能后即可朗读屏幕上的任何文本了,如下图所示。

温馨提示:答案为网友推荐,仅供参考
第1个回答  2018-02-02

1、把下面的代码复制为.ps1文件保存好,打开PowerShell(管理员),把执行.ps1文件。当然也可以复制之后直接执行命令,都是一样的效果。

    01= "HKLM:\SOFTWARE\Microsoft\Speech_OneCore\Voices\Tokens\MSTTS_V110_zhCN_HongyuM"

    02= "HKLM:\SOFTWARE\Microsoft\Speech_OneCore\Voices\Tokens\MSTTS_V110_zhCN_HongyuM\Attributes"

    03= "HKLM:\SOFTWARE\Microsoft\Speech\Voices\Tokens\MSTTS_V110_zhCN_HongyuM"

    04= "HKLM:\SOFTWARE\Microsoft\Speech\Voices\Tokens\MSTTS_V110_zhCN_HongyuM\Attributes"

    05New-Item -Path ,,,

    06New-ItemProperty -Path , -Name "(default)" -PropertyType string -Value "Microsoft Hongyu Mobile - Chinese (Simplified, PRC)"

    07New-ItemProperty -Path , -Name LangDataPath -PropertyType string -Value "%windir%\\Speech_OneCore\\Engines\\TTS\\zh-CN\\MSTTSLoczhCN.dat"

    08New-ItemProperty -Path , -Name LangUpdateDataDirectory -PropertyType string -Value "%SystemDrive%\\Data\\SharedData\\Speech_OneCore\\Engines\\TTS\\zh-CN"

    09New-ItemProperty -Path , -Name VoicePath -PropertyType string -Value "%windir%\\Speech_OneCore\\Engines\\TTS\\zh-CN\\M2052Hongyu"

    10New-ItemProperty -Path , -Name VoiceUpdateDataDirectory -PropertyType string -Value "%SystemDrive%\\Data\\SharedData\\Speech_OneCore\\Engines\\TTS\\zh-CN"

    11New-ItemProperty -Path , -Name 804 -PropertyType string -Value "Microsoft Hongyu Mobile - Chinese (Simplified, PRC)"

    12New-ItemProperty -Path , -Name CLSID -PropertyType string -Value "{179F3D56-1B0B-42B2-A962-59B7EF59FE1B}"

    13New-ItemProperty -Path , -Name Version -PropertyType string -Value "11.0"

    14New-ItemProperty -Path , -Name Language -PropertyType string -Value "804"

    15New-ItemProperty -Path , -Name Gender -PropertyType string -Value "Female"

    16New-ItemProperty -Path , -Name Age -PropertyType string -Value "Adult"

    17New-ItemProperty -Path , -Name DataVersion -PropertyType string -Value "11.0.2013.1022"

    18New-ItemProperty -Path , -Name SharedPronunciation -PropertyType string -Value ""

    19New-ItemProperty -Path , -Name Name -PropertyType string -Value "Microsoft Hongyu Mobile"

    20New-ItemProperty -Path , -Name Vendor -PropertyType string -Value "Microsoft"

    21New-ItemProperty -Path , -Name PersonalAssistant -PropertyType string -Value "1"

    复制代码

    2、接下来打开“控制面板”,找到“语音识别”,点击左侧窗口中的“文本到语音转换”,在“语音选择”框中选择“Microsoft Hongyu Mobile - Chinese (Simplified, PRC)”,然后单击确定按钮,你就可以让微软小娜为你阅读文本了。阅读文本内容可以使用带有文本阅读功能的文本编辑器,或者使用专门的小说阅读器,大家自己选一个自己喜欢的就行了。

    图3:选择小娜的语音

    3、下面贴一段用PowerShell阅读小说的代码,同样保存为.ps1文件,然后在.ps1文件上右键,选择“使用“使用PowerShell运行”,之后把txt小说拖到PowerShell窗口中,回车,小娜就会自动为你朗读小说了,再次回车就会退出朗读!

    01= Read-Host -Prompt "把小说拖到此处并回车开始朗读"

    02= New-Object -ComObject SAPI.SpVoice

    03.Speak(,5)

    04Read-Host -Prompt "回车退出朗读"

    复制代码

本回答被网友采纳
第2个回答  2018-01-31
你可以开启读屏,只要你鼠标移到文字上时,她就会读了。
相似回答