only google

This commit is contained in:
Mario Gonzalez Gil 2023-11-27 18:27:06 +01:00
parent ec19628296
commit eb87a8ae65
1 changed files with 8 additions and 8 deletions

16
main.py
View File

@ -1,4 +1,4 @@
import whisper
#import whisper
import time
from google.cloud import speech_v1
from google.cloud.speech_v1 import types
@ -16,13 +16,13 @@ class Response(BaseModel):
encoding:str
model = whisper.load_model("medium")
@app.post("/voice2txt/")
def calculate_api(response: Response):
path = response.path
t=time.time()
result = model.transcribe(path)["text"]
return {"message": result,"time":time.time()-t}
#model = whisper.load_model("medium")
#@app.post("/voice2txt/")
#def calculate_api(response: Response):
#path = response.path
#t=time.time()
#result = model.transcribe(path)["text"]
#return {"message": result,"time":time.time()-t}
@app.post("/voice2txtGoogle/")