Make cutter report the only generated review report

This commit is contained in:
Melbar
2026-05-08 14:29:49 +02:00
parent e335fffe92
commit 10e27afc8d
3 changed files with 4 additions and 16 deletions
+1 -5
View File
@@ -9,7 +9,7 @@ Renders two editor-facing reports:
scene and segment info, score warnings, and rematch hints.
This report is the single source of truth for the video editor and is
designed to eventually replace the legacy match_report.html.
the only report that should be opened for review.
Usage (from project root):
python scripts/generate_cutter_report.py # stills + compare clips
@@ -1082,13 +1082,9 @@ def main() -> int:
)
(project_root / "CUTTER_REPORT.md").write_text(md, encoding="utf-8")
(project_root / "CUTTER_REPORT.html").write_text(html, encoding="utf-8")
legacy_path = project_root / "output" / "report" / "match_report.html"
legacy_path.parent.mkdir(parents=True, exist_ok=True)
legacy_path.write_text(html, encoding="utf-8")
print(f"Wrote {project_root / 'CUTTER_REPORT.md'}")
print(f"Wrote {project_root / 'CUTTER_REPORT.html'}")
print(f"Wrote {legacy_path}")
return 0