dahyedahye commited on
Commit
905c475
·
1 Parent(s): e7e586c
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ app = FastAPI()
10
  model = whisper.load_model("tiny") # "tiny", "base", "small", "medium", "large-v2" 등
11
 
12
  @app.post("/transcribe/")
13
- async def transcribe_video(
14
  file: UploadFile = File(...),
15
  language: str = Form("en") # 언어 선택 가능 (기본값: 영어)
16
  ):
 
10
  model = whisper.load_model("tiny") # "tiny", "base", "small", "medium", "large-v2" 등
11
 
12
  @app.post("/transcribe/")
13
+ def transcribe_video(
14
  file: UploadFile = File(...),
15
  language: str = Form("en") # 언어 선택 가능 (기본값: 영어)
16
  ):