Browse Source

README.md

gram-cli 7 months ago
parent
commit
edb9e50635
2 changed files with 2 additions and 1 deletions
  1. 1 0
      README.md
  2. 1 1
      public/main.js

+ 1 - 0
README.md

@@ -0,0 +1 @@
+uvicorn stt_whisper:app --host 0.0.0.0 --port 8000

+ 1 - 1
public/main.js

@@ -6,7 +6,7 @@ import { elements } from './elements.js';
 
 // 시작버튼 클릭
 elements.startBtn.addEventListener('click', async () => {
-    WebSocketManager.init('ws://localhost:8000/audio-stream');
+    WebSocketManager.init('ws://jonghyun2.site:8000/audio-stream');
     await AudioManager.initWAVMediaRecorder();
     UIManager.onStart();
 });