编程语音python,python语言程序设计基础

  编程语音python,python语言程序设计基础

  本文主要介绍如何用Python制作一个语音合成系统。文中的示例代码讲解的很详细,对我们学习Python很有帮助。感兴趣的朋友可以看看。

  00-1010后台语音合成系统编写步骤代码实现

  

目录

  我一直对语音合成系统很感兴趣,总想给自己合成一些内容,比如合成小说,把我下载的电子书播给我听等等。

  

背景

  其实是一个基于语音合成的工具。但是因为很多厂商都提供了API表单,这个东西的开发难度就大大降低了。只需要调用几个API就可以实现自己的语音合成工具。麻雀虽小,五脏俱全。说白了,这就是一个小型的语音合成系统。

  

语音合成系统

  首先,我们需要把它安装在我们的电脑上。

  AnacondaPython 3.7visual studio代码

  

准备工作

  这里我们选择讯飞开放平台的WebAPI接口。

  首先,我们到控制台创建一个应用程序。

  创建完成后,点击应用进入,有应用的详细栏目。

  点击左边的语音合成,然后进入下一级在线语音合成(流版本)。

  在右上角,我们需要3样东西:

  APPIDAPISecretAPIKey

  

步骤

  好了,我们来实现代码吧。首先,安装我们需要的两个库。

  pip安装web socket-客户端

  pip安装播放声音

  接下来,我们定义一个类play,它包含四个函数。

  课堂游戏:

  Def __init__(self): #初始化函数

  Def play _ sound(自带)3360 #播放音频功能

  Select _ vcn (self,* arg) : #选择下拉框设置扬声器。

  Def Yun _ TTS (self) : #用于语音合成

  这里需要填写刚刚从讯飞开放平台控制台获取的appid、appkey、appsecret。

  def __init__(self):

  自我。APP_ID=xxx #请填写您的appid。

  自我。API_KEY=xxx #请填写您自己的appkey

  自我。SECRET_KEY=xxx #请填写自己的appsecret。

  Self.root=tk。Tk() #初始化窗口

  Self.root.title(语音合成系统)#窗口名称

  Self.root.geometry(600x550) #设置窗口大小

  self.root.resizable(0,0)

  #自我。根。Resizable (width=True,height=true) #设置窗口是否可变,宽度是否恒定,高度是否可变,默认值是否为True。

  Self.lb=tk.label (self.root,text=请选择发音者)# label

  Self.tt=tk.text (self.root,width=77,height=30) #多行文本框

  self . CB=ttk.com Bobox(self . root,width=12) #下拉列表框

  #设置下拉列表框的内容

  Self.cb[values]=(甜美女声-小燕,善良男声-久久,知性女声-小平,萌童声-徐小宝,善良女声-小静)

  Self.cb.current(0) #将当前选择状态设置为0,这是第一项

  self.cb.bind(ComboboxSelected ,self.select_vcn)

  self . tk _ TTS _ file=tk . label(self . root,text=生成的文件名)

  self.b1=tk。按钮

  n(self.root, text=进行语音合成, width=10,height=1,command=self.xfyun_tts) #按钮

   self.tk_play=tk.Button(self.root, text=播放, width=10,height=1,command=self.play_sound) #按钮

   #各个组件的位置

   self.tk_tts_file.place(x=30,y=500)

   self.b1.place(x=300,y=500)

   self.tk_play.place(x=400,y=500)

   self.lb.place(x=30,y=30)

   self.cb.place(x=154,y=30)

   self.tt.place(x=30,y=60)

   self.root.mainloop()

  当选择了下拉列表,设置对应的发音人

  

def select_vcn(self,*arg):

   if self.cb.get()==甜美女声-小燕:

   self.vcn="xiaoyan"

   elif self.cb.get()==亲切男声-许久:

   self.vcn="aisjiuxu"

   elif self.cb.get()==知性女声-小萍:

   self.vcn="aisxping"

   elif self.cb.get()==可爱童声-许小宝:

   self.vcn="aisbabyxu"

   elif self.cb.get()==亲切女声-小婧:

   self.vcn="aisjinger"

   print(self.vcn)

  接下来我们来魔改讯飞自带的Python demo为从而更加方便的来使用

  

# -*- coding:utf-8 -*-

  #

  # author: iflytek

  #

  # 本demo测试时运行的环境为:Windows + Python3.7

  # 本demo测试成功运行时所安装的第三方库及其版本如下:

  # cffi==1.12.3

  # gevent==1.4.0

  # greenlet==0.4.15

  # pycparser==2.19

  # six==1.12.0

  # websocket==0.2.1

  # websocket-client==0.56.0

  # 合成小语种需要传输小语种文本、使用小语种发音人vcn、tte=unicode以及修改文本编码方式

  # 错误码链接:https://www.xfyun.cn/document/error-code (code返回错误码时必看)

  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #

  import websocket

  import datetime

  import hashlib

  import base64

  import hmac

  import json

  from urllib.parse import urlencode

  import time

  import ssl

  from wsgiref.handlers import format_date_time

  from datetime import datetime

  from time import mktime

  import _thread as thread

  import os

  import wave

  STATUS_FIRST_FRAME = 0 # 第一帧的标识

  STATUS_CONTINUE_FRAME = 1 # 中间帧标识

  STATUS_LAST_FRAME = 2 # 最后一帧的标识

  PCM_PATH = "./demo.pcm"

  class Ws_Param(object):

   # 初始化

   def __init__(self):

   pass

   def set_tts_params(self, text, vcn):

   if text != "":

   self.Text = text

   if vcn != "":

   self.vcn = vcn

   # 业务参数(business),更多个性化参数可在官网查看

   self.BusinessArgs = {"bgs":1,"aue": "raw", "auf": "audio/L16;rate=16000", "vcn": self.vcn, "tte": "utf8"}

   #使用小语种须使用以下方式,此处的unicode指的是 utf16小端的编码方式,即"UTF-16LE"”

   #self.Data = {"status": 2, "text": str(base64.b64encode(self.Text.encode(utf-16)), "UTF8")}

   self.Data = {"status": 2, "text": str(base64.b64encode(self.Text.encode(utf-8)), "UTF8")}

   def set_params(self, appid, apiSecret, apiKey):

   if appid != "":

   self.APPID = appid

   # 公共参数(common)

   self.CommonArgs = {"app_id": self.APPID}

   if apiKey != "":

   self.APIKey = apiKey

   if apiSecret != "":

   self.APISecret = apiSecret

   # 生成url

   def create_url(self):

   url = wss://tts-api.xfyun.cn/v2/tts

   # 生成RFC1123格式的时间戳

   now = datetime.now()

   date = format_date_time(mktime(now.timetuple()))

   # 拼接字符串

   signature_origin = "host: " + "ws-api.xfyun.cn" + "\n"

   signature_origin += "date: " + date + "\n"

   signature_origin += "GET " + "/v2/tts " + "HTTP/1.1"

   # 进行hmac-sha256进行加密

   signature_sha = hmac.new(self.APISecret.encode(utf-8), signature_origin.encode(utf-8),

   digestmod=hashlib.sha256).digest()

   signature_sha = base64.b64encode(signature_sha).decode(encoding=utf-8)

   authorization_origin = "api_key=\"%s\", algorithm=\"%s\", headers=\"%s\", signature=\"%s\"" % (

   self.APIKey, "hmac-sha256", "host date request-line", signature_sha)

   authorization = base64.b64encode(authorization_origin.encode(utf-8)).decode(encoding=utf-8)

   # 将请求的鉴权参数组合为字典

   v = {

   "authorization": authorization,

   "date": date,

   "host": "ws-api.xfyun.cn"

   }

   url = url + ? + urlencode(v)

   return url

  def on_message(ws, message):

   try:

   #print(message)

   try:

   message =json.loads(message)

   except Exception as e:

   print("111",e)

   code = message["code"]

   sid = message["sid"]

   audio = message["data"]["audio"]

   audio = base64.b64decode(audio)

   status = message["data"]["status"]

   print(code, sid, status)

   if status == 2:

   print("ws is closed")

   ws.close()

   if code != 0:

   errMsg = message["message"]

   print("sid:%s call error:%s code is:%s" % (sid, errMsg, code))

   else:

   with open(PCM_PATH, ab) as f:

   f.write(audio)

   except Exception as e:

   print("receive msg,but parse exception:", e)

  # 收到websocket错误的处理

  def on_error(ws, error):

   print("### error:", error)

  # 收到websocket关闭的处理

  def on_close(ws):

   print("### closed ###")

  # 收到websocket连接建立的处理

  def on_open(ws):

   def run(*args):

   d = {"common": wsParam.CommonArgs,

   "business": wsParam.BusinessArgs,

   "data": wsParam.Data,

   }

   d = json.dumps(d)

   print("------>开始发送文本数据")

   ws.send(d)

   if os.path.exists(PCM_PATH):

   os.remove(PCM_PATH)

   thread.start_new_thread(run, ())

  def text2pcm(appid, apiSecret, apiKey, text, vcn, fname):

   wsParam.set_params(appid, apiSecret, apiKey)

   wsParam.set_tts_params(text, vcn)

   websocket.enableTrace(False)

   wsUrl = wsParam.create_url()

   ws = websocket.WebSocketApp(wsUrl, on_message=on_message, on_error=on_error, on_close=on_close)

   ws.on_open = on_open

   ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE})

   pcm2wav(PCM_PATH, fname)

  def pcm2wav(fname, dstname):

   with open(fname, rb) as pcmfile:

   pcmdata = pcmfile.read()

   print(len(pcmdata))

   with wave.open(dstname, "wb") as wavfile:

   wavfile.setparams((1, 2, 16000, 0, NONE, NONE))

   wavfile.writeframes(pcmdata)

  wsParam = Ws_Param()

  最终一个语音合成系统就这样实现了。

  

  当前,各种云计算、云服务迅速发展,各大公司提供了丰富的资源,大大降低了人工智能开发的门槛,不需要懂语音合成的原理,竟然可以快速开发出一个语音合成工具出来!

  到此这篇关于基于Python编写一个语音合成系统的文章就介绍到这了,更多相关Python语音合成内容请搜索盛行IT软件开发工作室以前的文章或继续浏览下面的相关文章希望大家以后多多支持盛行IT软件开发工作室!

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

相关文章阅读

  • python语言基本语句用法总结大全,python语言基本语句用法总结怎么写
  • python语言基本语句用法总结大全,python语言基本语句用法总结怎么写,python语言基本语句用法总结
  • python是一种什么类型的计算机语言,python语言是一种什么类型的编程语言
  • Python的保留字符,python语言中的保留字
  • python的指数e怎么表示,指数函数在python语言中怎么表示
  • python语言合法的变量命名,在python中变量的命名要注意哪些问题
  • python变量命名可以用中文吗,下面哪一个不是python语言合法的变量命名
  • Python分词库,用python语言中文分词第三方库jieba对文件data
  • python中复数类型的实部和虚部都是浮点数,python语言中,复数类型中实数部分和虚数部分
  • 用python语言判断一个数是否为素数,Python判断是不是素数
  • python语句变量命名规则,python语言命名变量规则
  • 简述python语言程序的特点,以下关于python语言技术特点
  • matlab中for循环的用法例子,python语言for循环语句
  • Python主网站,python语言的官方网站
  • 用python开发的软件有哪些,哪些工具可以使用python语言开发软件
  • 留言与评论(共有 条评论)
       
    验证码: