[UC]임종현 7 months ago
parent
commit
a2f87cdc1b
4 changed files with 4 additions and 2 deletions
  1. 1 1
      .gitignore
  2. 2 0
      README.md
  3. BIN
      recorded_audio.wav
  4. 1 1
      stt_whisper.py

+ 1 - 1
.gitignore

@@ -11,4 +11,4 @@
 pyvenv.cfg
 .venv
 pip-selfcheck.json
-
+.idea

+ 2 - 0
README.md

@@ -0,0 +1,2 @@
+sudo apt update
+sudo apt install python3 python3-venv python3-pip -y

BIN
recorded_audio.wav


+ 1 - 1
stt_whisper.py

@@ -8,7 +8,7 @@ from fastapi import FastAPI, WebSocket, WebSocketDisconnect
 app = FastAPI()
 
 # Whisper 모델 로드 (tiny 모델로 실시간성 유지)
-model = whisper.load_model("tiny")
+model = whisper.load_model("base")
 
 # 클라이언트 관리
 clients = {}