tweak: raise VERSE_GAP_SECS 2.0s → 5.0s to avoid splitting within-verse lines

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
ltadeu6 2026-06-08 17:51:41 -03:00
parent ee563f9ffb
commit 1453c3ba3c
No known key found for this signature in database
GPG key ID: FB9FDAB6B6F3418D

View file

@ -199,7 +199,7 @@ def start_control_server() -> ThreadingHTTPServer:
return server 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 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+)?)\]') _LRC_TS = re.compile(r'\[(\d{1,2}):(\d{2}(?:\.\d+)?)\]')