Removes dependency on MotionEye or any NVR software. Everything is now
CLI/ffmpeg configured entirely from sky-cam.conf.
capture.sh
Long-running systemd service (one per camera) that pulls frames from the
camera's RTSP stream at CAPTURE_INTERVAL seconds, writing HH-MM-SS.jpg
into BASE_DIR/<cam>/YYYY-MM-DD/. Restarts at midnight for the new date
directory; auto-reconnects on camera disconnect.
sunrise-audio-capture.sh
One-shot service triggered at 03:00. Waits until (sunrise minus
SUNRISE_PRE_MIN minus AUDIO_PRE_BUFFER_MIN), then records the RTSP audio
stream for the full sunrise window. Output deleted after mixing.
daily_sunrise_video.sh
Step 3 now mixes in sunrise-audio.m4a when AUDIO_ENABLED=true and the
file exists. Audio is centred on actual sunrise time at natural speed
while the video plays as the sped-up timelapse. Uses filter_complex
when audio is present (can't combine -vf with -filter_complex).
install.sh
Generates sky-cam-capture-<cam>.service for each camera with CAM_RTSP_<cam>
set, and sky-cam-audio-capture.{service,timer} when AUDIO_ENABLED=true.
sky-cam.conf
New settings: CAM_RTSP_<cam>, CAPTURE_INTERVAL, AUDIO_ENABLED,
AUDIO_PRE_BUFFER_MIN, CAPTURE_AUDIO_BITRATE.
https://claude.ai/code/session_01C4jbd3waXG3eKZYbGUjLUQ
185 lines
8.6 KiB
Bash
185 lines
8.6 KiB
Bash
#!/bin/bash
|
|
# daily_sunrise_video.sh — collect today's sunrise images, speed-adjust to
|
|
# SUNRISE_TARGET_SECS, burn the local sunrise time vertically on the right
|
|
# side, and write the final video. Upload is handled by a separate systemd
|
|
# service (sky-cam-sunrise-upload) triggered via OnSuccess= so the two jobs
|
|
# have independent log entries and failure states.
|
|
#
|
|
# Resilience: the speed-adjusted video is saved permanently before the overlay
|
|
# step. If overlay fails, the sped video survives at:
|
|
# <output_dir>/<date>-daily-sunrise-sped.mp4
|
|
# Re-run this script once the issue is resolved; the sped file is deleted
|
|
# automatically when the overlay step succeeds.
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(dirname "$(realpath "$0")")"
|
|
source "$SCRIPT_DIR/sky-cam.conf"
|
|
export TZ="$TIMEZONE"
|
|
|
|
# ── Date / paths ──────────────────────────────────────────────────────────────
|
|
current_date=$(date +%Y-%m-%d)
|
|
output_date=$(date +%Y-%m)
|
|
|
|
image_dir="$BASE_DIR/$CAM_NAME/$current_date"
|
|
output_dir="$BASE_DIR/movies/$CAM_NAME/$output_date/sunrise-only"
|
|
mkdir -p "$output_dir"
|
|
|
|
# ── Sunrise time ──────────────────────────────────────────────────────────────
|
|
sunrise_time=$(python3 "$SCRIPT_DIR/sunrise.py")
|
|
if [[ -z "$sunrise_time" ]]; then
|
|
"$SCRIPT_DIR/notify.sh" "FAILED: sunrise $current_date" \
|
|
"Could not retrieve sunrise time from sunrise.py" || true
|
|
echo "Error: Failed to retrieve sunrise time."
|
|
exit 1
|
|
fi
|
|
echo "Sunrise (UTC): $sunrise_time"
|
|
|
|
sunrise_time_local=$(TZ="$TIMEZONE" date -d "$sunrise_time" +"%H-%M-%S")
|
|
echo "Sunrise (local): $sunrise_time_local"
|
|
|
|
# ── Capture window ────────────────────────────────────────────────────────────
|
|
time_to_seconds() { IFS='-' read -r h m s <<< "$1"; echo $((10#$h * 3600 + 10#$m * 60 + 10#$s)); }
|
|
|
|
sunrise_sec=$(time_to_seconds "$sunrise_time_local")
|
|
start_sec=$((sunrise_sec - SUNRISE_PRE_MIN * 60))
|
|
end_sec=$((sunrise_sec + SUNRISE_POST_MIN * 60))
|
|
echo "Window: $((start_sec/3600)):$(printf '%02d' $(((start_sec%3600)/60))) → $((end_sec/3600)):$(printf '%02d' $(((end_sec%3600)/60)))"
|
|
|
|
# ── Collect images in window ──────────────────────────────────────────────────
|
|
if [ ! -d "$image_dir" ]; then
|
|
"$SCRIPT_DIR/notify.sh" "FAILED: sunrise $current_date" \
|
|
"Image directory not found: $image_dir" || true
|
|
echo "Error: image directory not found: $image_dir"
|
|
exit 1
|
|
fi
|
|
|
|
temp_list=$(mktemp --suffix=.txt)
|
|
raw_video=""
|
|
trap 'rm -f "$temp_list" "$raw_video" 2>/dev/null || true' EXIT
|
|
|
|
find "$image_dir" -type f -name "*.jpg" | sort | while read -r img; do
|
|
img_sec=$(time_to_seconds "$(basename "$img" .jpg)")
|
|
if [[ $img_sec -ge $start_sec && $img_sec -le $end_sec ]]; then
|
|
echo "file '$img'"
|
|
fi
|
|
done > "$temp_list"
|
|
|
|
num_images=$(wc -l < "$temp_list")
|
|
if [[ $num_images -lt 1 ]]; then
|
|
"$SCRIPT_DIR/notify.sh" "FAILED: sunrise $current_date" \
|
|
"No images found in sunrise window" || true
|
|
echo "No images found in sunrise window."
|
|
exit 1
|
|
fi
|
|
echo "Images in window: $num_images"
|
|
|
|
# ── Font detection (same fallback chain as montage-mvt.sh) ───────────────────
|
|
FONT=""
|
|
if command -v fc-match &>/dev/null; then
|
|
FONT=$(fc-match "DejaVu Sans:style=Regular" --format="%{file}" 2>/dev/null || true)
|
|
fi
|
|
if [ -z "$FONT" ]; then
|
|
for f in \
|
|
/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf \
|
|
/usr/share/fonts/dejavu/DejaVuSans.ttf \
|
|
/usr/share/fonts/TTF/DejaVuSans.ttf \
|
|
/usr/share/fonts/truetype/freefont/FreeSans.ttf; do
|
|
[ -f "$f" ] && { FONT="$f"; break; }
|
|
done
|
|
fi
|
|
|
|
# ── Step 1: Raw video from images ─────────────────────────────────────────────
|
|
raw_video=$(mktemp --suffix=.mp4)
|
|
echo "Step 1/3: encoding raw video..."
|
|
if ! ffmpeg -loglevel warning \
|
|
-f concat -safe 0 -i "$temp_list" \
|
|
-c:v libx264 -pix_fmt yuv420p -crf "$CRF_SUNRISE" -vsync 2 -an \
|
|
-y "$raw_video"; then
|
|
"$SCRIPT_DIR/notify.sh" "FAILED: sunrise step 1/3 (encode) $current_date" \
|
|
"ffmpeg raw encode from images failed — check: journalctl -u sky-cam-sunrise.service" || true
|
|
exit 1
|
|
fi
|
|
|
|
raw_dur=$(ffprobe -v error -show_entries format=duration -of csv=p=0 "$raw_video")
|
|
speed_factor=$(echo "scale=3; $raw_dur / $SUNRISE_TARGET_SECS" | bc)
|
|
echo "Raw: ${raw_dur}s speed factor: ${speed_factor}x"
|
|
|
|
# ── Step 2: Speed-adjust — saved permanently so overlay failure is recoverable ─
|
|
# Deleted automatically if step 3 succeeds.
|
|
sped_video="$output_dir/$current_date-daily-sunrise-sped.mp4"
|
|
echo "Step 2/3: speed-adjust → $sped_video"
|
|
if ! ffmpeg -loglevel warning \
|
|
-i "$raw_video" \
|
|
-vf "setpts=PTS/${speed_factor}" \
|
|
-c:v libx264 -pix_fmt yuv420p -crf "$CRF_SUNRISE" -an \
|
|
-y "$sped_video"; then
|
|
rm -f "$sped_video"
|
|
"$SCRIPT_DIR/notify.sh" "FAILED: sunrise step 2/3 (speed) $current_date" \
|
|
"speed-adjust failed — no video saved" || true
|
|
exit 1
|
|
fi
|
|
|
|
sped_dur=$(ffprobe -v error -show_entries format=duration -of csv=p=0 "$sped_video")
|
|
echo "Speed-adjusted: ${sped_dur}s (saved — overlay still pending)"
|
|
|
|
# ── Build overlay filter ──────────────────────────────────────────────────────
|
|
# Time displayed as stacked characters down the right side (e.g. 0/7/:/2/3),
|
|
# semi-transparent with a soft drop shadow so it reads on any background.
|
|
SR_TIME=$(echo "$sunrise_time_local" | cut -d'-' -f1,2 | tr '-' ':')
|
|
# Build "H\nH\n:\nM\nM" for vertical stacking in drawtext
|
|
SR_VERT=$(echo "$SR_TIME" | awk 'BEGIN{FS=""}{for(i=1;i<=NF;i++){printf "%s",$i; if(i<NF)printf "\\n"}}')
|
|
|
|
DT="drawtext"
|
|
[ -n "$FONT" ] && DT="${DT}=fontfile='${FONT}'" || DT="${DT}"
|
|
DT="${DT}:text='${SR_VERT}'"
|
|
DT="${DT}:fontcolor=white@${SUNRISE_OVERLAY_OPACITY}"
|
|
DT="${DT}:fontsize=h/22"
|
|
DT="${DT}:line_spacing=4"
|
|
DT="${DT}:x=w-tw-18:y=(h-th)/2"
|
|
DT="${DT}:shadowcolor=black@0.55:shadowx=1:shadowy=1"
|
|
|
|
# ── Step 3: Overlay + optional audio ─────────────────────────────────────────
|
|
# With audio: DT must go into -filter_complex (can't mix -vf and -filter_complex)
|
|
# Without audio: plain -vf is simpler and avoids any filter_complex overhead.
|
|
# If overlay fails either way, the sped video is promoted so upload still fires.
|
|
final_video="$output_dir/$current_date-daily-sunrise.mp4"
|
|
audio_file="$image_dir/sunrise-audio.m4a"
|
|
step3_ok=true
|
|
|
|
if [ "${AUDIO_ENABLED:-false}" = "true" ] && [ -f "$audio_file" ]; then
|
|
buffer_sec=$(( ${AUDIO_PRE_BUFFER_MIN:-2} * 60 ))
|
|
audio_offset=$(echo "scale=1; $SUNRISE_PRE_MIN * 60 + $buffer_sec - $SUNRISE_TARGET_SECS / 2" | bc)
|
|
fade_out=$(echo "scale=1; $SUNRISE_TARGET_SECS - 0.5" | bc)
|
|
echo "Step 3/3: overlay + camera audio (offset ${audio_offset}s) → $final_video"
|
|
ffmpeg -loglevel warning \
|
|
-i "$sped_video" \
|
|
-ss "$audio_offset" -t "$SUNRISE_TARGET_SECS" -i "$audio_file" \
|
|
-filter_complex "[0:v]${DT}[vout];[1:a]afade=t=in:st=0:d=0.5,afade=t=out:st=${fade_out}:d=0.5[aout]" \
|
|
-map "[vout]" -map "[aout]" \
|
|
-c:v libx264 -pix_fmt yuv420p -crf "$CRF_SUNRISE" \
|
|
-c:a aac -b:a 128k \
|
|
-y "$final_video" || step3_ok=false
|
|
else
|
|
echo "Step 3/3: overlay (no audio) → $final_video"
|
|
ffmpeg -loglevel warning \
|
|
-i "$sped_video" \
|
|
-vf "${DT}" \
|
|
-c:v libx264 -pix_fmt yuv420p -crf "$CRF_SUNRISE" -an \
|
|
-y "$final_video" || step3_ok=false
|
|
fi
|
|
|
|
if $step3_ok; then
|
|
actual_dur=$(ffprobe -v error -show_entries format=duration -of csv=p=0 "$final_video")
|
|
echo "Done: $final_video (${actual_dur}s, sunrise at ${SR_TIME})"
|
|
rm -f "$sped_video"
|
|
[ -f "$audio_file" ] && rm -f "$audio_file"
|
|
"$SCRIPT_DIR/notify.sh" "Sunrise ready: $current_date" \
|
|
"$(basename "$final_video") — ${actual_dur}s, sunrise at ${SR_TIME}" || true
|
|
else
|
|
mv "$sped_video" "$final_video"
|
|
echo "Overlay failed — promoting speed-only video as upload target"
|
|
"$SCRIPT_DIR/notify.sh" "WARNING: sunrise overlay failed $current_date" \
|
|
"Overlay step failed — uploading speed-only video (no timestamp)" || true
|
|
fi
|