From aafd856ecc7adaf748c48a92ac412e70d71af3bd Mon Sep 17 00:00:00 2001 From: hbrain Date: Sun, 24 May 2026 22:49:03 +0000 Subject: [PATCH] Stop tracking AGENTS.md --- .gitignore | 3 +++ AGENTS.md | 10 ---------- movmaker.py | 2 +- 3 files changed, 4 insertions(+), 11 deletions(-) delete mode 100644 AGENTS.md diff --git a/.gitignore b/.gitignore index 7f6aa94..345f333 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,9 @@ input*/ media/ ffmpeg/ +# Assistant/project-local context +AGENTS.md + # OS/editor .DS_Store .vscode/ diff --git a/AGENTS.md b/AGENTS.md deleted file mode 100644 index 403d1eb..0000000 --- a/AGENTS.md +++ /dev/null @@ -1,10 +0,0 @@ -# Project context for movmaker - -## Notes -- This project will be a simple Python + ffmpeg movie maker. -- Desired workflow: user dumps all files into one flat input directory and runs a script; no manual YAML and no required subdirectories. -- Script should auto-detect images, videos, audio files, and an optional simple text data file for titles/dates/places. Default/simple data file content applies generally to the whole movie; optional per-file entries may be supported but must not be required. - -## Guidelines -- Do not store sensitive secrets, passwords, API keys, or private credentials here. -- Never push changes to git unless explicitly asked. diff --git a/movmaker.py b/movmaker.py index 54db5be..15eee78 100755 --- a/movmaker.py +++ b/movmaker.py @@ -451,7 +451,7 @@ def build_video( filters.append(f"[{current}]copy[{title_label}]") caption_label = title_label - caption_size = (subtitle_font_size if title_lines else max(40, height // 18)) + 2 + caption_size = subtitle_font_size if title_lines else max(40, height // 18) for idx, caption in enumerate(captions): if not caption: continue