bugfix
This commit is contained in:
parent
2becd0724b
commit
1d2af1a159
@ -1,3 +1,4 @@
|
|||||||
|
import aiohttp
|
||||||
from appPublic.dictObject import DictObject
|
from appPublic.dictObject import DictObject
|
||||||
from appPublic.oauth_client import OAuthClient
|
from appPublic.oauth_client import OAuthClient
|
||||||
|
|
||||||
@ -35,8 +36,14 @@ opts = {
|
|||||||
async def asr(a_file):
|
async def asr(a_file):
|
||||||
oc = OAuthClient(DictObject(**opts))
|
oc = OAuthClient(DictObject(**opts))
|
||||||
with open(a_file, 'rb') as f:
|
with open(a_file, 'rb') as f:
|
||||||
r = await oc("http://open-computing.cn", "asr", {"audio_file":f})
|
async with aiohttp.ClientSession() as session:
|
||||||
print(f'{r=}')
|
async with session.post("http://open-computing.cn/asr/generate", data={
|
||||||
|
"model":"whisper",
|
||||||
|
"audio_file":f
|
||||||
|
}) as response:
|
||||||
|
r = await response.json()
|
||||||
|
print(f'{r=}')
|
||||||
|
return r
|
||||||
"""
|
"""
|
||||||
segments, info = model.transcribe(a_file, beam_size=5)
|
segments, info = model.transcribe(a_file, beam_size=5)
|
||||||
txt = ''
|
txt = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user