当前位置:AIGC资讯 > AIGC > 正文

语音识别接入openai的Whisper接口,手把手保姆级教程,chatgpt的接口

据说这货已经是地表x强的语音识别了??


有人说“在Whisper 之前,英文语音识别方面,Google说第二,没人敢说第一——当然,我后来发现Amazon的英文语音识别也非常准,基本与Google看齐。
在中文(普通话)领域,讯飞也很能打,讯飞语音输入法,中英文夹杂、方言识别都很牛。
但Whisper 出现后——确切地说是OpenAI放出Whisper API后。什么英文、中文、中英文混杂、甚至包括日语(你们懂的)、土耳其语,都能识别。
不知真假
直接上代码用起来:

import os
import openai
import requests
import time
import json
import time

API_SECRET_KEY = "你在智增增获取的api_key";
BASE_URL = "http://flag.smarttrot.com/index.php/api/v1"; #智增增的base_url

# audio_transcriptions
def audio_transcriptions(file_name):
    openai.api_key = API_SECRET_KEY
    openai.api_base = BASE_URL
    audio_file = open(file_name, "rb")
    resp = openai.Audio.transcribe("whisper-1", audio_file)
    json_str = json.dumps(resp, ensure_ascii=False)
    print(json_str)

if __name__ == '__main__':
    start = time.time();
    #audio_transcriptions("1.wav");
    translation("1.wav");
    end = time.time()
    print('本次处理时间(s): ', end - start)
 

 实测效果确实很惊艳
最后附上github地址:https://github.com/xing61/xiaoyi-robot

拿走不谢

更新时间 2024-06-06