fix roles again

This commit is contained in:
2025-01-26 14:04:27 +02:00
parent 9da27d4484
commit 15b30a530b

View File

@@ -406,17 +406,6 @@ in
path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=1&subtype=1"; path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=1&subtype=1";
roles = [ "detect" ]; roles = [ "detect" ];
} }
{
path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=1&subtype=0";
roles = [
"audio"
"record"
];
}
{
path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=1&subtype=1";
roles = [ "detect" ];
}
]; ];
}; };
}; };
@@ -430,7 +419,14 @@ 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 = [ "record" ]; roles = [
"audio"
"record"
];
}
{
path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=2&subtype=1";
roles = [ "detect" ];
} }
]; ];
}; };