最后编辑于2019-12
from aip import AipSpeech
import os
""" 你的 APPID AK SK """
APP_ID = ''
API_KEY = ''
SECRET_KEY = ''
client = AipSpeech(APP_ID, API_KEY, SECRET_KEY)
# 读取文件
def get_file_content(filePath):
with open(filePath, 'rb') as fp:
return fp.read()
while True:
#os.system('arecord -D "plughw:1" -f S16_LE -r 16000 -d 8 voice.pcm')#录音
# 识别本地文件
a = client.asr(get_file_content('voice.pcm'), 'pcm', 16000, {'dev_pid': 1536,})
#print(a)
b=str(a['result'])
print(b[2:-2])
收藏
点赞
0
个赞
请登录后评论
TOP
切换版块