资源简介
利用百度语音接口合成多人语音对话,注意分词的标点符号
代码片段和文件信息
from aip import AipSpeech
import os
import sys
import re
import time
APP_ID = ‘xxxxxxxxxxx‘
API_KEY = ‘xxxxxxxxxxxxxxxxxx‘
SECRET_KEY = ‘xxxxxxxxxxxxxxxxxxx‘
client = AipSpeech(APP_ID API_KEY SECRET_KEY)
def convert(fileaudio_name):
with open(file“r“encoding=“utf-8“) as file_object:
contents = file_object.read()
a = contents.split()
i = 0
while i < len(a):
tmp = a[i]
pattern = re.compile(‘([“(.*?)”])‘)
result1 = re.split(pattern tmp)
print(result1)
j = 0
while j < len(result1):
contest = result1[j]
print(contest)
if contest == ‘“‘:
txt1 = result1[j + 1]
prin
相关资源
- 百度图片识别
- python聊天机器人(语音识别、语义处
- python +headless+chrome 模拟搜索百度关键
- python 中英文翻译api request(百度)
- Python实现百度文库
- python实现 qq音乐/网易音乐/虾米/酷狗
- python 截图并识别图片中的文字(基于
- Python调用百度翻译接口
- python百度图片
- python爬取百度贴吧图片(图片到本地
- python爬取百度图片
- python爬虫百度图片(将网络图片采集
- Python项目案例开发从入门到实战源代
- 百度百科爬虫并利用Neo4j做知识图谱展
- 百度贴吧 爬虫 python
- Python-2019年百度的实体链指比赛ccks2
- fromTxtToFindText.py
- python3.6文字转语音
- Python爬虫爬取百度百科词条源码
- python爬取百度图片以及图像批量处理
- Python采集百度地图数据.zip
- python实战之百度新闻爬取.md
- python利用百度地图API进行地理编码将
- 基于百度地图的批量地址解析
- python爬虫--爬取百度百科字条python2和
- 百度api语音识别代码
- cnn +rnn +attention 以及CTC-loss融合的文字
- python 百度贴吧 爬虫
- 用python写的百度语音api实现语音识别
评论
共有 条评论