Add new family room camera #15
This commit is contained in:
parent
fb7a84cf4c
commit
8af3df4bce
|
@ -22,7 +22,9 @@ go2rtc:
|
||||||
back_door:
|
back_door:
|
||||||
- 'rtsp://wyze-bridge:8554/back-yard-cam'
|
- 'rtsp://wyze-bridge:8554/back-yard-cam'
|
||||||
family_room:
|
family_room:
|
||||||
- 'rtsp://{FRIGATE_FAMILY_ROOM_RTSP_USERNAME}:{FRIGATE_FAMILY_ROOM_RTSP_PASSWORD}@192.168.0.104:554/live/ch0'
|
- 'rtsp://{FRIGATE_FAMILY_ROOM_RTSP_USERNAME}:{FRIGATE_FAMILY_ROOM_RTSP_PASSWORD}@192.168.0.106/stream1'
|
||||||
|
office:
|
||||||
|
- 'rtsp://{FRIGATE_OFFICE_RTSP_USERNAME}:{FRIGATE_OFFICE_RTSP_PASSWORD}@192.168.0.104:554/live/ch0'
|
||||||
|
|
||||||
cameras:
|
cameras:
|
||||||
garage:
|
garage:
|
||||||
|
@ -30,7 +32,6 @@ cameras:
|
||||||
ffmpeg:
|
ffmpeg:
|
||||||
inputs:
|
inputs:
|
||||||
- path: 'rtsp://127.0.0.1:8554/garage'
|
- path: 'rtsp://127.0.0.1:8554/garage'
|
||||||
input_args: preset-rtsp-restream
|
|
||||||
roles:
|
roles:
|
||||||
- detect
|
- detect
|
||||||
- record
|
- record
|
||||||
|
@ -137,6 +138,21 @@ cameras:
|
||||||
- record
|
- record
|
||||||
output_args:
|
output_args:
|
||||||
record: preset-record-generic-audio-aac # Record with aac audio
|
record: preset-record-generic-audio-aac # Record with aac audio
|
||||||
|
detect:
|
||||||
|
enabled: true
|
||||||
|
width: 1920
|
||||||
|
height: 1080
|
||||||
|
office:
|
||||||
|
enabled: false
|
||||||
|
ffmpeg:
|
||||||
|
inputs:
|
||||||
|
- path: 'rtsp://127.0.0.1:8554/office'
|
||||||
|
roles:
|
||||||
|
- detect
|
||||||
|
- record
|
||||||
|
hwaccel_args: preset-intel-qsv-h264 # Use Intel QSV hardware acceleration for H.264
|
||||||
|
output_args:
|
||||||
|
record: preset-record-generic-audio-aac # Record with aac audio
|
||||||
detect:
|
detect:
|
||||||
enabled: true
|
enabled: true
|
||||||
width: 1280
|
width: 1280
|
||||||
|
|
|
@ -29,6 +29,8 @@ services:
|
||||||
FRIGATE_BACK_DOOR_RTSP_PASSWORD: ${FRIGATE_BACK_DOOR_RTSP_PASSWORD}
|
FRIGATE_BACK_DOOR_RTSP_PASSWORD: ${FRIGATE_BACK_DOOR_RTSP_PASSWORD}
|
||||||
FRIGATE_FAMILY_ROOM_RTSP_USERNAME: frigate
|
FRIGATE_FAMILY_ROOM_RTSP_USERNAME: frigate
|
||||||
FRIGATE_FAMILY_ROOM_RTSP_PASSWORD: ${FRIGATE_FAMILY_ROOM_RTSP_PASSWORD}
|
FRIGATE_FAMILY_ROOM_RTSP_PASSWORD: ${FRIGATE_FAMILY_ROOM_RTSP_PASSWORD}
|
||||||
|
FRIGATE_OFFICE_RTSP_USERNAME: frigate
|
||||||
|
FRIGATE_OFFICE_RTSP_PASSWORD: ${FRIGATE_OFFICE_RTSP_PASSWORD}
|
||||||
shm_size: '150mb'
|
shm_size: '150mb'
|
||||||
devices:
|
devices:
|
||||||
- /dev/dri:/dev/dri
|
- /dev/dri:/dev/dri
|
||||||
|
|
Loading…
Reference in New Issue