mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
test
This commit is contained in:
parent
77b5f7cfc4
commit
2c21f2acea
1 changed files with 12 additions and 8 deletions
|
|
@ -74,26 +74,30 @@ in
|
|||
living_room = {
|
||||
enabled = true;
|
||||
detect.enabled = false; # No motion detection for indoor
|
||||
audio = {
|
||||
enabled = true;
|
||||
};
|
||||
audio.enabled = true;
|
||||
ffmpeg.inputs = [
|
||||
{
|
||||
path = "rtsp://127.0.0.1:8554/living_room";
|
||||
roles = [ "record" "audio" ];
|
||||
roles = [ "record" ];
|
||||
}
|
||||
{
|
||||
path = "rtsp://127.0.0.1:8554/living_room_sub";
|
||||
roles = [ "audio" ];
|
||||
}
|
||||
];
|
||||
};
|
||||
kitchen = {
|
||||
enabled = true;
|
||||
detect.enabled = false; # No motion detection for indoor
|
||||
audio = {
|
||||
enabled = true;
|
||||
};
|
||||
audio.enabled = true;
|
||||
ffmpeg.inputs = [
|
||||
{
|
||||
path = "rtsp://127.0.0.1:8554/kitchen";
|
||||
roles = [ "record" "audio" ];
|
||||
roles = [ "record" ];
|
||||
}
|
||||
{
|
||||
path = "rtsp://127.0.0.1:8554/kitchen_sub";
|
||||
roles = [ "audio" ];
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue