Simple question : Can we stream cameras in HA and at the same time in a NVR? (and record them)

Hello,

i have 15 camera in HassOs (Rpi0w, esp32cam, TapoC310 and c200), work great for a while.

After have a lot of problem to try to record the ESP32Cams (with success but complicated), and install MotionEye addon for Rpi0w cams, i have decided to install a NVR in my network.

I have try frigate without luck, and with luck with AgentDVR (ispy) and a RPI4 4Go.

BUT when i start the NVR (just display the 15 feed of camera) my wifi (ubiquiti x1 AP-AC-PRO and x2 AP-AC-LR) seems to became crazy…all the sensor in ESPHome disconnect one after the other…complete mess…

To be precise, its only my Wifi because my Tapo C310 is on Ethernet and have any issue.

And when i record all the streams…the Wifi turn mad…more problem of disconnections and reconnection in loop…for the ESP32Cam under EspHome and Rpi0w under MotionEyeOs.

I have a standard config for esp32cam and i just add the new component :

esp32_camera_web_server:
  - port: 8080
    mode: stream
  - port: 8081
    mode: snapshot

here is my config :

esphome:
  name: bureau
  platform: ESP32
  board: esp-wrover-kit

wifi:
  ssid: "XXXXXXXXXXXXX"
  password: "xxxxxxxxxxxxxxxxxxx"
  manual_ip:
    static_ip: 192.168.1.49
    gateway: 192.168.1.1
    subnet: 255.255.255.0
    dns1: 192.168.1.150
  fast_connect: on                                  # i try that today but seems to have any change
  power_save_mode: none                     # i try that today but seems to have any change

# Enable logging
logger:

# Enable Home Assistant API
api:

ota:
  password: "xxxxxxxxx"

esp32_camera_web_server:
  - port: 8080
    mode: stream
  - port: 8081
    mode: snapshot

# ESP32-CAM
esp32_camera:
  external_clock:
    pin: GPIO0
    frequency: 20MHz
  i2c_pins:
    sda: GPIO26
    scl: GPIO27
  data_pins: [GPIO5, GPIO18, GPIO19, GPIO21, GPIO36, GPIO39, GPIO34, GPIO35]
  vsync_pin: GPIO25
  href_pin: GPIO23
  pixel_clock_pin: GPIO22
  power_down_pin: GPIO32
  vertical_flip: false
  horizontal_mirror: false
  resolution: 640x480 

  name: bureau
  
sensor:
  - platform: wifi_signal
    name: "WiFi Signal Bureau"
    update_interval: 60s
    id: signalWbu

switch:
  - platform: restart
    name: "Restart Cam Bureau"
  
binary_sensor:
  - platform: gpio
    pin: 
      number: GPIO13
    name: "Bureau PIR Sensor"
    device_class: motion

# Flashlight
output:
  - platform: gpio
    pin: GPIO4
    id: gpio_4
light:
  - platform: binary
    output: gpio_4
    name: $hostname lightbur

If someone can help please : my question is : can we stream in HA and at the same time in a NVR?

For my knowledge…its a stream…so can be read at the same time on several machine…in theory…because it doesnt work very well in practice lol…

Does i need to configure something special in my APs?

Thanks