lot_manager/bash/record.sh

13 lines
483 B
Bash
Raw Normal View History

2023-12-02 13:22:57 +08:00
#!/bin/bash
2023-12-02 17:22:43 +08:00
RTSP_URL="rtsp://admin:123456@192.168.0.123:554/mpeg4" # RTSP流的URL
OUTPUT_DIR="/home/pi/mp4" # 录像文件保存的目录
2023-12-02 19:44:06 +08:00
RECORD_DURATION=900 # 录像时长(秒)
2023-12-04 18:21:47 +08:00
# 获取当前时间
CURRENT_TIME=$(date +"%Y-%m-%d_%H-%M-%S")
# 构建录像文件名
OUTPUT_FILE="${OUTPUT_DIR}/${CURRENT_TIME}.mp4"
# 开始录制RTSP流
ffmpeg -rtsp_transport tcp -i "${RTSP_URL}" -c copy -c:a aac -s 1920x1080 -r 15 -crf 35 -t "${RECORD_DURATION}" -f mp4 "${OUTPUT_FILE}"
2023-12-02 17:22:43 +08:00