本文主要是介绍获取自己电脑系统中的语音,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
import re
import pyttsx3def voice_list():# 创建对象engine = pyttsx3.init()# 获取当前语音声音的详细信息,并试听语音voices = engine.getProperty('voices')# 從語音信息是提取機器人姓名並試音v = 0 # 语音索引号list_v = []for voice in voices:# print(f'语音声音详细信息:{voice}')# print(type(voice))# str1 = str(voice)[82:100]str1 = str(voice)[100:140].lstrip() # 將多行語音信息提取部分並去掉左空格# print(v, '号', str1)# print(type(str1))pattern = r" (.*?) " # 匹配規則:匹配兩者之间的内容str2 = re.search(pattern, str1).group(1)str3 = str(voice)[50:100].lstrip()if 'CN' in str3:str3 = '普通话'str4 = '我会说'if 'HK' in str3:str3 = '粤语'str4 = '我会说'if 'TW' in str3:str3 = '国语'str4 = '我会说'if 'EN' in str3:str3 = 'English'str4 = 'I am the ',v,'voice robot, and my name is ',str2,'I can speak'txt_v = str(v)+'号'+str2+'('+str3+')'# print(txt_v)v = v + 1list_v.append(txt_v)return list_vdef audition():# 创建对象engine = pyttsx3.init()# 获取当前语音速率rate = engine.getProperty('rate')# print(f'语音速率:{rate}')# 设置新的语音速率engine.setProperty('rate', 150)# 获取当前语音音量volume = engine.getProperty('volume')# print(f'语音音量:{volume}')# 设置新的语音音量,音量最小为 0,最大为 1engine.setProperty('volume', 1.0)# 获取当前语音声音的详细信息,并试听语音voices = engine.getProperty('voices')list_v = voice_list()for v in range(len(list_v)):engine.setProperty('voice', voices[v].id)engine.say("大家好,我是语音机器人%s" % (list_v[v]))print("大家好,我是语音机器人%s" % (list_v[v]))engine.runAndWait()audition() # 试听语音
上述代码能试听你的电脑系统安装的语音种类。
考试指令系统下载链接:https://pan.baidu.com/s/11x9fS1gUEPCd6w15KHCxSw?pwd=zvw3
提取码:zvw3
极域电子教室座位表程序下载链接:https://pan.baidu.com/s/1dvW5q9G53prkUDVcO6uffA?pwd=w3jp
照片插入电子表格程序链接:https://pan.baidu.com/s/1dvW5q9G53prkUDVcO6uffA?pwd=w3jp
提取码:w3jp
这篇关于获取自己电脑系统中的语音的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!