Python 音频生成器的实现示例


Posted in Python onDecember 24, 2019

使用Python生成不同声音的音频

第一步先去百度AI中注册账号,在控制台中创建语音技术应用,获取AppID,API Key,Secret Key

第二步 引用

from tkinter import *
from tkinter.filedialog import askdirectory
from aip import AipSpeech
from tkinter import ttk

第三步搭建窗体

root = Tk()
root.title('生成语音') 
path = StringVar()
pathmc=StringVar() 
pathnr=StringVar() 

Label(root,text = "保存路径:").grid(row = 0, column = 0)
Entry(root, textvariable = path).grid(row = 0, column = 1)
Button(root, text = "路径选择", command = selectPath).grid(row = 0, column = 3)  
Label(root,text = "语音名称:").grid(row = 2, column = 0)
Entry(root, textvariable = pathmc).grid(row = 2, column = 1)
Label(root,text = "语音内容:").grid(row = 3, column = 0)
Entry(root, textvariable = pathnr).grid(row = 3, column = 1)
Button(root, text = "保存", command = Save).grid(row = 4, column = 0)  
#下拉框
Label(root,text = "声音类型:").grid(row =1, column = 0)
number = StringVar()
 
numberChosen = ttk.Combobox(root, width=12, textvariable=number)
 
numberChosen['values'] = ('女声', '男声', '度逍遥', '度丫丫') 
 
numberChosen.grid(column=1, row=1) 
 
numberChosen.current(0) 

root.mainloop()

第四步 创建方法

#保存地址
def selectPath():
 path_ = askdirectory()
 path.set(path_)
 print(path_)
 生成音频的参数 
def Save():
   switch = {'女声': 0,       
     '男声': 1,       
     '度逍遥': 3, 
     '度丫丫': 4,  
     }

   lx=switch.get(number.get(),"0")
   yuying(path.get(),pathmc.get(),pathnr.get(),lx)
#生成音频   
def yuying(url,title,contain,lx):
  APP_ID = 'XXX'#百度AI中获得
  API_KEY = 'XXX'
  SECRET_KEY = 'XXX'
  client = AipSpeech(APP_ID, API_KEY, SECRET_KEY)
  result = client.synthesis(contain, 'zh', 1, {
  'vol': 5,'per':lx,'spd':2,# per  发音人选择, 0为女声,1为男声,3为情感合成-度逍遥,4为情感合成-度丫丫,默认为普通女  否 
  })
  if not isinstance(result, dict):
    with open(url+'\\'+title+'.mp3', 'wb') as f:
     f.write(result)

合起来的代码就是

from tkinter import *
from tkinter.filedialog import askdirectory
from aip import AipSpeech
from tkinter import ttk

def selectPath():
 path_ = askdirectory()
 path.set(path_)
 print(path_)
def Save():
   switch = {'女声': 0,       
     '男声': 1,       
     '度逍遥': 3, 
     '度丫丫': 4,  
     }

   lx=switch.get(number.get(),"0")
   yuying(path.get(),pathmc.get(),pathnr.get(),lx)
def yuying(url,title,contain,lx):
  APP_ID = 'XXX'#百度AI中获得
  API_KEY = 'XXX'
  SECRET_KEY = 'XXX'
  client = AipSpeech(APP_ID, API_KEY, SECRET_KEY)
  result = client.synthesis(contain, 'zh', 1, {
  'vol': 5,'per':lx,'spd':2,# per  发音人选择, 0为女声,1为男声,3为情感合成-度逍遥,4为情感合成-度丫丫,默认为普通女  否 
  })
  if not isinstance(result, dict):
    with open(url+'\\'+title+'.mp3', 'wb') as f:
     f.write(result) 

root = Tk()
root.title('生成语音') 
path = StringVar()
pathmc=StringVar() 
pathnr=StringVar() 

Label(root,text = "保存路径:").grid(row = 0, column = 0)
Entry(root, textvariable = path).grid(row = 0, column = 1)
Button(root, text = "路径选择", command = selectPath).grid(row = 0, column = 3)  
Label(root,text = "语音名称:").grid(row = 2, column = 0)
Entry(root, textvariable = pathmc).grid(row = 2, column = 1)
Label(root,text = "语音内容:").grid(row = 3, column = 0)
Entry(root, textvariable = pathnr).grid(row = 3, column = 1)
Button(root, text = "保存", command = Save).grid(row = 4, column = 0)  

 
Label(root,text = "声音类型:").grid(row =1, column = 0)
number = StringVar()
 
numberChosen = ttk.Combobox(root, width=12, textvariable=number)
 
numberChosen['values'] = ('女声', '男声', '度逍遥', '度丫丫') 
 
numberChosen.grid(column=1, row=1) 
 
numberChosen.current(0) 

root.mainloop()

效果图

Python 音频生成器的实现示例

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
基于python yield机制的异步操作同步化编程模型
Mar 18 Python
浅谈Python peewee 使用经验
Oct 20 Python
利用python打开摄像头及颜色检测方法
Aug 03 Python
python-序列解包(对可迭代元素的快速取值方法)
Aug 24 Python
python中@property和property函数常见使用方法示例
Oct 21 Python
Python3.x+迅雷x 自动下载高分电影的实现方法
Jan 12 Python
使用wxpy实现自动发送微信消息功能
Feb 28 Python
解决windows上安装tensorflow时报错,“DLL load failed: 找不到指定的模块”的问题
May 20 Python
python能做哪方面的工作
Jun 15 Python
keras的三种模型实现与区别说明
Jul 03 Python
Keras模型转成tensorflow的.pb操作
Jul 06 Python
使用python爬取抖音app视频的实例代码
Dec 01 Python
Python concurrent.futures模块使用实例
Dec 24 #Python
Python hmac模块使用实例解析
Dec 24 #Python
Python hashlib模块实例使用详解
Dec 24 #Python
Python实现使用dir获取类的方法列表
Dec 24 #Python
django数据模型on_delete, db_constraint的使用详解
Dec 24 #Python
Python中filter与lambda的结合使用详解
Dec 24 #Python
节日快乐! Python画一棵圣诞树送给你
Dec 24 #Python
You might like
PHP中使用json数据格式定义字面量对象的方法
2014/08/20 PHP
浅谈PHP中new self()和new static()的区别
2017/08/11 PHP
前端开发的开始---基于面向对象的Ajax类
2010/09/17 Javascript
js动态创建、删除表格示例代码
2013/08/07 Javascript
js创建对象的方式总结
2015/01/10 Javascript
浅谈关于JavaScript API设计的一些建议和准则
2015/06/24 Javascript
Bootstrap每天必学之缩略图与警示窗
2015/11/29 Javascript
js当前页面登录注册框,固定div,底层阴影的实例代码
2016/10/04 Javascript
jQuery插件开发发送短信倒计时功能代码
2017/05/09 jQuery
Vue中全局变量的定义和使用
2019/06/05 Javascript
微信小程序实现转盘抽奖
2020/09/21 Javascript
vue element实现表格合并行数据
2020/11/30 Vue.js
[04:39]显微镜下的DOTA2第十三期—Pis卡尔个人秀
2014/04/04 DOTA
忘记ftp密码使用python ftplib库暴力破解密码的方法示例
2014/01/22 Python
详谈python http长连接客户端
2017/06/12 Python
Python搭建FTP服务器的方法示例
2018/01/19 Python
Python实现查看系统启动项功能示例
2018/05/10 Python
python 调用钉钉机器人的方法
2019/02/20 Python
python 计算平均平方误差(MSE)的实例
2019/06/29 Python
django中的图片验证码功能
2019/09/18 Python
Html5 canvas画图白板踩坑
2020/06/01 HTML / CSS
中国最大的名表商城:万表网
2016/08/29 全球购物
意大利消费电子产品购物网站:SLG Store
2019/12/26 全球购物
自我鉴定怎么写
2013/12/05 职场文书
新品发布会主持词
2014/04/02 职场文书
土地租赁意向书
2014/07/30 职场文书
个人作风建设剖析材料
2014/10/11 职场文书
师德师风自查材料
2014/10/14 职场文书
大学生档案自我鉴定(2篇)
2014/10/14 职场文书
2014年党风廉政建设工作总结
2014/11/19 职场文书
2014年班级工作总结范文
2014/12/23 职场文书
升职自我推荐信范文
2015/03/25 职场文书
幼儿园小班教学反思
2016/03/03 职场文书
《没有任何借口》读后感:完美的执行能力
2020/01/07 职场文书
CSS3 制作精美的定价表
2021/04/06 HTML / CSS
vue实现列表拖拽排序的示例代码
2022/04/08 Vue.js