HA restarts due to CRITICAL stream_worker error

HA restarts frequently. I run HA on VirtualBox in MacOS environment.
Home Assistant 2022.11.4
Supervisor 2022.11.2
Operating System 9.3
Frontend 20221108.0 - latest

When I check the last home-assistant.log entry I observe:

Datestamp Timestamp CRITICAL (stream_worker) [libav.generic] Assertion next_dts <= 0x7fffffff failed at libavformat/movenc.c:1087

A Google search brings me to this Github page.
I own 2 EZVIZ camera’s but don’t use the EZVIZ integration.

The only configuration for my camera’s in configuration.yaml:

camera:
  - platform: ffmpeg
    name: Camera 1
    input: -rtsp_transport tcp -i rtsp://admin:[email protected]:554/h264_stream
  - platform: ffmpeg
    name: Camera 2
    input: -rtsp_transport tcp -i rtsp://admin:[email protected]:554/h264_stream

In lovelace I use below card for a live view:

type: vertical-stack
cards:
  - type: picture-entity
    entity: camera.camera1
    show_state: false
    show_name: true
    camera_view: live
  - type: picture-entity
    entity: camera.camera2
    show_state: false
    show_name: true
    camera_view: live

Any idea how to get rid of this annoying problem or to troubleshoot?