Require camera name explicitly across all seasons scripts

No script defaults to SUNRISE_CAM (east) for the seasons pipeline.
Every direction is treated equally — camera name is a required arg,
not an optional override.

- 4-seasons.sh: $1 required, exits with usage if missing
- montage-mvt.sh: arg order changed to <cam> [date]; $1 required
- year-end-join.sh: $2 (cam) required
- verify-mvt.sh: $4 (cam) required
- migrate-seasons.sh: example commands updated to new arg order
- README.md: montage-mvt.sh examples updated

https://claude.ai/code/session_01C4jbd3waXG3eKZYbGUjLUQ
This commit is contained in:
Claude
2026-04-20 16:28:15 +00:00
parent 91006bf5f6
commit 8c752fc165
6 changed files with 40 additions and 25 deletions
+8 -8
View File
@@ -17,10 +17,10 @@
# (default: ~/drives/local-2tb/movies/sunrise)
#
# After running, trigger montages for completed movements:
# ./montage-mvt.sh 2026-04-19 east # Spring Mvt1 (~30/31 days)
# ./montage-mvt.sh 2026-01-18 east # Winter Mvt1 (~18/29 days)
# ./montage-mvt.sh 2026-02-16 east # Winter Mvt2 (~24/29 days)
# ./montage-mvt.sh 2026-03-19 east # Winter Mvt3 (~20/31 days)
# ./montage-mvt.sh east 2026-04-19 # Spring Mvt1
# ./montage-mvt.sh east 2026-01-18 # Winter Mvt1
# ./montage-mvt.sh east 2026-02-16 # Winter Mvt2
# ./montage-mvt.sh east 2026-03-19 # Winter Mvt3
set -euo pipefail
@@ -122,10 +122,10 @@ $DRY_RUN && echo "Re-run without --dry-run to move the files." && echo ""
echo "Next steps:"
echo " 1. Build montages for completed movements:"
echo " ./montage-mvt.sh 2026-04-19 $CAM # Spring Mvt1 (today is last day)"
echo " ./montage-mvt.sh 2026-01-18 $CAM # Winter Mvt1"
echo " ./montage-mvt.sh 2026-02-16 $CAM # Winter Mvt2"
echo " ./montage-mvt.sh 2026-03-19 $CAM # Winter Mvt3"
echo " ./montage-mvt.sh $CAM 2026-04-19 # Spring Mvt1"
echo " ./montage-mvt.sh $CAM 2026-01-18 # Winter Mvt1"
echo " ./montage-mvt.sh $CAM 2026-02-16 # Winter Mvt2"
echo " ./montage-mvt.sh $CAM 2026-03-19 # Winter Mvt3"
echo " 2. Confirm each montage plays correctly with music."
echo " 3. Delete temp files from old archive:"
echo " find \"$OLD_ROOT\" -name '*-temp.mp4' -delete"