Quellcode durchsuchen

git pull origin masterMerge branch 'master' of https://gitlab.jonghyun2.site/duzon/whisper-back git fetch --all --prune# Please enter a commit message to explain why this
merge is necessary, git push# especially if it merges an updated upstream into a topic branch.

gram-cli vor 7 Monaten
Ursprung
Commit
b851a99e94
4 geänderte Dateien mit 4 neuen und 2 gelöschten Zeilen
  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 = {}