Spaces:
Sleeping
Sleeping
File size: 22,840 Bytes
eda316b f14fa4b eda316b 998cf81 eda316b f14fa4b eda316b f14fa4b eda316b 468d2a3 eda316b 468d2a3 eda316b 468d2a3 eda316b 998cf81 f14fa4b eda316b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 | """Subtitle helpers for the product pipeline."""
import logging
import math
import os
import re
from pathlib import Path
from humeo_core.schemas import Clip, RenderTheme, TranscriptWord
from humeo.transcript_align import (
clip_subtitle_words,
clip_words_to_srt_lines,
format_ass,
format_srt,
group_words_to_cue_chunks,
)
logger = logging.getLogger(__name__)
_NATIVE_HIGHLIGHT_FONT_NAME = "League Spartan"
_NATIVE_HIGHLIGHT_PURPLE = "&H00F65C8B"
_NATIVE_HIGHLIGHT_LEAD_SEC = 0.06
_NATIVE_HIGHLIGHT_MIN_DWELL_SEC = 0.16
_NATIVE_HIGHLIGHT_MIN_VALID_WORD_SEC = 0.035
_NATIVE_HIGHLIGHT_MAX_VALID_WORD_SEC = 1.65
_NATIVE_HIGHLIGHT_MAX_LINE_WIDTH_RATIO = 0.62
_NATIVE_HIGHLIGHT_SAFE_MARGIN_X = 150
_NATIVE_HIGHLIGHT_ROUNDING_OVERRIDE = r"\blur3.0"
_NATIVE_HIGHLIGHT_STOPWORDS = {
"a",
"all",
"an",
"and",
"are",
"as",
"at",
"be",
"but",
"by",
"for",
"from",
"i",
"if",
"in",
"is",
"it",
"of",
"on",
"or",
"so",
"that",
"the",
"their",
"there",
"they",
"this",
"to",
"was",
"we",
"with",
"you",
"your",
"has",
"have",
"had",
"been",
"being",
}
def _balance_reference_caption(text: str) -> str:
words = text.split()
if len(words) <= 5 and len(text) <= 28:
return text
best_idx = 1
best_delta = 10**9
for idx in range(1, len(words)):
left = " ".join(words[:idx])
right = " ".join(words[idx:])
line_penalty = 0
if len(words[:idx]) < 2 or len(words[idx:]) < 2:
line_penalty += 1000
delta = abs(len(left) - len(right)) + abs(len(words[:idx]) - len(words[idx:])) * 6 + line_penalty
if delta < best_delta:
best_delta = delta
best_idx = idx
return " ".join(words[:best_idx]) + "\n" + " ".join(words[best_idx:])
def _native_line_width(font, words) -> float:
return _text_width(font, " ".join(word.word for word in words))
def _native_highlight_partition_penalty(lines, font, max_line_width: float) -> float:
widths = [_native_line_width(font, line) for line in lines]
overflow = sum(max(0.0, width - max_line_width) for width in widths)
word_counts = [len(line) for line in lines]
total_words = sum(word_counts)
width_balance = (max(widths) - min(widths)) if len(widths) > 1 else 0.0
word_balance = (max(word_counts) - min(word_counts)) if len(word_counts) > 1 else 0
single_word_penalty = sum(260 for line in lines if len(line) == 1 and total_words > 3)
return (
overflow * 80.0
+ len(lines) * 120.0
+ width_balance * 0.16
+ word_balance * 120.0
+ single_word_penalty
)
def _candidate_native_highlight_partitions(words, max_lines: int):
n = len(words)
if n == 0:
return []
if max_lines <= 1 or n == 1:
return [[list(words)]]
out = [[list(words)]]
for first_break in range(1, n):
out.append([list(words[:first_break]), list(words[first_break:])])
if max_lines >= 3 and n >= 3:
for first_break in range(1, n - 1):
for second_break in range(first_break + 1, n):
out.append(
[
list(words[:first_break]),
list(words[first_break:second_break]),
list(words[second_break:]),
]
)
return out
def _split_native_highlight_lines(words, *, font=None, max_line_width: float | None = None):
if len(words) <= 3 and len(" ".join(word.word for word in words)) <= 22:
return [list(words)]
if len(words) < 2:
return [list(words)]
if font is not None and max_line_width is not None:
candidates = _candidate_native_highlight_partitions(words, max_lines=3)
return min(
candidates,
key=lambda lines: _native_highlight_partition_penalty(
lines,
font,
max_line_width,
),
)
best_idx = 1
best_delta = 10**9
for idx in range(1, len(words)):
left_words = words[:idx]
right_words = words[idx:]
left = " ".join(word.word for word in left_words)
right = " ".join(word.word for word in right_words)
line_penalty = 0
if len(left_words) < 2 or len(right_words) < 2:
line_penalty += 800
delta = abs(len(left) - len(right)) + abs(len(left_words) - len(right_words)) * 7 + line_penalty
if delta < best_delta:
best_delta = delta
best_idx = idx
return [list(words[:best_idx]), list(words[best_idx:])]
def _clean_native_highlight_token(text: str) -> str:
return re.sub(r"(^[^A-Za-z0-9$%#]+|[^A-Za-z0-9$%#]+$)", "", text or "")
def _native_highlight_span_score(words) -> float:
cleaned = [_clean_native_highlight_token(word.word) for word in words]
cleaned = [token for token in cleaned if token]
if not cleaned:
return -1e9
if all(token.lower() in _NATIVE_HIGHLIGHT_STOPWORDS for token in cleaned):
return -1e9
score = 0.0
for token in cleaned:
lower = token.lower()
if lower not in _NATIVE_HIGHLIGHT_STOPWORDS:
score += 2.0
if any(ch.isdigit() for ch in token) or "$" in token or "%" in token:
score += 3.0
if len(token) >= 6:
score += 0.8
if token.isupper() and len(token) > 1:
score += 0.6
if len(cleaned) == 2:
score -= 0.55
if any(any(ch.isdigit() for ch in token) or "$" in token or "%" in token for token in cleaned):
score += 1.1
elif cleaned[0].lower() in _NATIVE_HIGHLIGHT_STOPWORDS or cleaned[1].lower() in _NATIVE_HIGHLIGHT_STOPWORDS:
score -= 0.6
else:
score += 0.3
if len(" ".join(cleaned)) > 18:
score -= 0.6
return score
def _should_render_native_highlight_group(words) -> bool:
cleaned = [_clean_native_highlight_token(word.word) for word in words]
cleaned = [token for token in cleaned if token]
if not cleaned:
return False
return any(token.lower() not in _NATIVE_HIGHLIGHT_STOPWORDS for token in cleaned)
def _native_highlight_font_path() -> Path | None:
try:
import humeo_core
bundled = (
Path(humeo_core.__file__).resolve().parent
/ "assets"
/ "fonts"
/ "LeagueSpartan-Bold.ttf"
)
if bundled.is_file():
return bundled
except Exception:
pass
windows_fonts = Path(os.environ.get("WINDIR", r"C:\Windows")) / "Fonts"
for filename in ("arialbd.ttf", "Arialbd.ttf", "ARIALBD.TTF", "arial.ttf"):
path = windows_fonts / filename
if path.is_file():
return path
return None
def _text_width(font, text: str) -> float:
if not text:
return 0.0
if hasattr(font, "getlength"):
return float(font.getlength(text))
bbox = font.getbbox(text)
return float(bbox[2] - bbox[0])
def _text_height(font) -> int:
bbox = font.getbbox("Ag")
return max(1, int(round(bbox[3] - bbox[1])))
def _escape_ass_text(text: str) -> str:
return (
text.replace("\\", r"\\")
.replace("{", r"\{")
.replace("}", r"\}")
.replace("\n", r"\N")
)
def _native_highlight_overlay_text(line_words, highlight_idx: int) -> str:
parts: list[str] = []
for word_idx, word in enumerate(line_words):
if word_idx == highlight_idx:
parts.append(
f"{{\\rHighlight{_NATIVE_HIGHLIGHT_ROUNDING_OVERRIDE}}}"
f"{_escape_ass_text(word.word)}"
"{\\rInvisible}"
)
else:
parts.append(_escape_ass_text(word.word))
return " ".join(parts)
def _word_timing_weight(word: TranscriptWord) -> float:
token = _clean_native_highlight_token(word.word)
return max(0.65, min(2.2, len(token or word.word) / 5.5))
def _suspicious_native_highlight_timing(
words: list[TranscriptWord],
idx: int,
*,
clip_duration: float,
) -> bool:
word = words[idx]
start = float(word.start_time)
end = float(word.end_time)
if not (math.isfinite(start) and math.isfinite(end)):
return True
if start < -0.01 or end > clip_duration + 0.25:
return True
duration = end - start
if duration < _NATIVE_HIGHLIGHT_MIN_VALID_WORD_SEC:
return True
if duration > _NATIVE_HIGHLIGHT_MAX_VALID_WORD_SEC:
return True
if idx > 0:
prev = words[idx - 1]
if start < float(prev.start_time) - 0.03:
return True
if start < float(prev.end_time) - 0.35:
return True
if idx + 1 < len(words):
nxt = words[idx + 1]
if float(nxt.start_time) < start - 0.03:
return True
return False
def _repair_native_highlight_timings(
words: list[TranscriptWord],
*,
clip_duration: float,
) -> list[TranscriptWord]:
"""Repair obvious ASR word timestamp glitches before per-word highlighting.
This is intentionally conservative: clean Whisper/ElevenLabs timings pass
through almost unchanged, while zero-length, reversed, huge, or badly
overlapping word timings get interpolated between neighboring reliable words.
"""
if not words:
return []
clip_duration = max(0.0, float(clip_duration))
records: list[dict[str, object]] = []
for idx, word in enumerate(words):
start = max(0.0, min(clip_duration, float(word.start_time)))
end = max(0.0, min(clip_duration, float(word.end_time)))
records.append(
{
"word": word.word,
"start": start,
"end": end,
"bad": _suspicious_native_highlight_timing(
words,
idx,
clip_duration=clip_duration,
),
"weight": _word_timing_weight(word),
}
)
idx = 0
while idx < len(records):
if not records[idx]["bad"]:
idx += 1
continue
run_start = idx
while idx < len(records) and records[idx]["bad"]:
idx += 1
run_end = idx - 1
count = run_end - run_start + 1
left_time = (
float(records[run_start - 1]["end"])
if run_start > 0
else max(0.0, float(records[run_start]["start"]))
)
right_time = (
float(records[run_end + 1]["start"])
if run_end + 1 < len(records)
else min(clip_duration, max(left_time, float(records[run_end]["end"])))
)
weight_span = sum(float(r["weight"]) for r in records[run_start : run_end + 1]) * 0.13
min_span = max(0.11 * count, weight_span)
if right_time <= left_time + min_span:
right_time = min(clip_duration, left_time + min_span)
if right_time <= left_time:
right_time = min(clip_duration, left_time + max(0.08, 0.12 * count))
span = max(0.001, right_time - left_time)
weights = [float(r["weight"]) for r in records[run_start : run_end + 1]]
total_weight = max(0.001, sum(weights))
cursor = left_time
for offset, weight in enumerate(weights):
rec = records[run_start + offset]
next_cursor = (
right_time
if offset == count - 1
else cursor + span * (weight / total_weight)
)
rec["start"] = cursor
rec["end"] = max(cursor + 0.04, next_cursor)
cursor = float(rec["end"])
repaired: list[TranscriptWord] = []
prev_end = 0.0
for rec in records:
start = max(0.0, float(rec["start"]))
end = max(start + 0.02, float(rec["end"]))
if start < prev_end - 0.02:
start = prev_end
end = max(end, start + 0.04)
if clip_duration > 0.0:
end = min(clip_duration, end)
if end <= start:
start = max(0.0, min(start, clip_duration - 0.02))
end = min(clip_duration, start + 0.04)
repaired.append(TranscriptWord(word=str(rec["word"]), start_time=start, end_time=end))
prev_end = max(prev_end, end)
return repaired
def _native_highlight_word_windows(
words: list[TranscriptWord],
*,
lead_sec: float,
min_dwell_sec: float,
) -> list[tuple[float, float]]:
if not words:
return []
lead_sec = max(0.0, float(lead_sec))
min_dwell_sec = max(0.02, float(min_dwell_sec))
cue_start = max(0.0, words[0].start_time - lead_sec)
cue_end = max(words[-1].end_time, words[-1].start_time + min_dwell_sec)
starts: list[float] = []
for idx, word in enumerate(words):
start = max(cue_start, float(word.start_time) - lead_sec)
if idx > 0:
start = max(start, starts[-1] + 0.01)
starts.append(start)
windows: list[tuple[float, float]] = []
for idx, word in enumerate(words):
start = starts[idx]
natural_end = max(float(word.end_time), start + min_dwell_sec)
limit = starts[idx + 1] if idx + 1 < len(starts) else cue_end
end = min(natural_end, limit)
if end <= start:
end = min(limit, start + 0.01)
windows.append((start, max(start + 0.01, end)))
return windows
def _fmt_ass_time(seconds: float) -> str:
seconds = max(0.0, seconds)
hours = int(seconds // 3600)
minutes = int((seconds % 3600) // 60)
secs = seconds % 60
whole = int(secs)
cs = int(round((secs - whole) * 100))
if cs >= 100:
cs = 99
return f"{hours:d}:{minutes:02d}:{whole:02d}.{cs:02d}"
def _format_native_highlight_ass(
cue_chunks,
*,
play_res_x: int,
play_res_y: int,
font_size: int,
margin_v: int,
font_name: str,
highlight_lead_sec: float = _NATIVE_HIGHLIGHT_LEAD_SEC,
highlight_min_dwell_sec: float = _NATIVE_HIGHLIGHT_MIN_DWELL_SEC,
) -> str:
from PIL import ImageFont
font_path = _native_highlight_font_path()
if font_path is not None:
font = ImageFont.truetype(str(font_path), size=font_size)
else:
font = ImageFont.load_default()
line_height = max(font_size, _text_height(font) + 6)
line_gap = max(8, int(round(font_size * 0.08)))
bottom_anchor = play_res_y - margin_v
safe_margin_x = min(
int(round(play_res_x * 0.12)),
max(24, _NATIVE_HIGHLIGHT_SAFE_MARGIN_X),
)
max_line_width = min(
play_res_x * _NATIVE_HIGHLIGHT_MAX_LINE_WIDTH_RATIO,
play_res_x - (safe_margin_x * 2),
)
header = (
"[Script Info]\n"
"ScriptType: v4.00+\n"
f"PlayResX: {play_res_x}\n"
f"PlayResY: {play_res_y}\n"
"WrapStyle: 0\n"
"ScaledBorderAndShadow: yes\n"
"YCbCr Matrix: None\n"
"\n"
"[V4+ Styles]\n"
"Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, "
"OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, "
"ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, "
"Alignment, MarginL, MarginR, MarginV, Encoding\n"
f"Style: Base,{font_name},{font_size},&H00FFFFFF,&H000000FF,&H00101010,&H00000000,-1,0,0,0,100,100,-1,0,1,4,0,8,0,0,0,0\n"
f"Style: Highlight,{font_name},{font_size},&H00FFFFFF,&H000000FF,{_NATIVE_HIGHLIGHT_PURPLE},&H00000000,-1,0,0,0,100,100,-1,0,3,4,0,8,0,0,0,0\n"
f"Style: Invisible,{font_name},{font_size},&HFF000000,&H000000FF,&HFF000000,&HFF000000,-1,0,0,0,100,100,-1,0,1,0,0,8,0,0,0,0\n"
"\n"
"[Events]\n"
"Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text\n"
)
events: list[str] = []
for cue_words in cue_chunks:
if not cue_words:
continue
lines = _split_native_highlight_lines(
cue_words,
font=font,
max_line_width=max_line_width,
)
cue_windows = _native_highlight_word_windows(
cue_words,
lead_sec=highlight_lead_sec,
min_dwell_sec=highlight_min_dwell_sec,
)
block_height = len(lines) * line_height + max(0, len(lines) - 1) * line_gap
block_top = bottom_anchor - block_height
cue_start = cue_windows[0][0] if cue_windows else cue_words[0].start_time
cue_end = cue_windows[-1][1] if cue_windows else cue_words[-1].end_time
word_offset = 0
line_center_x = play_res_x / 2.0
for line_idx, line_words in enumerate(lines):
if not line_words:
continue
line_text = " ".join(word.word for word in line_words)
line_top = block_top + line_idx * (line_height + line_gap)
events.append(
"Dialogue: 1,"
f"{_fmt_ass_time(cue_start)},{_fmt_ass_time(cue_end)},Base,,0,0,0,,"
f"{{\\an8\\pos({line_center_x:.1f},{line_top:.1f})}}{_escape_ass_text(line_text)}"
)
for word_idx, word in enumerate(line_words):
cleaned = _clean_native_highlight_token(word.word)
if not cleaned:
continue
word_start, word_end = cue_windows[word_offset + word_idx]
events.append(
"Dialogue: 0,"
f"{_fmt_ass_time(word_start)},{_fmt_ass_time(word_end)},Invisible,,0,0,0,,"
f"{{\\an8\\pos({line_center_x:.1f},{line_top:.1f})}}"
f"{_native_highlight_overlay_text(line_words, word_idx)}"
)
word_offset += len(line_words)
return header + "\n".join(events) + ("\n" if events else "")
def generate_srt(
clip: Clip,
transcript: dict,
output_dir: Path,
*,
max_words_per_cue: int = 8,
max_cue_sec: float = 4.0,
) -> Path:
"""
Build an SRT file from word-level ASR aligned to this clip's timeline.
``transcript`` is the persisted ``transcript.json`` (segments with optional
per-word timestamps). Times are shifted so 0 = clip in-point.
"""
srt_path = output_dir / f"clip_{clip.clip_id}.srt"
aligned = clip_subtitle_words(transcript, clip)
lines = clip_words_to_srt_lines(
aligned.words,
max_words_per_cue=max_words_per_cue,
max_cue_sec=max_cue_sec,
)
srt_path.write_text(format_srt(lines), encoding="utf-8")
logger.info("Generated SRT: %s (%d cues)", srt_path, len(lines))
return srt_path
def generate_ass(
clip: Clip,
transcript: dict,
output_dir: Path,
*,
max_words_per_cue: int = 4,
max_cue_sec: float = 2.2,
play_res_x: int = 1080,
play_res_y: int = 1920,
font_size: int = 48,
margin_v: int = 160,
margin_h: int = 60,
font_name: str = "Arial",
render_theme: RenderTheme = RenderTheme.LEGACY,
native_highlight_lead_sec: float = _NATIVE_HIGHLIGHT_LEAD_SEC,
native_highlight_min_dwell_sec: float = _NATIVE_HIGHLIGHT_MIN_DWELL_SEC,
repair_word_timings: bool = True,
) -> Path:
"""Generate an ASS caption file tuned for direct libass rendering.
Unlike SRT → libass (default PlayResY=288), an ASS file with
``PlayResY = output_height`` means libass' scale factor is 1.0, so the
``font_size`` / ``margin_v`` arguments below are honest output pixels.
This is the root-cause fix for the "captions rendering in the middle of
the frame, four times too large" bug the user reported.
"""
ass_path = output_dir / f"clip_{clip.clip_id}.ass"
aligned = clip_subtitle_words(transcript, clip)
cue_words = max_words_per_cue
cue_sec = max_cue_sec
cue_font_size = font_size
cue_margin_v = margin_v
prefer_break_on_punctuation = False
min_words_before_break = 1
if render_theme == RenderTheme.REFERENCE_LOWER_THIRD:
cue_words = max(max_words_per_cue, 7)
cue_sec = max(max_cue_sec, 2.6)
cue_font_size = max(font_size, 52)
cue_margin_v = min(margin_v, 136)
prefer_break_on_punctuation = True
min_words_before_break = 5
elif render_theme == RenderTheme.NATIVE_HIGHLIGHT:
cue_words = 4
cue_sec = 1.45
cue_font_size = max(font_size, 80)
cue_margin_v = max(margin_v, 300)
prefer_break_on_punctuation = True
min_words_before_break = 3
aligned_words = aligned.words
if render_theme == RenderTheme.NATIVE_HIGHLIGHT and repair_word_timings:
aligned_words = _repair_native_highlight_timings(
aligned_words,
clip_duration=clip.duration_sec,
)
cue_chunks = group_words_to_cue_chunks(
aligned_words,
max_words_per_cue=cue_words,
max_cue_sec=cue_sec,
prefer_break_on_punctuation=prefer_break_on_punctuation,
min_words_before_break=min_words_before_break,
)
lines = [
(chunk[0].start_time, chunk[-1].end_time, " ".join(word.word for word in chunk))
for chunk in cue_chunks
]
if render_theme == RenderTheme.REFERENCE_LOWER_THIRD:
lines = [(start, end, _balance_reference_caption(text)) for start, end, text in lines]
ass_text = format_ass(
lines,
play_res_x=play_res_x,
play_res_y=play_res_y,
font_size=cue_font_size,
margin_v=cue_margin_v,
margin_h=margin_h,
font_name="Source Sans 3",
render_theme=render_theme,
)
elif render_theme == RenderTheme.NATIVE_HIGHLIGHT:
ass_text = _format_native_highlight_ass(
cue_chunks,
play_res_x=play_res_x,
play_res_y=play_res_y,
font_size=cue_font_size,
margin_v=cue_margin_v,
font_name=_NATIVE_HIGHLIGHT_FONT_NAME,
highlight_lead_sec=native_highlight_lead_sec,
highlight_min_dwell_sec=native_highlight_min_dwell_sec,
)
else:
ass_text = format_ass(
lines,
play_res_x=play_res_x,
play_res_y=play_res_y,
font_size=cue_font_size,
margin_v=cue_margin_v,
margin_h=margin_h,
font_name=font_name,
render_theme=render_theme,
)
ass_path.write_text(ass_text, encoding="utf-8")
logger.info("Generated ASS: %s (%d cues)", ass_path, len(lines))
return ass_path
|