From 1453c3ba3ce2e7a5b6b81bbada2b6d0206d456fe Mon Sep 17 00:00:00 2001 From: ltadeu6 Date: Mon, 8 Jun 2026 17:51:41 -0300 Subject: [PATCH] =?UTF-8?q?tweak:=20raise=20VERSE=5FGAP=5FSECS=202.0s=20?= =?UTF-8?q?=E2=86=92=205.0s=20to=20avoid=20splitting=20within-verse=20line?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- luz-musica.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luz-musica.py b/luz-musica.py index 203f943..d884c3b 100644 --- a/luz-musica.py +++ b/luz-musica.py @@ -199,7 +199,7 @@ def start_control_server() -> ThreadingHTTPServer: return server -VERSE_GAP_SECS = 2.0 # gap between lines that splits a verse +VERSE_GAP_SECS = 5.0 # gap between lines that splits a verse INTER_VERSE_CAP = 8.0 # how long to keep last line of a verse visible _LRC_TS = re.compile(r'\[(\d{1,2}):(\d{2}(?:\.\d+)?)\]')