Files
vcr_capture/templates/stream_service.sh
2025-10-12 16:50:32 -07:00

10 lines
223 B
Bash

#!/bin/bash
DATE=$(date +'%Y%m%d-%H%M%S')
ffmpeg \
-i rtsp://localhost:8554/stream \
-c:v libx264 -preset fast -crf 23 -c:a aac -b:a 192k -tune zerolatency \
-f mp4 {{ recording_capture_folder }}/$DATE.mp4 \