fix(video2srt): disable max-len by default

This commit is contained in:
2026-05-26 00:11:02 +02:00
parent b3bb425203
commit 6353833ddc
+2 -2
View File
@@ -168,8 +168,8 @@ def main() -> int:
p.add_argument(
"--max-len",
type=int,
default=84,
help="Max characters per SRT entry, 0 to disable (default: 84)",
default=0,
help="Force whisper to split entries at N characters (default: 0)",
)
p.add_argument(
"--line-len",