From d29993048d724fe7bab6970e4e55277b8047d6d2 Mon Sep 17 00:00:00 2001 From: rover0811 Date: Mon, 12 May 2025 16:42:11 +0900 Subject: [PATCH] Fix: Enable support for WebSocket streaming in client. Added the `use_wss` parameter to allow the client to handle WebSocket-based streaming. This enhances flexibility for real-time transcription scenarios. --- whisper_live/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/whisper_live/client.py b/whisper_live/client.py index 6a751a0..4429d24 100644 --- a/whisper_live/client.py +++ b/whisper_live/client.py @@ -745,6 +745,7 @@ class TranscriptionClient(TranscriptionTeeClient): model, srt_file_path=output_transcription_path, use_vad=use_vad, + use_wss=use_wss, log_transcription=log_transcription, max_clients=max_clients, max_connection_time=max_connection_time,