From 9924a141b0b1266671915be12e21df6c8f4c5366 Mon Sep 17 00:00:00 2001 From: yum Date: Sat, 9 Sep 2023 23:18:32 -0700 Subject: Browser source now shows preview text as slightly transparent Improves viewer experience. --- Scripts/transcribe_v2.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Scripts') diff --git a/Scripts/transcribe_v2.py b/Scripts/transcribe_v2.py index 541ff23..df333bc 100644 --- a/Scripts/transcribe_v2.py +++ b/Scripts/transcribe_v2.py @@ -672,7 +672,8 @@ def transcriptionThread(ctrl: ThreadControl): commit = ctrl.committer.getDelta() if len(commit.delta) > 0 or len(commit.preview) > 0: - print(f"Transcript: {ctrl.transcript}{commit.delta}{commit.preview}") + print(f"Transcript: {ctrl.transcript}{commit.delta}") + print(f"Preview: {commit.preview}") if cfg["enable_debug_mode"]: print(f"commit latency: {commit.latency_s}", file=sys.stderr) print(f"commit thresh: {commit.thresh_at_commit}", -- cgit v1.2.3