Stop tracking AGENTS.md
This commit is contained in:
parent
57aa88854b
commit
aafd856ecc
3 changed files with 4 additions and 11 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -17,6 +17,9 @@ input*/
|
|||
media/
|
||||
ffmpeg/
|
||||
|
||||
# Assistant/project-local context
|
||||
AGENTS.md
|
||||
|
||||
# OS/editor
|
||||
.DS_Store
|
||||
.vscode/
|
||||
|
|
|
|||
10
AGENTS.md
10
AGENTS.md
|
|
@ -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.
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue