audio passthrough

This commit is contained in:
2025-01-25 12:08:11 +00:00
parent c600cda1f5
commit 99686397ba

View File

@@ -355,22 +355,32 @@ in
vno4-dome-panorama = { vno4-dome-panorama = {
enabled = true; enabled = true;
detect.enabled = false; detect.enabled = false;
ffmpeg.inputs = [ ffmpeg = {
{ output_args = {
path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=1&subtype=0"; record = "preset-record-generic-audio-copy";
roles = [ "record" ]; };
} inputs = [
]; {
path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=1&subtype=0";
roles = [ "record" ];
}
];
};
}; };
vno4-dome-ptz = { vno4-dome-ptz = {
enabled = true; enabled = true;
detect.enabled = false; detect.enabled = false;
ffmpeg.inputs = [ ffmpeg = {
{ output_args = {
path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=2&subtype=0"; record = "preset-record-generic-audio-copy";
roles = [ "record" ]; };
} inputs = [
]; {
path = "rtsp://frigate:{FRIGATE_RTSP_PASSWORD}@192.168.188.10/cam/realmonitor?channel=2&subtype=0";
roles = [ "record" ];
}
];
};
}; };
}; };
}; };