blakeblackshear / frigate

NVR with realtime local object detection for IP cameras
https://frigate.video
MIT License
18.59k stars 1.69k forks source link

[Support]: Sometimes black video with only audio #7995

Closed dopeytree closed 1 year ago

dopeytree commented 1 year ago

Describe the problem you are having

Am noticing past few days sometimes video is shown as black with only audio. Specifically on bird cam. It seems to be corrupting somewhere. If you download the clip it is just audio with a black rectangle shown in VLC.

How do I fix this?

My cameras are annke c500.

Version

0.12.1-367d724

Frigate config file

# Configuration File
# Used https://docs.frigate.video/configuration/#vscode-configuration-schema

mqtt:
  enabled: true
  host: 192.168.22.2
  port: 1883
   # Optional: topic prefix (default: shown below)
  # WARNING: must be unique if you are running multiple instances
  topic_prefix: frigate
  # Optional: client id (default: shown below)
  # WARNING: must be unique if you are running multiple instances
  client_id: frigate
  # Optional: user
  user:
  # Optional: password
  # NOTE: Environment variables that begin with 'FRIGATE_' may be referenced in {}.
  #       eg. password: '{FRIGATE_MQTT_PASSWORD}'
  password:
  # Optional: interval in seconds for publishing stats (default: shown below)
  stats_interval: 60

detectors:
  coral:
    type: edgetpu
    device: usb   

# Optional: Detect configuration
# NOTE: Can be overridden at the camera level
detect:
  # Optional: width of the frame for the input with the detect role (default: shown below)
  #width: 1280
  # Optional: height of the frame for the input with the detect role (default: shown below)
  #height: 720
  # Optional: desired fps for your camera for the input with the detect role (default: shown below)
  # NOTE: Recommended value of 5. Ideally, try and reduce your FPS on the camera.
  #fps: 5
  # Optional: enables detection for the camera (default: True)
  enabled: true
  # Optional: Number of frames without a detection before Frigate considers an object to be gone. (default: 5x the frame rate)
  max_disappeared: 75
  # Optional: Configuration for stationary object tracking
  stationary:
    # Optional: Frequency for confirming stationary objects (default: shown below)
    # When set to 0, object detection will not confirm stationary objects until movement is detected.
    # If set to 10, object detection will run to confirm the object still exists on every 10th frame.
    interval: 10
    # Optional: Number of frames without a position change for an object to be considered stationary (default: 10x the frame rate or 10s)
    threshold: 20

# Optional: Motion configuration
# NOTE: Can be overridden at the camera level
motion:
  # Optional: The threshold passed to cv2.threshold to determine if a pixel is different enough to be counted as motion. (default: shown below)
  # Increasing this value will make motion detection less sensitive and decreasing it will make motion detection more sensitive.
  # The value should be between 1 and 255.
  threshold: 25
  # Optional: Minimum size in pixels in the resized motion image that counts as motion (default: 30)
  # Increasing this value will prevent smaller areas of motion from being detected. Decreasing will
  # make motion detection more sensitive to smaller moving objects.
  # As a rule of thumb:
  #  - 15 - high sensitivity
  #  - 30 - medium sensitivity
  #  - 50 - low sensitivity
  contour_area: 30
  # Optional: Alpha value passed to cv2.accumulateWeighted when averaging the motion delta across multiple frames (default: shown below)
  # Higher values mean the current frame impacts the delta a lot, and a single raindrop may register as motion.
  # Too low and a fast moving person wont be detected as motion.
  delta_alpha: 0.2
  # Optional: Alpha value passed to cv2.accumulateWeighted when averaging frames to determine the background (default: shown below)
  # Higher values mean the current frame impacts the average a lot, and a new object will be averaged into the background faster.
  # Low values will cause things like moving shadows to be detected as motion for longer.
  # https://www.geeksforgeeks.org/background-subtraction-in-an-image-using-concept-of-running-average/
  frame_alpha: 0.3
  # Optional: Height of the resized motion frame  (default: 50)
  # This operates as an efficient blur alternative. Higher values will result in more granular motion detection at the expense
  # of higher CPU usage. Lower values result in less CPU, but small changes may not register as motion.
  frame_height: 30
  # Optional: improve contrast (default: shown below)
  # Enables dynamic contrast improvement. This should help improve night detections at the cost of making motion detection more sensitive
  # for daytime.
  improve_contrast: true

# Optional: ffmpeg configuration
# More information about presets at https://docs.frigate.video/configuration/ffmpeg_presets
ffmpeg:
  # Optional: global ffmpeg args (default: shown below)
  global_args: -hide_banner -loglevel warning -threads 16
  # Optional: global hwaccel args (default: shown below)
  # NOTE: See hardware acceleration docs for your specific device
  hwaccel_args: preset-vaapi
  # Optional: global input args (default: shown below)
  input_args: preset-rtsp-generic-audio-aac
  # Optional: global output args
  output_args:
    # Optional: output args for detect streams (default: shown below)
    detect: -threads 16 -f rawvideo -pix_fmt yuv420p
    # Optional: output args for record streams (default: shown below)
    record: preset-record-generic-audio-aac
    # Optional: output args for rtmp streams (default: shown below)
    rtmp: preset-rtmp-generic

# Optional: Restream configuration
# Uses https://github.com/AlexxIT/go2rtc (v1.7.1)
go2rtc:
   streams:
    #barn HQ:
    # - rtsp://MPG7QbYQ:ICRGvtBU2xo3DxMy@192.168.22.202:554/live/ch0
    road_1080p HQ: rtsp://EWLHSHKY:XGEJzBByF2IE3c@192.168.44.5:554/live/ch0
      #
    road_cam HQ: rtsp://admin:annke2023@10.0.0.2:554/H265/ch1/main/av_stream
      #
    porch_cam HQ: rtsp://admin:annke2023@10.0.0.3:554/H265/ch1/main/av_stream
      #
    bird_cam HQ:  rtsp://admin:annke2023@10.0.0.7:554/H265/ch1/main/av_stream
      #
    barn HQ: rtsp://admin:annke2023@10.0.0.4:554/H265/ch1/main/av_stream
      #
    kitchen_cam HQ: rtsp://admin:annke2023@10.0.0.5:554/H265/ch1/main/av_stream
      #
    house_cam HQ: rtsp://admin:annke2023@10.0.0.6:554/H265/ch1/main/av_stream
      #

cameras:
  #
  bird_cam: # - Brand: Annke - Quality:3k
    snapshots:
      enabled: true
      bounding_box: false
      quality: 100
      #required_zones:
          #- bird-zone
    #  
    ffmpeg:
      output_args:
        record: preset-record-generic-audio-aac 
      hwaccel_args: preset-vaapi
      inputs:
        - path: rtsp://admin:annke2023@10.0.0.7:554/Streaming/Channels/102 # SQ Link
          input_args: preset-rtsp-generic
          roles:
            - detect
        - path: rtsp://192.168.22.2:8554/bird_cam%20HQ?mp4  # HQ Link
          input_args: preset-rtsp-restream
          roles:
            - record
    detect:
      width: 640  
      height: 360
      fps: 4
      stationary:
        interval: 0
        threshold: 70
    objects:
      track:
        - bird
      filters:
        bird:
          min_area: 1000
          max_area: 100000
          # Optional: minimum width/height of the bounding box for the detected object (default: 0)
          min_ratio: 0.5
          # Optional: maximum width/height of the bounding box for the detected object (default: 24000000)
          max_ratio: 2.0
          # Optional: minimum score for the object to initiate tracking (default: shown below)
          min_score: 0.5
          # Optional: minimum decimal percentage for tracked object's computed score to be considered a true positive (default: shown below)
          threshold: 0.7
    record:
      enabled: true
      retain:
        days: 7
        mode: motion
      events:
        pre_capture: 5
        post_capture: 5
        objects:
        - bird
        retain:
          default: 28
          mode: active_objects 
     # Optional: Configuration for the jpg snapshots published via MQTT        
    mqtt:
      enabled: true
      bounding_box: false #this will get rid of the box around the bird. We already know it is a bird. Sheesh.
      timestamp: false #this will get rid of the time stamp in the image. 
      quality: 100 #default quality is 70, which will get you lots of compression artifacts

  road_1080p: # no3 - road 1080p - Cam name - Brand: Wansview - Quality:1080p
    snapshots:
      enabled: true
      bounding_box: true
      quality: 99
    #  
    ffmpeg:
      output_args:
        record: preset-record-generic-audio-aac 
      hwaccel_args: preset-vaapi
      inputs:
        - path: rtsp://EWLHSHKY:XGEJzBByF2IE3c@192.168.44.5:554/live/ch1 # SD Link
          input_args: preset-rtsp-generic
          roles:
            - detect
        - path: rtsp://192.168.22.2:8554/road_1080p?mp4  # HD Link
          input_args: preset-rtsp-restream
          roles:
            - record
    detect:
      width: 768  
      height: 432
      fps: 4
      stationary:
        interval: 0
        threshold: 70
    motion:
      mask:
        - 768,450,768,325,724,317,653,288,614,294,606,260,596,224,518,205,414,233,371,299,332,407,444,450
        - 496,0,768,0,768,159,657,126,567,100,504,125,434,129,386,142,332,98,175,85,0,83,0,0,335,0
        - 0,215,0,296,69,305,127,265,141,225,110,167,64,136   
    objects:
      track:
        - person
        - dog
        - cat
        - bicycle
        - motorcycle
      filters:
        #
        person:
          min_area: 2000
          max_area: 100000
          # Optional: minimum width/height of the bounding box for the detected object (default: 0)
          min_ratio: 0.6
          # Optional: maximum width/height of the bounding box for the detected object (default: 24000000)
          max_ratio: 2.0
          # Optional: minimum score for the object to initiate tracking (default: shown below)
          min_score: 0.6
          # Optional: minimum decimal percentage for tracked object's computed score to be considered a true positive (default: shown below)
          threshold: 0.7
        # 
        bicycle:
          min_area: 2000
          max_area: 100000
          # Optional: minimum width/height of the bounding box for the detected object (default: 0)
          min_ratio: 0.5
          # Optional: maximum width/height of the bounding box for the detected object (default: 24000000)
          max_ratio: 2.0
          # Optional: minimum score for the object to initiate tracking (default: shown below)
          min_score: 0.5
          # Optional: minimum decimal percentage for tracked object's computed score to be considered a true positive (default: shown below)
          threshold: 0.7
        #  
        motorcycle:
          min_area: 2000
          max_area: 100000
          # Optional: minimum width/height of the bounding box for the detected object (default: 0)
          min_ratio: 0.5
          # Optional: maximum width/height of the bounding box for the detected object (default: 24000000)
          max_ratio: 2.0
          # Optional: minimum score for the object to initiate tracking (default: shown below)
          min_score: 0.5
          # Optional: minimum decimal percentage for tracked object's computed score to be considered a true positive (default: shown below)
          threshold: 0.7          
    record:
      enabled: true
      retain:
        days: 7
        mode: motion
      events:
        pre_capture: 3
        post_capture: 5
        objects:
        - person
        - dog
        - cat
        - bicycle
        - motorcycle
        retain:
          default: 28
          mode: active_objects

  porch_cam: # no4 - PORCH - Cam name - Brand: Annke - Quality:3k
    snapshots:
      enabled: true
      bounding_box: true
      quality: 99
    #  
    ffmpeg:
      output_args:
        record: preset-record-generic-audio-aac 
      hwaccel_args: preset-vaapi
      inputs:
        - path: rtsp://admin:annke2023@10.0.0.3:554/Streaming/Channels/102 # SQ Link
          input_args: preset-rtsp-generic
          roles:
            - detect
        - path: rtsp://192.168.22.2:8554/porch_cam%20HQ?mp4  # HQ Link
          input_args: preset-rtsp-restream
          roles:
            - record
    detect:
      width: 640  
      height: 360
      fps: 4
      stationary:
        interval: 0
        threshold: 70
    motion:
      mask:
        - 189,0,183,32,0,33,0,0,0,0,0,0
        - 640,360,619,228,583,178,473,223,423,360
        - 297,47,480,45,504,0,302,0
        - 124,246,194,242,174,207,147,193,110,228
    zones:
      zone_0:
        coordinates: 185,30,197,0,640,0,640,360,0,360,0,32
        objects: # (everywhere you want a person, cat, dog)
        - person
        - cat
        - dog  
      zone_1:
        coordinates: 268,154,256,0,575,0,544,150
        objects: # (everywhere you want a car)
        - car
        - person
    objects:
      track:
        - person
        - car
        - dog
        - cat
      filters:
        #
        car:
          mask:
            - 0,360,640,360,640,153,264,163,244,0,0,0,0,198
        # min_area: 5000
        #  max_area: 100000
        #  # Optional: minimum width/height of the bounding box for the detected object (default: 0)
        #  min_ratio: 0.6
        #  # Optional: maximum width/height of the bounding box for the detected object (default: 24000000)
        #  max_ratio: 2.0
        #  # Optional: minimum score for the object to initiate tracking (default: shown below)
        #  min_score: 0.5
        #  # Optional: minimum decimal percentage for tracked object's computed score to be considered a true positive (default: shown below)
        #  threshold: 0.7
        #
        #person:
        #
        #dog:
        #  min_area: 1000
        #  max_area: 100000
        #  # Optional: minimum width/height of the bounding box for the detected object (default: 0)
        #  min_ratio: 0.5
        #  # Optional: maximum width/height of the bounding box for the detected object (default: 24000000)
        #  max_ratio: 2.0
        #  # Optional: minimum score for the object to initiate tracking (default: shown below)
        #  min_score: 0.5
        #  # Optional: minimum decimal percentage for tracked object's computed score to be considered a true positive (default: shown below)
        #  threshold: 0.7
        #
        #cat:
        #  min_area: 1000
        #  max_area: 100000
        #  # Optional: minimum width/height of the bounding box for the detected object (default: 0)
        #  min_ratio: 0.5
        #  # Optional: maximum width/height of the bounding box for the detected object (default: 24000000)
        #  max_ratio: 2.0
        #  # Optional: minimum score for the object to initiate tracking (default: shown below)
        #  min_score: 0.5
        #  # Optional: minimum decimal percentage for tracked object's computed score to be considered a true positive (default: shown below)
        #  threshold: 0.7
    record:
      enabled: true
      retain:
        days: 7
        mode: motion
      events:
        pre_capture: 5
        post_capture: 5
        objects:
        - person
        - car
        - dog
        - cat
        retain:
          default: 28
          mode: active_objects 

  road_cam: # no4 - road - Cam name - Brand: Annke - Quality:3k
    snapshots:
      enabled: true
      bounding_box: true
      quality: 99
    #  
    ffmpeg:
      output_args:
        record: preset-record-generic-audio-aac 
      hwaccel_args: preset-vaapi
      inputs:
        - path: rtsp://admin:annke2023@10.0.0.2:554/Streaming/Channels/102 # SQ Link
          input_args: preset-rtsp-generic
          roles:
            - detect
        - path: rtsp://192.168.22.2:8554/road_cam%20HQ?mp4  # HQ Link
          input_args: preset-rtsp-restream
          roles:
            - record
    detect:
      width: 640  
      height: 360
      fps: 4
      stationary:
        interval: 0
        threshold: 70
    #motion:
      # mask:
       # - 189,0,189,23,0,23,0,0,0,0,0,0
    #zones:
      #zone_0:
        # coordinates: 192,21,197,0,640,0,640,236,514,210,410,480,0,480,0,21 
        # objects: # (everywhere you want a person, cat, dog)
        #- person
        #- cat
        #- dog  
      #zone_1:
        #coordinates: 325,176,578,183,584,0,323,0   
        #objects: # (everywhere you want a car)
        #- car
    objects:
      track:
        - person
        #- car
        - dog
        - cat
      filters:
        #
        #car:
        #person:
        #
    record:
      enabled: true
      retain:
        days: 7
        mode: motion
      events:
        pre_capture: 5
        post_capture: 5
        objects:
        - person
        - dog
        - cat
        retain:
          default: 28
          mode: active_objects        

  barn: # no3 - barn - Cam name - Brand: Annke - Quality: 3k
    snapshots:
      enabled: true
      bounding_box: true
      quality: 99
    #  
    ffmpeg:
      output_args:
        record: preset-record-generic-audio-aac 
      hwaccel_args: preset-vaapi
      inputs:
        - path: rtsp://admin:annke2023@10.0.0.4:554/Streaming/Channels/102 # SD Link
          input_args: preset-rtsp-generic
          roles:
            - detect
        - path: rtsp://192.168.22.2:8554/barn%20HQ?mp4  # HD Link
          input_args: preset-rtsp-restream
          roles:
            - record
    detect:
      width: 768  
      height: 432
      fps: 4
      stationary:
        interval: 0
        threshold: 70
    objects:
      track:
        - person
        - dog
        - cat
      filters:
        #
        person:
          min_area: 2000
          max_area: 100000
          # Optional: minimum width/height of the bounding box for the detected object (default: 0)
          min_ratio: 0.6
          # Optional: maximum width/height of the bounding box for the detected object (default: 24000000)
          max_ratio: 2.0
          # Optional: minimum score for the object to initiate tracking (default: shown below)
          min_score: 0.6
          # Optional: minimum decimal percentage for tracked object's computed score to be considered a true positive (default: shown below)
          threshold: 0.7    
    record:
      enabled: true
      retain:
        days: 7
        mode: motion
      events:
        pre_capture: 5
        post_capture: 5
        objects:
        - person
        - dog
        - cat
        retain:
          default: 28
          mode: active_objects         

# Optional
ui:
  # Optional: Set the default live mode for cameras in the UI (default: shown below)
  live_mode: mse
  # Optional: Set a timezone to use in the UI (default: use browser local time)
  # timezone: America/Denver
  # Optional: Use an experimental recordings / camera view UI (default: shown below)
  use_experimental: True  

    # Optional: Telemetry configuration
telemetry:
  # Optional: Enable the latest version outbound check (default: shown below)
  # NOTE: If you use the HomeAssistant integration, disabling this will prevent it from reporting new versions
  version_check: True

Relevant log output

road_1080p in the last 120s. restarting the ffmpeg record process...
2023-09-29 14:43:55.662746442  [2023-09-29 14:43:55] watchdog.road_1080p            INFO    : Terminating the existing ffmpeg process...
2023-09-29 14:43:55.662791067  [2023-09-29 14:43:55] watchdog.road_1080p            INFO    : Waiting for ffmpeg to exit gracefully...
2023-09-29 14:44:05.673233477  [2023-09-29 14:44:05] watchdog.road_1080p            ERROR   : No new recording segments were created for road_1080p in the last 120s. restarting the ffmpeg record process...
2023-09-29 14:44:05.673331603  [2023-09-29 14:44:05] watchdog.road_1080p            INFO    : Terminating the existing ffmpeg process...
2023-09-29 14:44:05.673393277  [2023-09-29 14:44:05] watchdog.road_1080p            INFO    : Waiting for ffmpeg to exit gracefully...
2023-09-29 14:44:15.686341674  [2023-09-29 14:44:15] watchdog.road_1080p            ERROR   : No new recording segments were created for road_1080p in the last 120s. restarting the ffmpeg record process...
2023-09-29 14:44:15.686496606  [2023-09-29 14:44:15] watchdog.road_1080p            INFO    : Terminating the existing ffmpeg process...
2023-09-29 14:44:15.686592073  [2023-09-29 14:44:15] watchdog.road_1080p            INFO    : Waiting for ffmpeg to exit gracefully...
2023-09-29 14:44:25.697736002  [2023-09-29 14:44:25] watchdog.road_1080p            ERROR   : No new recording segments were created for road_1080p in the last 120s. restarting the ffmpeg record process...
2023-09-29 14:44:25.697854266  [2023-09-29 14:44:25] watchdog.road_1080p            INFO    : Terminating the existing ffmpeg process...
2023-09-29 14:44:25.697925339  [2023-09-29 14:44:25] watchdog.road_1080p            INFO    : Waiting for ffmpeg to exit gracefully...

FFprobe output from your camera

Bird Cam

FFPROBE OUTPUT
Stream 0:
Return Code: 0

Video:

Codec: H.265 / HEVC (High Efficiency Video Coding)
Resolution: 640x360
FPS: 4/1

Audio:

Codec: AAC (Advanced Audio Coding)

Stream 1:
Return Code: 0

Video:

Codec: H.265 / HEVC (High Efficiency Video Coding)
Resolution: 3072x1728
FPS: 20/1

Audio:

Codec: AAC (Advanced Audio Coding)

Frigate stats

No response

Operating system

UNRAID

Install method

Docker Compose

Coral version

USB

Network connection

Wired

Camera make and model

annke c500

Any other information that may be helpful

Noticed certain clips are not being recorded and only end up with a black square and audio... Specificy bird cam.

snapshot-1695798531 678319-kuj32u

https://github.com/blakeblackshear/frigate/assets/103341262/c26b34d4-1d6a-439f-a2fd-dc2c9857ddc0

NickM-27 commented 1 year ago

what version of go2rtc are you running?

dopeytree commented 1 year ago

ah yes go2rtc Version: 1.7.1

Should I roll back to another version?

dopeytree commented 1 year ago
2023-09-27 10:01:12.194957418  [INFO] Preparing go2rtc config...
2023-09-27 10:01:12.731020266  [WARN] Using go2rtc binary from '/config/go2rtc' instead of the embedded one
2023-09-27 10:01:12.731026192  [INFO] Starting go2rtc...
2023-09-27 10:01:12.829046755  10:01:12.828 INF go2rtc version 1.7.1 linux/amd64
2023-09-27 10:01:12.834137300  10:01:12.830 INF [api] listen addr=0.0.0.0:1984
2023-09-27 10:01:12.834172409  10:01:12.831 INF [rtsp] listen addr=0.0.0.0:8554
2023-09-27 10:01:12.834174023  10:01:12.832 INF [webrtc] listen addr=0.0.0.0:8555/tcp
2023-09-27 10:01:22.195513850  [INFO] Starting go2rtc healthcheck service...
2023-09-27 10:01:58.718075065  10:01:58.718 WRN error="websocket: the client is not using the websocket protocol: 'websocket' token not found in 'Upgrade' header"
2023-09-27 19:49:26.072047214  19:49:26.071 ERR github.com/AlexxIT/go2rtc/internal/hls/hls.go:218 > error="write tcp 127.0.0.1:1984->127.0.0.1:54014: write: broken pipe"
2023-09-27 19:49:28.507546534  19:49:28.507 WRN [hls] can't get init id=X1EomhMW
2023-09-28 17:25:38.447073367  17:25:38.447 WRN error="websocket: the client is not using the websocket protocol: 'websocket' token not found in 'Upgrade' header"
2023-09-28 17:26:30.777552013  17:26:30.777 WRN [hls] can't get init id=U1BZqFBJ
2023-09-28 17:26:30.777605771  17:26:30.777 WRN [hls] can't get init id=553aXgXi
2023-09-28 19:33:56.734006294  19:33:56.733 WRN [hls] can't get init id=o3nYPJqQ
2023-09-28 19:33:56.744410170  19:33:56.744 WRN [hls] can't get init id=FizCJC53
2023-09-28 19:33:56.744416851  19:33:56.744 WRN [hls] can't get init id=d3rstEJd
2023-09-28 19:33:57.462509579  19:33:57.462 ERR github.com/AlexxIT/go2rtc/internal/hls/hls.go:218 > error="write tcp 127.0.0.1:1984->127.0.0.1:40930: write: broken pipe"
2023-09-28 19:33:57.563504092  19:33:57.563 ERR github.com/AlexxIT/go2rtc/internal/hls/hls.go:218 > error="write tcp 127.0.0.1:1984->127.0.0.1:40914: write: broken pipe"
2023-09-28 19:33:57.619058962  19:33:57.618 ERR github.com/AlexxIT/go2rtc/internal/hls/hls.go:218 > error="write tcp 127.0.0.1:1984->127.0.0.1:45654: write: broken pipe"
2023-09-28 19:58:22.889903432  19:58:22.882 WRN github.com/AlexxIT/go2rtc/internal/streams/producer.go:171 > error="read tcp 172.17.0.3:40660->10.0.0.7:554: i/o timeout" url=rtsp://admin:annke2023@10.0.0.7:554/H265/ch1/main/av_stream
2023-09-28 19:58:22.902725791  19:58:22.902 WRN github.com/AlexxIT/go2rtc/internal/streams/producer.go:171 > error="read tcp 172.17.0.3:50358->10.0.0.3:554: i/o timeout" url=rtsp://admin:annke2023@10.0.0.3:554/H265/ch1/main/av_stream
2023-09-28 19:58:22.905763792  19:58:22.905 WRN github.com/AlexxIT/go2rtc/internal/streams/producer.go:171 > error="read tcp 172.17.0.3:55114->10.0.0.2:554: i/o timeout" url=rtsp://admin:annke2023@10.0.0.2:554/H265/ch1/main/av_stream
2023-09-28 19:58:22.907904004  19:58:22.907 WRN github.com/AlexxIT/go2rtc/internal/streams/producer.go:171 > error="read tcp 172.17.0.3:46272->10.0.0.4:554: i/o timeout" url=rtsp://admin:annke2023@10.0.0.4:554/H265/ch1/main/av_stream
2023-09-28 19:58:35.888317027  19:58:35.888 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: i/o timeout" stream="bird_cam HQ"
2023-09-28 19:58:35.906546404  19:58:35.906 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: i/o timeout" stream="porch_cam HQ"
2023-09-28 19:58:35.908698627  19:58:35.908 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: i/o timeout" stream="road_cam HQ"
2023-09-28 19:58:35.910906901  19:58:35.910 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: i/o timeout" stream="barn HQ"
2023-09-28 19:58:44.697623169  19:58:44.697 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: i/o timeout" stream="porch_cam HQ"
2023-09-28 19:58:44.697627212  19:58:44.697 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: i/o timeout" stream="barn HQ"
2023-09-28 19:58:44.697628861  19:58:44.697 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: i/o timeout" stream="road_cam HQ"
2023-09-28 19:58:44.700825945  19:58:44.700 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: i/o timeout" stream="bird_cam HQ"
2023-09-28 19:58:53.021658487  19:58:53.021 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: connect: no route to host, dial tcp 10.0.0.2:554: i/o timeout" stream="road_cam HQ"
2023-09-28 19:58:53.021664514  19:58:53.021 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: connect: no route to host, dial tcp 10.0.0.3:554: i/o timeout" stream="porch_cam HQ"
2023-09-28 19:58:53.021699127  19:58:53.021 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: connect: no route to host, dial tcp 10.0.0.7:554: i/o timeout" stream="bird_cam HQ"
2023-09-28 19:58:53.021717915  19:58:53.021 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: connect: no route to host, dial tcp 10.0.0.4:554: i/o timeout" stream="barn HQ"
2023-09-28 19:59:04.714230234  19:59:04.714 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: i/o timeout" stream="porch_cam HQ"
2023-09-28 19:59:04.714267897  19:59:04.714 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: i/o timeout" stream="bird_cam HQ"
2023-09-28 19:59:04.715480271  19:59:04.715 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: i/o timeout" stream="barn HQ"
2023-09-28 19:59:04.715501583  19:59:04.715 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: i/o timeout" stream="road_cam HQ"
2023-09-28 19:59:11.964936718  19:59:11.964 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: connect: no route to host, dial tcp 10.0.0.7:554: i/o timeout" stream="bird_cam HQ"
2023-09-28 19:59:11.965004617  19:59:11.964 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: connect: no route to host, dial tcp 10.0.0.2:554: i/o timeout" stream="road_cam HQ"
2023-09-28 19:59:11.965020831  19:59:11.964 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: connect: no route to host, dial tcp 10.0.0.4:554: i/o timeout" stream="barn HQ"
2023-09-28 19:59:11.965095124  19:59:11.964 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: connect: no route to host, dial tcp 10.0.0.3:554: i/o timeout" stream="porch_cam HQ"
2023-09-28 19:59:24.444862439  19:59:24.444 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: connect: no route to host, dial tcp 10.0.0.4:554: i/o timeout" stream="barn HQ"
2023-09-28 19:59:24.444916633  19:59:24.444 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: connect: no route to host, dial tcp 10.0.0.3:554: i/o timeout" stream="porch_cam HQ"
2023-09-28 19:59:24.444924838  19:59:24.444 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: connect: no route to host, dial tcp 10.0.0.7:554: i/o timeout" stream="bird_cam HQ"
2023-09-28 19:59:24.444987625  19:59:24.444 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: connect: no route to host, dial tcp 10.0.0.2:554: i/o timeout" stream="road_cam HQ"
2023-09-28 19:59:34.492664720  19:59:34.492 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: connect: no route to host, dial tcp 10.0.0.3:554: i/o timeout" stream="porch_cam HQ"
2023-09-28 19:59:34.492688088  19:59:34.492 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: connect: no route to host, dial tcp 10.0.0.4:554: i/o timeout" stream="barn HQ"
2023-09-28 19:59:34.492689874  19:59:34.492 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: connect: no route to host, dial tcp 10.0.0.7:554: i/o timeout" stream="bird_cam HQ"
2023-09-28 19:59:34.492720269  19:59:34.492 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: connect: no route to host, dial tcp 10.0.0.2:554: i/o timeout" stream="road_cam HQ"
2023-09-28 19:59:43.709634853  19:59:43.709 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: connect: no route to host, dial tcp 10.0.0.3:554: i/o timeout" stream="porch_cam HQ"
2023-09-28 19:59:43.709639451  19:59:43.709 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: connect: no route to host, dial tcp 10.0.0.2:554: i/o timeout" stream="road_cam HQ"
2023-09-28 19:59:43.709674007  19:59:43.709 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: connect: no route to host, dial tcp 10.0.0.7:554: i/o timeout" stream="bird_cam HQ"
2023-09-28 19:59:43.709716446  19:59:43.709 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: connect: no route to host, dial tcp 10.0.0.4:554: i/o timeout" stream="barn HQ"
2023-09-28 19:59:52.996532392  19:59:52.996 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: i/o timeout, dial tcp 10.0.0.7:554: connect: no route to host" stream="bird_cam HQ"
2023-09-28 19:59:52.996539653  19:59:52.996 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: i/o timeout, dial tcp 10.0.0.3:554: connect: no route to host" stream="porch_cam HQ"
2023-09-28 19:59:52.996541532  19:59:52.996 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: i/o timeout, dial tcp 10.0.0.2:554: connect: no route to host" stream="road_cam HQ"
2023-09-28 19:59:52.997242627  19:59:52.996 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: i/o timeout, dial tcp 10.0.0.4:554: connect: no route to host" stream="barn HQ"
2023-09-28 20:24:58.865913521  20:24:58.865 WRN [hls] can't get init id=6GESqHl5
2023-09-28 20:24:59.011371512  20:24:59.011 WRN [hls] can't get init id=QKYZSECj
2023-09-28 20:24:59.011465593  20:24:59.011 WRN [hls] can't get init id=fip36N4Y
2023-09-28 20:26:03.619622169  20:26:03.619 WRN github.com/AlexxIT/go2rtc/internal/streams/producer.go:171 > error="read tcp 172.17.0.3:37080->10.0.0.3:554: i/o timeout" url=rtsp://admin:annke2023@10.0.0.3:554/H265/ch1/main/av_stream
2023-09-28 20:26:03.621730085  20:26:03.621 WRN github.com/AlexxIT/go2rtc/internal/streams/producer.go:171 > error="read tcp 172.17.0.3:45802->10.0.0.7:554: i/o timeout" url=rtsp://admin:annke2023@10.0.0.7:554/H265/ch1/main/av_stream
2023-09-28 20:26:03.635867090  20:26:03.635 WRN github.com/AlexxIT/go2rtc/internal/streams/producer.go:171 > error="read tcp 172.17.0.3:42348->10.0.0.2:554: i/o timeout" url=rtsp://admin:annke2023@10.0.0.2:554/H265/ch1/main/av_stream
2023-09-28 20:26:03.643019583  20:26:03.642 WRN github.com/AlexxIT/go2rtc/internal/streams/producer.go:171 > error="read tcp 172.17.0.3:55056->10.0.0.4:554: i/o timeout" url=rtsp://admin:annke2023@10.0.0.4:554/H265/ch1/main/av_stream
2023-09-28 20:26:16.623446882  20:26:16.623 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: i/o timeout" stream="porch_cam HQ"
2023-09-28 20:26:16.623654996  20:26:16.623 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: i/o timeout" stream="bird_cam HQ"
2023-09-28 20:26:16.639619338  20:26:16.639 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: i/o timeout" stream="road_cam HQ"
2023-09-28 20:26:16.647797915  20:26:16.647 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: i/o timeout" stream="barn HQ"
2023-09-28 20:26:24.890986736  20:26:24.890 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: i/o timeout" stream="porch_cam HQ"
2023-09-28 20:26:24.892098458  20:26:24.892 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: i/o timeout" stream="road_cam HQ"
2023-09-28 20:26:24.893238793  20:26:24.893 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: i/o timeout" stream="bird_cam HQ"
2023-09-28 20:26:24.896450285  20:26:24.896 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: i/o timeout" stream="barn HQ"
2023-09-28 20:26:34.899674140  20:26:34.899 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: i/o timeout" stream="porch_cam HQ"
2023-09-28 20:26:34.902833247  20:26:34.902 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: i/o timeout" stream="bird_cam HQ"
2023-09-28 20:26:34.902851162  20:26:34.902 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: i/o timeout" stream="road_cam HQ"
2023-09-28 20:26:34.902857200  20:26:34.902 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: i/o timeout" stream="barn HQ"
2023-09-28 20:26:42.524742556  20:26:42.524 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: connect: no route to host, dial tcp 10.0.0.4:554: i/o timeout" stream="barn HQ"
2023-09-28 20:26:42.524749247  20:26:42.524 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: connect: no route to host, dial tcp 10.0.0.7:554: i/o timeout" stream="bird_cam HQ"
2023-09-28 20:26:42.524751143  20:26:42.524 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: connect: no route to host, dial tcp 10.0.0.2:554: i/o timeout" stream="road_cam HQ"
2023-09-28 20:26:42.524814475  20:26:42.524 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: connect: no route to host, dial tcp 10.0.0.3:554: i/o timeout" stream="porch_cam HQ"
2023-09-28 20:26:52.572156053  20:26:52.572 WRN [rtsp] error="streams: dial tcp 10.0.0.2:554: connect: no route to host, dial tcp 10.0.0.2:554: i/o timeout" stream="road_cam HQ"
2023-09-28 20:26:52.572189310  20:26:52.572 WRN [rtsp] error="streams: dial tcp 10.0.0.3:554: connect: no route to host, dial tcp 10.0.0.3:554: i/o timeout" stream="porch_cam HQ"
2023-09-28 20:26:52.572191332  20:26:52.572 WRN [rtsp] error="streams: dial tcp 10.0.0.4:554: connect: no route to host, dial tcp 10.0.0.4:554: i/o timeout" stream="barn HQ"
2023-09-28 20:26:52.572284201  20:26:52.572 WRN [rtsp] error="streams: dial tcp 10.0.0.7:554: connect: no route to host, dial tcp 10.0.0.7:554: i/o timeout" stream="bird_cam HQ"
2023-09-28 21:07:47.601250467  21:07:47.601 WRN [hls] can't get init id=GylkPCB1
2023-09-29 12:37:54.260414995  12:37:54.260 WRN [hls] can't get init id=PcHsNLaw
2023-09-29 12:37:54.396898831  12:37:54.396 ERR github.com/AlexxIT/go2rtc/internal/hls/hls.go:218 > error="write tcp 127.0.0.1:1984->127.0.0.1:33362: write: broken pipe"
2023-09-29 12:37:59.557501906  12:37:59.557 WRN [hls] can't get init id=ZbP4Oo36
2023-09-29 12:37:59.557506250  12:37:59.557 WRN [hls] can't get init id=yyQ8nScj
NickM-27 commented 1 year ago

no route to host, dial tcp 10.0.0.4:554: i/o timeout

the network appears to be having many problems

dopeytree commented 1 year ago

They might just be errors related to me updating the firewall router (pfsense). I'll keep an eye on it and see if it happens again next 24 hours.

NickM-27 commented 1 year ago

generally this issue happens when go2rtc reconnects to the camera but only audio data is included so video is not sent. It might be reduced by using "ffmpeg:rtsp://..." instead

dopeytree commented 1 year ago

Fixed for a while but now getting this no space on device error but there's over 700GB left..

2023-09-29 17:27:31.807168293  [2023-09-29 17:27:31] ffmpeg.road_cam.record         ERROR   :     Last message repeated 1 times
2023-09-29 17:27:31.807210014  [2023-09-29 17:27:31] ffmpeg.road_cam.record         ERROR   : [segment @ 0x56304edf3e00] Failure occurred when ending segment '/tmp/cache/road_cam-20230929172727.mp4'
2023-09-29 17:27:31.807249426  [2023-09-29 17:27:31] ffmpeg.road_cam.record         ERROR   : Error writing trailer of /tmp/cache/road_cam-%Y%m%d%H%M%S.mp4: No space left on device
2023-09-29 17:27:31.807290114  [2023-09-29 17:27:31] watchdog.road_cam              INFO    : Terminating the existing ffmpeg process...
2023-09-29 17:27:31.807328117  [2023-09-29 17:27:31] watchdog.road_cam              INFO    : Waiting for ffmpeg to exit gracefully...
2023-09-29 17:27:31.814869753  [2023-09-29 17:27:31] ffmpeg.barn.record             ERROR   : [segment @ 0x560f6a1dd340] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly
2023-09-29 17:27:31.814958893  [2023-09-29 17:27:31] ffmpeg.barn.record             ERROR   : [segment @ 0x560f6a1dd340] Failure occurred when ending segment '/tmp/cache/barn-20230929172717.mp4'
2023-09-29 17:27:31.815005146  [2023-09-29 17:27:31] ffmpeg.barn.record             ERROR   : av_interleaved_write_frame(): No space left on device
2023-09-29 17:27:31.815046623  [2023-09-29 17:27:31] ffmpeg.barn.record             ERROR   : Error writing trailer of /tmp/cache/barn-%Y%m%d%H%M%S.mp4: Invalid argument
2023-09-29 17:27:31.815085449  [2023-09-29 17:27:31] watchdog.barn                  INFO    : Terminating the existing ffmpeg process...
2023-09-29 17:27:31.815130156  [2023-09-29 17:27:31] watchdog.barn                  INFO    : Waiting for ffmpeg to exit gracefully...
2023-09-29 17:27:31.870658523  [2023-09-29 17:27:31] frigate.record                 WARNING : Failed to probe corrupt segment /tmp/cache/barn-20230929172717.mp4: 0 - b'[mov,mp4,m4a,3gp,3g2,mj2 @ 0x558d166866c0] moov atom not found\n/tmp/cache/barn-20230929172717.mp4: Invalid data found when processing input\n'
2023-09-29 17:27:31.870747960  [2023-09-29 17:27:31] frigate.record                 WARNING : Discarding a corrupt recording segment: /tmp/cache/barn-20230929172717.mp4
2023-09-29 17:27:31.894292766  [2023-09-29 17:27:31] frigate.record                 WARNING : Failed to probe corrupt segment /tmp/cache/bird_cam-20230929172717.mp4: 0 - b'[mov,mp4,m4a,3gp,3g2,mj2 @ 0x5615fc44a6c0] moov atom not found\n/tmp/cache/bird_cam-20230929172717.mp4: Invalid data found when processing input\n'
2023-09-29 17:27:31.894342854  [2023-09-29 17:27:31] frigate.record                 WARNING : Discarding a corrupt recording segment: /tmp/cache/bird_cam-20230929172717.mp4
NickM-27 commented 1 year ago

av_interleaved_write_frame(): No space left on device

not enough cache to write the segment, might want to increase the memory allocated to /tmp/cache in docker compose

dopeytree commented 1 year ago

Is it easy to do on unraid? Server has 128GB with around 30GB available.

NickM-27 commented 1 year ago

yes you just edit the extra_args section, the default alloted to tmpfs is only 100 MB

dopeytree commented 1 year ago

Like this?

<img width="845" alt="Screenshot 2023-09-29 at 18 41 19" src="https://github.com/blakeblackshear/frigate/assets/103341262/3951859e-314a-4d30-a1dd-2fd7e5e54981">

dopeytree commented 1 year ago

How would I confirm how much memory it has allocated?

NickM-27 commented 1 year ago

No, it is in the extra parameters section

dopeytree commented 1 year ago

Ah of course thanks nick

towerhand commented 1 year ago

I have had this issue happen to me a couple of times. These are the logs from the last time:

2023-09-30 13:31:35.548850283  [2023-09-30 13:31:35] ffmpeg.doorbell.detect         ERROR   : [segment @ 0x55c6df7eaa40] Non-monotonous DTS in output stream 0:0; previous: 788669030, current: 788669030; changing to 788669031. This may result in incorrect timestamps in the output file.
2023-09-30 13:31:35.548916696  [2023-09-30 13:31:35] ffmpeg.doorbell.detect         ERROR   : rtsp://192.168.55.14:8554/doorbell: Connection timed out
2023-09-30 13:31:35.548986331  [2023-09-30 13:31:35] ffmpeg.doorbell.detect         ERROR   :     Last message repeated 1 times
2023-09-30 13:31:37.570534141  [2023-09-30 13:31:37] watchdog.shed                  ERROR   : Ffmpeg process crashed unexpectedly for shed.
2023-09-30 13:31:37.570797496  [2023-09-30 13:31:37] watchdog.shed                  ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-09-30 13:31:37.570962872  [2023-09-30 13:31:37] ffmpeg.shed.detect             ERROR   : rtsp://192.168.55.14:8554/shed_sub: Connection timed out
2023-09-30 13:31:37.578487769  [2023-09-30 13:31:37] watchdog.driveway              ERROR   : Ffmpeg process crashed unexpectedly for driveway.
2023-09-30 13:31:37.578867361  [2023-09-30 13:31:37] ffmpeg.shed.detect             ERROR   :     Last message repeated 1 times
2023-09-30 13:31:37.578989236  [2023-09-30 13:31:37] watchdog.driveway              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-09-30 13:31:37.579064455  [2023-09-30 13:31:37] ffmpeg.driveway.detect         ERROR   : rtsp://192.168.55.14:8554/driveway_sub: Connection timed out
2023-09-30 13:31:37.579128835  [2023-09-30 13:31:37] ffmpeg.driveway.detect         ERROR   :     Last message repeated 1 times
2023-09-30 13:31:37.603031865  [2023-09-30 13:31:37] watchdog.corner                ERROR   : Ffmpeg process crashed unexpectedly for corner.
2023-09-30 13:31:37.603162862  [2023-09-30 13:31:37] watchdog.corner                ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-09-30 13:31:37.603238309  [2023-09-30 13:31:37] ffmpeg.corner.detect           ERROR   : rtsp://192.168.55.14:8554/corner_sub: Connection timed out
2023-09-30 13:31:37.603309941  [2023-09-30 13:31:37] ffmpeg.corner.detect           ERROR   :     Last message repeated 1 times
2023-09-30 13:31:37.607680224  [2023-09-30 13:31:37] watchdog.backyard              ERROR   : Ffmpeg process crashed unexpectedly for backyard.
2023-09-30 13:31:37.607940282  [2023-09-30 13:31:37] watchdog.backyard              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2023-09-30 13:31:37.608116808  [2023-09-30 13:31:37] ffmpeg.backyard.detect         ERROR   : rtsp://192.168.55.14:8554/backyard_sub: Connection timed out
2023-09-30 13:31:37.608118921  [2023-09-30 13:31:37] ffmpeg.backyard.detect         ERROR   :     Last message repeated 1 times
2023-09-30 13:31:38.624276026  [2023-09-30 13:31:38] audio.doorbell                 ERROR   : ffmpeg process is not running, restarting...
2023-09-30 13:31:40.563690121  [2023-09-30 13:31:40] ffmpeg.driveway.audio          ERROR   : [rtsp @ 0x55a0ab3c8a80] method DESCRIBE failed: 404 Not Found
2023-09-30 13:31:40.563849720  [2023-09-30 13:31:40] ffmpeg.driveway.audio          ERROR   : rtsp://192.168.55.14:8554/driveway?audio: Server returned 404 Not Found
2023-09-30 13:31:40.563933447  [2023-09-30 13:31:40] audio.driveway                 INFO    : Terminating the existing ffmpeg process...
2023-09-30 13:31:40.563989453  [2023-09-30 13:31:40] audio.driveway                 INFO    : Waiting for ffmpeg to exit gracefully...
2023-09-30 13:31:45.524700950  [ERROR:0@137525.128] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:31:45.524703967  
2023-09-30 13:31:45.524705998  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:31:45.524707119  
2023-09-30 13:31:45.524708181  
2023-09-30 13:31:45.541019798  [ERROR:0@137525.144] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:31:45.541022691  
2023-09-30 13:31:45.541024817  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:31:45.541025915  
2023-09-30 13:31:45.541026965  
2023-09-30 13:31:45.767788803  [ERROR:0@137525.371] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:31:45.767793340  
2023-09-30 13:31:45.767796373  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:31:45.767797795  
2023-09-30 13:31:45.767799071  
2023-09-30 13:31:48.636234848  [2023-09-30 13:31:48] ffmpeg.doorbell.audio          ERROR   : rtsp://192.168.55.14:8554/doorbell?audio: Connection timed out
2023-09-30 13:31:48.636335248  [2023-09-30 13:31:48] ffmpeg.doorbell.audio          ERROR   : Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)
2023-09-30 13:31:48.636419065  [2023-09-30 13:31:48] audio.doorbell                 INFO    : Terminating the existing ffmpeg process...
2023-09-30 13:31:48.636498044  [2023-09-30 13:31:48] audio.doorbell                 INFO    : Waiting for ffmpeg to exit gracefully...
2023-09-30 13:31:55.484117960  [ERROR:0@137535.087] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:31:55.484120883  
2023-09-30 13:31:55.484122418  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:31:55.484123408  
2023-09-30 13:31:55.484124342  
2023-09-30 13:31:55.500438187  [ERROR:0@137535.104] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:31:55.500440808  
2023-09-30 13:31:55.500442334  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:31:55.500443325  
2023-09-30 13:31:55.500444238  
2023-09-30 13:31:55.712604261  [ERROR:0@137535.316] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:31:55.712606900  
2023-09-30 13:31:55.712608440  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:31:55.712609392  
2023-09-30 13:31:55.712610283  
2023-09-30 13:32:05.484688919  [ERROR:0@137545.088] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:05.484693446  
2023-09-30 13:32:05.484695285  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:05.484696445  
2023-09-30 13:32:05.484697561  
2023-09-30 13:32:05.505311198  [ERROR:0@137545.109] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:05.505314179  
2023-09-30 13:32:05.505316225  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:05.505317345  
2023-09-30 13:32:05.505318344  
2023-09-30 13:32:05.748206683  [ERROR:0@137545.351] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:05.748209412  
2023-09-30 13:32:05.748210888  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:05.748211811  
2023-09-30 13:32:05.748212702  
2023-09-30 13:32:15.487162511  [ERROR:0@137555.090] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:15.487166652  
2023-09-30 13:32:15.487169198  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:15.487170463  
2023-09-30 13:32:15.487171669  
2023-09-30 13:32:15.505071861  [ERROR:0@137555.108] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:15.505074618  
2023-09-30 13:32:15.505076112  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:15.505077079  
2023-09-30 13:32:15.505077994  
2023-09-30 13:32:15.771967151  [ERROR:0@137555.375] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:15.771970044  
2023-09-30 13:32:15.771971603  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:15.771972565  
2023-09-30 13:32:15.771973486  
2023-09-30 13:32:25.482694618  [ERROR:0@137565.086] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:25.482697366  
2023-09-30 13:32:25.482698872  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:25.482699813  
2023-09-30 13:32:25.482700701  
2023-09-30 13:32:25.499865670  [ERROR:0@137565.103] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:25.499869369  
2023-09-30 13:32:25.499871823  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:25.499873475  
2023-09-30 13:32:25.499874589  
2023-09-30 13:32:25.751714805  [ERROR:0@137565.355] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:25.751717595  
2023-09-30 13:32:25.751719158  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:25.751720154  
2023-09-30 13:32:25.751721057  
2023-09-30 13:32:35.484440187  [ERROR:0@137575.088] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:35.484445666  
2023-09-30 13:32:35.484447492  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:35.484448932  
2023-09-30 13:32:35.484449963  
2023-09-30 13:32:35.500594668  [ERROR:0@137575.104] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:35.500598799  
2023-09-30 13:32:35.500601065  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:35.500602318  
2023-09-30 13:32:35.500603609  
2023-09-30 13:32:35.680293499  [ERROR:0@137575.283] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:35.680296423  
2023-09-30 13:32:35.680297949  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:35.680298895  
2023-09-30 13:32:35.680299805  
2023-09-30 13:32:45.483042430  [ERROR:0@137585.086] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:45.483045347  
2023-09-30 13:32:45.483046881  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:45.483047840  
2023-09-30 13:32:45.483048723  
2023-09-30 13:32:45.499917810  [ERROR:0@137585.103] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:45.499921345  
2023-09-30 13:32:45.499923901  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:45.499925323  
2023-09-30 13:32:45.499926611  
2023-09-30 13:32:45.722705279  [ERROR:0@137585.326] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:45.722708443  
2023-09-30 13:32:45.722710020  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:45.722710983  
2023-09-30 13:32:45.722711871  
2023-09-30 13:32:55.483376631  [ERROR:0@137595.087] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:55.483379039  
2023-09-30 13:32:55.483380539  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:55.483381505  
2023-09-30 13:32:55.483382397  
2023-09-30 13:32:55.497357846  [ERROR:0@137595.101] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:55.497362251  
2023-09-30 13:32:55.497365214  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:55.497366617  
2023-09-30 13:32:55.497368116  
2023-09-30 13:32:55.731307399  [ERROR:0@137595.335] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:32:55.731310123  
2023-09-30 13:32:55.731311666  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:32:55.731312627  
2023-09-30 13:32:55.731313575  
2023-09-30 13:33:05.487863426  [ERROR:0@137605.091] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:05.487866013  
2023-09-30 13:33:05.487867616  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:05.487868631  
2023-09-30 13:33:05.487869468  
2023-09-30 13:33:05.500949866  [ERROR:0@137605.104] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:05.500952281  
2023-09-30 13:33:05.500953810  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:05.500954793  
2023-09-30 13:33:05.500955711  
2023-09-30 13:33:05.659961693  [ERROR:0@137605.263] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:05.659964346  
2023-09-30 13:33:05.659965906  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:05.659966942  
2023-09-30 13:33:05.659967801  
2023-09-30 13:33:15.484784253  [ERROR:0@137615.088] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:15.484787091  
2023-09-30 13:33:15.484788564  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:15.484789513  
2023-09-30 13:33:15.484790389  
2023-09-30 13:33:15.496463067  [ERROR:0@137615.100] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:15.496465705  
2023-09-30 13:33:15.496467245  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:15.496468200  
2023-09-30 13:33:15.496469106  
2023-09-30 13:33:15.756933626  [ERROR:0@137615.360] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:15.756936472  
2023-09-30 13:33:15.756938024  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:15.756939043  
2023-09-30 13:33:15.756940026  
2023-09-30 13:33:25.483698064  [ERROR:0@137625.087] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:25.483701136  
2023-09-30 13:33:25.483702620  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:25.483703546  
2023-09-30 13:33:25.483704419  
2023-09-30 13:33:25.496226352  [ERROR:0@137625.099] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:25.496229321  
2023-09-30 13:33:25.496230834  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:25.496231822  
2023-09-30 13:33:25.496232730  
2023-09-30 13:33:25.688298223  [ERROR:0@137625.292] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:25.688300850  
2023-09-30 13:33:25.688302368  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:25.688303403  
2023-09-30 13:33:25.688304335  
2023-09-30 13:33:35.483967699  [ERROR:0@137635.087] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:35.483970533  
2023-09-30 13:33:35.483972037  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:35.483972969  
2023-09-30 13:33:35.483973832  
2023-09-30 13:33:35.499422348  [ERROR:0@137635.103] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:35.499425666  
2023-09-30 13:33:35.499427160  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:35.499428161  
2023-09-30 13:33:35.499429072  
2023-09-30 13:33:35.666373645  [ERROR:0@137635.270] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:35.666376373  
2023-09-30 13:33:35.666377959  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:35.666378970  
2023-09-30 13:33:35.666379882  
2023-09-30 13:33:45.485731798  [ERROR:0@137645.089] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:45.485734231  
2023-09-30 13:33:45.485735672  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:45.485736585  
2023-09-30 13:33:45.485737474  
2023-09-30 13:33:45.497645737  [ERROR:0@137645.101] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:45.497648616  
2023-09-30 13:33:45.497650147  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:45.497651143  
2023-09-30 13:33:45.497652069  
2023-09-30 13:33:45.686315435  [ERROR:0@137645.290] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:45.686318204  
2023-09-30 13:33:45.686319740  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:45.686320713  
2023-09-30 13:33:45.686321596  
2023-09-30 13:33:55.489032358  [ERROR:0@137655.092] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:55.489035612  
2023-09-30 13:33:55.489037077  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:55.489037990  
2023-09-30 13:33:55.489038882  
2023-09-30 13:33:55.502174220  [ERROR:0@137655.105] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:55.502177704  
2023-09-30 13:33:55.502180730  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:55.502181912  
2023-09-30 13:33:55.502183114  
2023-09-30 13:33:55.760993710  [ERROR:0@137655.364] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:33:55.760997519  
2023-09-30 13:33:55.761000067  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:33:55.761001647  
2023-09-30 13:33:55.761003028  
2023-09-30 13:34:05.486371651  [ERROR:0@137665.090] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:05.486374569  
2023-09-30 13:34:05.486376148  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:05.486377157  
2023-09-30 13:34:05.486378060  
2023-09-30 13:34:05.499051220  [ERROR:0@137665.102] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:05.499054154  
2023-09-30 13:34:05.499055690  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:05.499056656  
2023-09-30 13:34:05.499057478  
2023-09-30 13:34:05.649890584  [ERROR:0@137665.253] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:05.649894168  
2023-09-30 13:34:05.649896725  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:05.649898072  
2023-09-30 13:34:05.649899190  
2023-09-30 13:34:15.489222040  [ERROR:0@137675.092] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:15.489224461  
2023-09-30 13:34:15.489225960  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:15.489226924  
2023-09-30 13:34:15.489227831  
2023-09-30 13:34:15.501540528  [ERROR:0@137675.105] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:15.501543542  
2023-09-30 13:34:15.501545045  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:15.501546033  
2023-09-30 13:34:15.501546929  
2023-09-30 13:34:15.765057608  [ERROR:0@137675.368] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:15.765061428  
2023-09-30 13:34:15.765063361  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:15.765064473  
2023-09-30 13:34:15.765065572  
2023-09-30 13:34:25.488476422  [ERROR:0@137685.092] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:25.488480322  
2023-09-30 13:34:25.488482830  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:25.488484409  
2023-09-30 13:34:25.488485745  
2023-09-30 13:34:25.500997509  [ERROR:0@137685.104] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:25.501001386  
2023-09-30 13:34:25.501003979  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:25.501005544  
2023-09-30 13:34:25.501006570  
2023-09-30 13:34:25.662418184  [ERROR:0@137685.266] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:25.662420862  
2023-09-30 13:34:25.662422437  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:25.662423415  
2023-09-30 13:34:25.662424353  
2023-09-30 13:34:35.487438752  [ERROR:0@137695.091] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:35.487441467  
2023-09-30 13:34:35.487443059  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:35.487444039  
2023-09-30 13:34:35.487444993  
2023-09-30 13:34:35.501677468  [ERROR:0@137695.105] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:35.501680141  
2023-09-30 13:34:35.501681681  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:35.501682668  
2023-09-30 13:34:35.501683566  
2023-09-30 13:34:35.746532717  [ERROR:0@137695.350] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:35.746535864  
2023-09-30 13:34:35.746537379  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:35.746538359  
2023-09-30 13:34:35.746539271  
2023-09-30 13:34:45.489921683  [ERROR:0@137705.093] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:45.489924448  
2023-09-30 13:34:45.489926046  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:45.489927110  
2023-09-30 13:34:45.489928084  
2023-09-30 13:34:45.503414541  [ERROR:0@137705.107] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:45.503417035  
2023-09-30 13:34:45.503418565  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:45.503419552  
2023-09-30 13:34:45.503420506  
2023-09-30 13:34:45.747745328  [ERROR:0@137705.351] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:45.747748497  
2023-09-30 13:34:45.747750037  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:45.747751052  
2023-09-30 13:34:45.747751995  
2023-09-30 13:34:55.489443934  [ERROR:0@137715.093] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:55.489446518  
2023-09-30 13:34:55.489448059  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:55.489449005  
2023-09-30 13:34:55.489449937  
2023-09-30 13:34:55.503414695  [ERROR:0@137715.107] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:55.503417372  
2023-09-30 13:34:55.503418866  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:55.503419853  
2023-09-30 13:34:55.503420761  
2023-09-30 13:34:55.674085693  [ERROR:0@137715.277] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:34:55.674088316  
2023-09-30 13:34:55.674089828  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:34:55.674090788  
2023-09-30 13:34:55.674091702  
2023-09-30 13:35:05.489334463  [ERROR:0@137725.093] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:05.489337298  
2023-09-30 13:35:05.489338840  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:05.489339808  
2023-09-30 13:35:05.489340718  
2023-09-30 13:35:05.502550255  [ERROR:0@137725.106] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:05.502552927  
2023-09-30 13:35:05.502554458  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:05.502555413  
2023-09-30 13:35:05.502556297  
2023-09-30 13:35:05.743362514  [ERROR:0@137725.347] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:05.743365179  
2023-09-30 13:35:05.743366717  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:05.743367677  
2023-09-30 13:35:05.743368507  
2023-09-30 13:35:15.492854888  [ERROR:0@137735.096] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:15.492857720  
2023-09-30 13:35:15.492859387  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:15.492860353  
2023-09-30 13:35:15.492861288  
2023-09-30 13:35:15.505254727  [ERROR:0@137735.108] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:15.505257389  
2023-09-30 13:35:15.505258904  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:15.505259844  
2023-09-30 13:35:15.505260773  
2023-09-30 13:35:15.725088795  [ERROR:0@137735.328] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:15.725091497  
2023-09-30 13:35:15.725093047  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:15.725094033  
2023-09-30 13:35:15.725094943  
2023-09-30 13:35:25.488341485  [ERROR:0@137745.092] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:25.488344672  
2023-09-30 13:35:25.488346236  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:25.488347173  
2023-09-30 13:35:25.488348071  
2023-09-30 13:35:25.501074843  [ERROR:0@137745.104] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:25.501077892  
2023-09-30 13:35:25.501079929  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:25.501081047  
2023-09-30 13:35:25.501082126  
2023-09-30 13:35:25.773336769  [ERROR:0@137745.377] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:25.773339566  
2023-09-30 13:35:25.773341169  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:25.773342173  
2023-09-30 13:35:25.773343112  
2023-09-30 13:35:35.489940728  [ERROR:0@137755.093] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:35.489943664  
2023-09-30 13:35:35.489945741  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:35.489946865  
2023-09-30 13:35:35.489947877  
2023-09-30 13:35:35.502815178  [ERROR:0@137755.106] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:35.502819604  
2023-09-30 13:35:35.502821420  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:35.502822516  
2023-09-30 13:35:35.502823569  
2023-09-30 13:35:35.705254357  [ERROR:0@137755.307] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:35.705258133  
2023-09-30 13:35:35.705260903  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:35.705262369  
2023-09-30 13:35:35.705263755  
2023-09-30 13:35:45.489132418  [ERROR:0@137765.092] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:45.489135229  
2023-09-30 13:35:45.489136680  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:45.489137667  
2023-09-30 13:35:45.489138563  
2023-09-30 13:35:45.503218652  [ERROR:0@137765.106] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:45.503221354  
2023-09-30 13:35:45.503222874  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:45.503223878  
2023-09-30 13:35:45.503224800  
2023-09-30 13:35:45.599573364  [ERROR:0@137765.203] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:45.599577487  
2023-09-30 13:35:45.599580248  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:45.599597467  
2023-09-30 13:35:45.599598509  
2023-09-30 13:35:55.498550622  [ERROR:0@137775.102] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:55.498554360  
2023-09-30 13:35:55.498556773  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:55.498558007  
2023-09-30 13:35:55.498559321  
2023-09-30 13:35:55.512473294  [ERROR:0@137775.116] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:55.512477247  
2023-09-30 13:35:55.512479214  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:55.512480542  
2023-09-30 13:35:55.512481921  
2023-09-30 13:35:55.674392165  [ERROR:0@137775.278] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:35:55.674395036  
2023-09-30 13:35:55.674396577  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:35:55.674397521  
2023-09-30 13:35:55.674398422  
2023-09-30 13:36:05.499712961  [ERROR:0@137785.103] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:05.499716666  
2023-09-30 13:36:05.499719369  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:05.499720428  
2023-09-30 13:36:05.499721668  
2023-09-30 13:36:05.511762925  [ERROR:0@137785.115] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:05.511779153  
2023-09-30 13:36:05.511781402  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:05.511782857  
2023-09-30 13:36:05.511784284  
2023-09-30 13:36:05.612296075  [ERROR:0@137785.216] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:05.612300097  
2023-09-30 13:36:05.612301838  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:05.612303002  
2023-09-30 13:36:05.612304321  
2023-09-30 13:36:15.488824804  [ERROR:0@137795.092] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:15.488828780  
2023-09-30 13:36:15.488831499  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:15.488832577  
2023-09-30 13:36:15.488833782  
2023-09-30 13:36:15.501483124  [ERROR:0@137795.105] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:15.501487126  
2023-09-30 13:36:15.501489716  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:15.501491175  
2023-09-30 13:36:15.501492263  
2023-09-30 13:36:15.654719391  [ERROR:0@137795.258] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:15.654722266  
2023-09-30 13:36:15.654724260  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:15.654725428  
2023-09-30 13:36:15.654726490  
2023-09-30 13:36:25.494193161  [ERROR:0@137805.097] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:25.494197182  
2023-09-30 13:36:25.494199644  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:25.494214354  
2023-09-30 13:36:25.494215601  
2023-09-30 13:36:25.507498178  [ERROR:0@137805.111] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:25.507502053  
2023-09-30 13:36:25.507504688  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:25.507506312  
2023-09-30 13:36:25.507507691  
2023-09-30 13:36:25.587253009  [ERROR:0@137805.190] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:25.587256670  
2023-09-30 13:36:25.587259182  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:25.587260517  
2023-09-30 13:36:25.587261868  
2023-09-30 13:36:35.496823427  [ERROR:0@137815.100] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:35.496828076  
2023-09-30 13:36:35.496831098  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:35.496832557  
2023-09-30 13:36:35.496834059  
2023-09-30 13:36:35.511383268  [ERROR:0@137815.115] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:35.511387790  
2023-09-30 13:36:35.511389853  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:35.511391174  
2023-09-30 13:36:35.511392609  
2023-09-30 13:36:35.701141036  [ERROR:0@137815.304] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:35.701145386  
2023-09-30 13:36:35.701147575  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:35.701148924  
2023-09-30 13:36:35.701150502  
2023-09-30 13:36:45.492298277  [ERROR:0@137825.096] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:45.492302363  
2023-09-30 13:36:45.492305160  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:45.492306753  
2023-09-30 13:36:45.492308007  
2023-09-30 13:36:45.505992609  [ERROR:0@137825.109] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:45.505996089  
2023-09-30 13:36:45.505998525  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:45.506000047  
2023-09-30 13:36:45.506001529  
2023-09-30 13:36:45.685297770  [ERROR:0@137825.288] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:45.685306417  
2023-09-30 13:36:45.685309019  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:45.685310866  
2023-09-30 13:36:45.685311989  
2023-09-30 13:36:55.498129273  [ERROR:0@137835.101] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:55.498133419  
2023-09-30 13:36:55.498136063  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:55.498137761  
2023-09-30 13:36:55.498138844  
2023-09-30 13:36:55.516812232  [ERROR:0@137835.120] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:55.516816059  
2023-09-30 13:36:55.516818471  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:55.516819901  
2023-09-30 13:36:55.516821331  
2023-09-30 13:36:55.778411278  [ERROR:0@137835.382] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:36:55.778414097  
2023-09-30 13:36:55.778415630  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:36:55.778416647  
2023-09-30 13:36:55.778417577  
2023-09-30 13:37:05.495946792  [ERROR:0@137845.099] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:05.495950785  
2023-09-30 13:37:05.495953204  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:05.495954570  
2023-09-30 13:37:05.495955833  
2023-09-30 13:37:05.514180999  [ERROR:0@137845.117] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:05.514184299  
2023-09-30 13:37:05.514186941  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:05.514188339  
2023-09-30 13:37:05.514189583  
2023-09-30 13:37:05.675455021  [ERROR:0@137845.279] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:05.675457884  
2023-09-30 13:37:05.675459407  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:05.675460401  
2023-09-30 13:37:05.675461243  
2023-09-30 13:37:15.497374250  [ERROR:0@137855.101] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:15.497377965  
2023-09-30 13:37:15.497379865  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:15.497381192  
2023-09-30 13:37:15.497382326  
2023-09-30 13:37:15.511566314  [ERROR:0@137855.115] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:15.511569191  
2023-09-30 13:37:15.511570775  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:15.511571807  
2023-09-30 13:37:15.511572744  
2023-09-30 13:37:15.599967565  [ERROR:0@137855.203] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:15.599970397  
2023-09-30 13:37:15.599971907  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:15.599972879  
2023-09-30 13:37:15.599973809  
2023-09-30 13:37:25.493551398  [ERROR:0@137865.097] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:25.493554246  
2023-09-30 13:37:25.493556350  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:25.493557444  
2023-09-30 13:37:25.493558490  
2023-09-30 13:37:25.509167302  [ERROR:0@137865.112] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:25.509169985  
2023-09-30 13:37:25.509171542  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:25.509172575  
2023-09-30 13:37:25.509173524  
2023-09-30 13:37:25.724336095  [ERROR:0@137865.326] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:25.724339648  
2023-09-30 13:37:25.724341547  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:25.724342850  
2023-09-30 13:37:25.724344197  
2023-09-30 13:37:35.497312864  [ERROR:0@137875.101] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:35.497315712  
2023-09-30 13:37:35.497317237  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:35.497318223  
2023-09-30 13:37:35.497319120  
2023-09-30 13:37:35.515278298  [ERROR:0@137875.118] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:35.515281158  
2023-09-30 13:37:35.515282719  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:35.515283676  
2023-09-30 13:37:35.515284609  
2023-09-30 13:37:35.613681138  [ERROR:0@137875.217] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:35.613684084  
2023-09-30 13:37:35.613685594  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:35.613686547  
2023-09-30 13:37:35.613687464  
2023-09-30 13:37:45.494001349  [ERROR:0@137885.097] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:45.494004186  
2023-09-30 13:37:45.494005732  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:45.494006733  
2023-09-30 13:37:45.494007710  
2023-09-30 13:37:45.509390850  [ERROR:0@137885.113] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:45.509393493  
2023-09-30 13:37:45.509395032  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:45.509396009  
2023-09-30 13:37:45.509396939  
2023-09-30 13:37:45.775271362  [ERROR:0@137885.379] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2023-09-30 13:37:45.775274450  
2023-09-30 13:37:45.775276000  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2023-09-30 13:37:45.775276960  
2023-09-30 13:37:45.775277883  

Edit: I may be wrong and these might not be the correct logs from last time.

avvalex commented 1 year ago

It seems to happen to me too.... Maybe it's another issue, but i've noticed this behaviour: sometimes when the IP cam has a power outage, randomly, when electricity comes back everithing returns online, but only audio is recorded (until i restart the cam).

NickM-27 commented 1 year ago

I've only seen this issue when using go2rtc

towerhand commented 1 year ago

I usually fix it by restarting frigate.

dopeytree commented 1 year ago

Seems fixed by:

dopeytree commented 1 year ago

Am noticed this in the logs:

Non-monotonous DTS in output stream 0:1

towerhand commented 1 year ago

This issue happened again today and noticed a lot of these errors again. Are they related?

I'll test adding the "ffmpeg:rtsp://..." as suggested.

023-10-04 02:44:35.415581215  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
NickM-27 commented 1 year ago

that may be a symptom of the error

dopeytree commented 1 year ago

I noticed today that the recorded audio is about 2-3seconds delayed compared to video. Will do some tests tommorow to see if this is the same if directly watching the streams.

For the moment I have created a script to simply restart frigate at 3am everyday on unraid.

docker restart frigate

0 3 * * *

dopeytree commented 1 year ago

Do any of you use this command?

'preset-record-generic-audio-copy'

instead of

'preset-record-generic-audio-aac'

I already tell my annke c500's to output in acc so wondering if it is double encoding causing a delay?

Is acc the best audio format to feed frigate?

dopeytree commented 1 year ago
Screenshot 2023-10-04 at 21 45 52

These are the audio options in camera

dopeytree commented 1 year ago

Ok stable clean logs for past 3days using 'preset-record-generic-audio-copy' Also have a script to restart frigate at 3am. Between the 2 its all running smooth.