Spaces:
Sleeping
Sleeping
File size: 964 Bytes
de95cc5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
import os
import sys
import time
import signal
import psutil
import io
from fastapi import FastAPI, Request, status, Form, UploadFile
from fastapi.staticfiles import StaticFiles
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel, Field
from fastapi.exceptions import RequestValidationError
from fastapi.responses import JSONResponse
import fn
app = FastAPI()
app.add_middleware(
CORSMiddleware,
allow_origins=['*'],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
fn.load_model('large-v3')
@app.post("/transcribe")
async def transcribe_audio(file: UploadFile = Form(...)):
try:
file_content = await file.read()
file_stream = io.BytesIO(file_content)
text_only, text_with_timestamps = speech_to_text(file_stream)
return {"transcription": text_only, "text_with_timestamps": text_with_timestamps}
except Exception as e:
return {"error": str(e)}
|