frigate: use more streams

This commit is contained in:
2025-01-26 14:00:43 +02:00
parent f6b30bd489
commit 1e0ac7146f

View File

@@ -398,10 +398,25 @@ in
{ {
path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=1&subtype=0"; path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=1&subtype=0";
roles = [ roles = [
"detect" "audio"
"record" "record"
]; ];
} }
{
path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=1&subtype=1";
roles = [ "detect" ];
}
{
path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=1&subtype=0";
roles = [
"audio"
"detect"
];
}
{
path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=1&subtype=1";
roles = [ "detect" ];
}
]; ];
}; };
}; };
@@ -415,10 +430,7 @@ in
inputs = [ inputs = [
{ {
path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=2&subtype=0"; path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=2&subtype=0";
roles = [ roles = [ "record" ];
"detect"
"record"
];
} }
]; ];
}; };