当前位置:   article > 正文

基于科大讯飞开放平台、腾讯AI开放平台、百度智能云以及阿里云的语音转文字+文本翻译API调用_科大讯飞语音转文字api

科大讯飞语音转文字api

实习的时候在公司做的项目的一部分----可能会有丢丢缺陷,但是能跑,记录一下。

一、科大讯飞的讯飞开放平台——讯飞开放平台-以语音交互为核心的人工智能开放平台

这里用的是语音听写(流式)的API和机器翻译的API。语音听写支持多种语言,但是听写下来就是该种语言的文字,比如中文听写下来就是中文、日文听写下来就是日文,没有自动翻译的功能,所以我把这个API和机器翻译的连用,这样输入小语种的语言,输出的就可以是指定的语言(一般英文或中文)方便后续的处理,比如文字转命令,或者可以当个语音翻译器来用。

1、首先配置环境:python(我用的3.9)以及pycharm(社区版就足够了)、pyaudio、portaudio、keyboard、chardet、websocket-client==0.57.0、pycparser==2.19、six==1.12.0、websocket==0.2.1,ffmpeg-python(一定是这个包,有一点不一样都不行、会报错!!!)

2、需要在讯飞平台注册后的服务接口认证信息:APPID、APISecret、APIKey这三个码有用。得到这些后去官网开通相应的功能,小语种需逐个开通才能使用,有免费额度,足够了。注意中英文和小语种识别的URL不同!!语音每次识别不超过1分钟,机器翻译的字符每次不超过5000个,足够了。

3、录音。

调用pyaudio录制音频供语音识别。

  1. import keyboard
  2. import pyaudio, wave
  3. def record(filename):
  4. p = pyaudio.PyAudio()
  5. FORMAT = pyaudio.paInt16
  6. CHANNELS = 1
  7. RATE = 16000
  8. CHUNK = 1024
  9. stream = p.open(rate=RATE,
  10. format=FORMAT,
  11. channels=CHANNELS,
  12. input=True,
  13. frames_per_buffer=CHUNK)
  14. frames = []
  15. print("按下空格键开始录制音频,按下s键停止录音。")
  16. recording = False
  17. while True:
  18. # key = keyboard.read_key()
  19. if keyboard.is_pressed(' '):
  20. if not recording:
  21. recording = True
  22. print("开始录音...")
  23. if keyboard.is_pressed('s') and recording:
  24. recording = False
  25. print("录音结束。")
  26. break
  27. if recording:
  28. data = stream.read(CHUNK)
  29. frames.append(data)
  30. else:
  31. pass
  32. if not stream.is_active():
  33. print('录音意外停止!')
  34. break
  35. else:
  36. pass
  37. wf = wave.open(filename, 'wb')
  38. wf.setframerate(RATE)
  39. wf.setnchannels(CHANNELS)
  40. wf.setsampwidth(p.get_sample_size(FORMAT))
  41. wf.writeframes(b''.join(frames))
  42. stream.stop_stream() # 可能不需要这部操作仅close可解决
  43. stream.close()
  44. wf.close()
  45. p.terminate() # 仅在程序退出时使用,完全关闭pyaudio

4、语音听写

相关API参数——语音听写(流式版)WebAPI 文档 | 讯飞开放平台文档中心

可以在官网控制台添加热词,增大该词识别的准确率。在上面链接下载python语言的demo,然后填写相关API参数即可。

官方提供的代码

GitHub - TencentCloud/tencentcloud-speech-sdk-python

主函数

  1. # 音频转文字部分的测试文件
  2. from ifly.record_voice import record
  3. from ifly.ifly_a2t import audio_to_text, clear_text
  4. file = 'user_voice.wav' # 语音录制,识别文件
  5. # 录音转文字
  6. record(file) # 录制音频
  7. txt_str = audio_to_text(file) # 语音识别
  8. print(txt_str) # 打印识别结果

其中record即前面的录音函数, audio_to_text函数是上面语音听写官方下载的文件里自带的。

5、机器翻译

相关API参数——机器翻译(新) API 文档 | 讯飞开放平台文档中心

 同样下载python语言的demo。

  1. from datetime import datetime
  2. from wsgiref.handlers import format_date_time
  3. from time import mktime
  4. import hashlib
  5. import base64
  6. import hmac
  7. from urllib.parse import urlencode
  8. import json
  9. import requests
  10. '''
  11. 1.机器翻译2.0,请填写在讯飞开放平台-控制台-对应能力页面获取的APPID、APISecret、APIKey。
  12. 2.目前仅支持中文与其他语种的互译,不包含中文的两个语种之间不能直接翻译。
  13. 3.翻译文本不能超过5000个字符,即汉语不超过15000个字节,英文不超过5000个字节。
  14. 4.此接口调用返回时长上有优化、通过个性化术语资源使用可以做到词语个性化翻译、后面会支持更多的翻译语种。
  15. '''
  16. APPId = ""
  17. APISecret = ""
  18. APIKey = ""
  19. # 术语资源唯一标识,请根据控制台定义的RES_ID替换具体值,如不需术语可以不用传递此参数
  20. RES_ID = "its_en_cn_word"
  21. # 翻译原文本内容
  22. TEXT = "科大讯飞"
  23. class AssembleHeaderException(Exception):
  24. def __init__(self, msg):
  25. self.message = msg
  26. class Url:
  27. def __init__(self, host, path, schema):
  28. self.host = host
  29. self.path = path
  30. self.schema = schema
  31. pass
  32. # calculate sha256 and encode to base64
  33. def sha256base64(data):
  34. sha256 = hashlib.sha256()
  35. sha256.update(data)
  36. digest = base64.b64encode(sha256.digest()).decode(encoding='utf-8')
  37. return digest
  38. def parse_url(requset_url):
  39. stidx = requset_url.index("://")
  40. host = requset_url[stidx + 3:]
  41. schema = requset_url[:stidx + 3]
  42. edidx = host.index("/")
  43. if edidx <= 0:
  44. raise AssembleHeaderException("invalid request url:" + requset_url)
  45. path = host[edidx:]
  46. host = host[:edidx]
  47. u = Url(host, path, schema)
  48. return u
  49. # build websocket auth request url
  50. def assemble_ws_auth_url(requset_url, method="POST", api_key="", api_secret=""):
  51. u = parse_url(requset_url)
  52. host = u.host
  53. path = u.path
  54. now = datetime.now()
  55. date = format_date_time(mktime(now.timetuple()))
  56. # print(date)
  57. # date = "Thu, 12 Dec 2019 01:57:27 GMT"
  58. signature_origin = "host: {}\ndate: {}\n{} {} HTTP/1.1".format(host, date, method, path)
  59. # print(signature_origin)
  60. signature_sha = hmac.new(api_secret.encode('utf-8'), signature_origin.encode('utf-8'),
  61. digestmod=hashlib.sha256).digest()
  62. signature_sha = base64.b64encode(signature_sha).decode(encoding='utf-8')
  63. authorization_origin = "api_key=\"%s\", algorithm=\"%s\", headers=\"%s\", signature=\"%s\"" % (
  64. api_key, "hmac-sha256", "host date request-line", signature_sha)
  65. authorization = base64.b64encode(authorization_origin.encode('utf-8')).decode(encoding='utf-8')
  66. # print(authorization_origin)
  67. values = {
  68. "host": host,
  69. "date": date,
  70. "authorization": authorization
  71. }
  72. return requset_url + "?" + urlencode(values)
  73. url = 'https://itrans.xf-yun.com/v1/its'
  74. body = {
  75. "header": {
  76. "app_id": APPId,
  77. "status": 3,
  78. "res_id": RES_ID
  79. },
  80. "parameter": {
  81. "its": {
  82. "from": "cn",
  83. "to": "en",
  84. "result": {}
  85. }
  86. },
  87. "payload": {
  88. "input_data": {
  89. "encoding": "utf8",
  90. "status": 3,
  91. "text": base64.b64encode(TEXT.encode("utf-8")).decode('utf-8')
  92. }
  93. }
  94. }
  95. request_url = assemble_ws_auth_url(url, "POST", APIKey, APISecret)
  96. headers = {'content-type': "application/json", 'host': 'itrans.xf-yun.com', 'app_id': APPId}
  97. # print(request_url)
  98. response = requests.post(request_url, data=json.dumps(body), headers=headers)
  99. # print(headers)
  100. # print(response)
  101. # print(response.content)
  102. tempResult = json.loads(response.content.decode())
  103. print('text字段Base64解码后=>' + base64.b64decode(tempResult['payload']['result']['text']).decode())

以上这段代码是官方提供的demo,把相关ID信息填写进去,与语音听写连用时注意,将TEXT内容换成语音识别生成的txt_str,还有需要注意语音听写的语言要和机器翻译的源语言是同一种语言,但是这里要注意一下两个API的语言参数不一样,比如在语音听写当中的英文表示为en_us,而机器翻译中是en。 

识别效果

二、腾讯AI开放平台——腾讯 AI 开放平台

依旧是以上的思路,用语音识别API+机器翻译API

1、配置环境 

pip install --upgrade tencentcloud-sdk-python

先这样下载吧,后续运行代码有版本不匹配再根据提示卸载再下载不冲突的版本即可。 

 2、依旧是去平台注册并开通相应的功能、略。

3、录音用上面讯飞用的那个代码就行、略。

4、语音识别

相关API及参数语音识别 实时语音识别(websocket)-实时语音识别相关接口-API 中心-腾讯云

官网提供的python代码下载地址GitHub - TencentCloud/tencentcloud-speech-sdk-python

5、机器翻译

文本翻译相关API及参数机器翻译 文本翻译-API接口-API 中心-腾讯云

  1. from tencentcloud.common import credential#这里需要安装腾讯翻译sdk
  2. from tencentcloud.common.profile.client_profile import ClientProfile
  3. from tencentcloud.common.profile.http_profile import HttpProfile
  4. from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
  5. from tencentcloud.tmt.v20180321 import tmt_client, models
  6. try:
  7. cred = credential.Credential("xxxxxxxx", "yyyyyyy")#"xxxx"改为SecretId,"yyyyy"改为SecretKey
  8. httpProfile = HttpProfile()
  9. httpProfile.endpoint = "tmt.tencentcloudapi.com"
  10. clientProfile = ClientProfile()
  11. clientProfile.httpProfile = httpProfile
  12. client = tmt_client.TmtClient(cred, "ap-beijing", clientProfile)
  13. req = models.TextTranslateRequest()
  14. req.SourceText = 'hello'#要翻译的语句
  15. req.Source ='en'#源语言类型
  16. req.Target ='ch'#目标语言类型
  17. req.ProjectId = 0
  18. resp = client.TextTranslate(req)
  19. data=json.loads(resp.to_json_string())
  20. print(data['TargetText'])
  21. except TencentCloudSDKException as err:
  22. print(err)

将两者连接起来的桥梁呢,就是text,语音识别的输出文本是机器翻译的源文本。还有要使两者的语言是一种语言别忘了,就酱。

三、基于百度智能云

1、配置相关环境

相关软件配置:python(测试时的版本为3.9)、pycharm(社区版就足够了)以及annaconda3

依赖包:websocket、keyboard、pyaudio

2、在官网百度智能云-云智一体深入产业注册账号并开通相应功能

3、代码

相关API参数:实时语音翻译 - 机器翻译 - 文档

需要在代码中填写注册的服务接口认证信息、源语言及目标语言。同样调用设备麦克风进行录音,将生成的语音文件供语音翻译识别并翻译。百度智能云可以直接调用语音翻译(直接一个接口实现语音识别以及文本翻译的功能)接口,不必像以上两个平台一样对两个API的参数进行转换。

 

四、基于阿里云

1、配置相关环境

相关软件配置:python(测试时的版本为3.9)、pycharm(社区版就足够了)以及annaconda3

依赖包:在终端运行pip install setuptools 、

              下载Python SDK alibabacloud-nls-python-sdk-1.0.0.zip、  

             进入SDK根目录使用如下命令安装SDK依赖:python -m pip install -r requirements.txt 、

             安装SDK: python -m pip install .

2、在官网阿里云登录 - 欢迎登录阿里云,安全稳定的云计算服务平台注册账号并开通相应功能

3、相关API参数

语音识别:实时语音识别接口说明_智能语音交互-阿里云帮助中心

 文本翻译:文本翻译_机器翻译-阿里云帮助中心

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/225484
推荐阅读
相关标签
  

闽ICP备14008679号