- config.py constants -> config/config.yaml (user-editable, git-ignored) - Questions and defaults now defined in the YAML, including per-question defaults - ClipSelector no longer scans the data dir; reads a user-provided clips.txt instead - Removed --daily / --time / --skip-existing-day args - video_loader now samples frames evenly across the full clip - pyyaml added as a dependency Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
216 B
Plaintext
18 lines
216 B
Plaintext
# Python cache
|
|
*.pyc
|
|
.ipynb_checkpoints/
|
|
*.egg-info/
|
|
|
|
# IDE settings
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OSX-specific
|
|
.DS_Store
|
|
|
|
# Data
|
|
data/**
|
|
|
|
# User-specific config (copy from *.example.* files)
|
|
config/config.yaml
|
|
config/clips.txt |