Stop tracking AGENTS.md

This commit is contained in:
hbrain 2026-05-24 22:49:03 +00:00
parent 57aa88854b
commit aafd856ecc
3 changed files with 4 additions and 11 deletions

3
.gitignore vendored
View file

@ -17,6 +17,9 @@ input*/
media/ media/
ffmpeg/ ffmpeg/
# Assistant/project-local context
AGENTS.md
# OS/editor # OS/editor
.DS_Store .DS_Store
.vscode/ .vscode/

View file

@ -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.

View file

@ -451,7 +451,7 @@ def build_video(
filters.append(f"[{current}]copy[{title_label}]") filters.append(f"[{current}]copy[{title_label}]")
caption_label = 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): for idx, caption in enumerate(captions):
if not caption: if not caption:
continue continue