blakeblackshear / frigate

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

[Support]: Unable to keep up with recording segments in cache #9661

Closed WeiniGoas closed 7 months ago

WeiniGoas commented 8 months ago

Describe the problem you are having

I have plenty of errors in the logs and not everything is recorded.

Version

0.13.1

Frigate config file

mqtt:
  host: 10.0.x.x
  port: 1883
  user: xxxx
  password: 'xxxx'

detectors:
  coral:
    type: edgetpu
    device: usb

database:
  path: /config/frigate.db

logger:
  logs:
   frigate.record.maintainer: debug

go2rtc:
  log:
    exec: trace
  streams:
    haustuer_high: # TP-Link C200
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.31:554/stream1"
    - "ffmpeg:haustuer_high#audio=acc"
    haustuer_low:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.31:554/stream2"
    - "ffmpeg:haustuer_low#audio=acc"
    paddock_high: # TP-Link C310
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.32:554/stream1"
    - "ffmpeg:paddock_high#audio=acc"
    paddock_low:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.32:554/stream2"
    - "ffmpeg:paddock_low#audio=acc"
    blackpearl_high: # Reolink FE-W
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.33:554/h264Preview_01_main"
    - "ffmpeg:blackpearl_high#audio=opus"
    blackpearl_low:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.33:554/h264Preview_01_sub"
    - "ffmpeg:blackpearl_low#audio=opus"
    coolcassis_high: # Reolink FE-W
    - "ffmpeg:rtsp://xxx:xxxx@10.0.2.34:554/h264Preview_01_main"
    - "ffmpeg:coolcassis_high#audio=opus"
    coolcassis_low:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.34:554/h264Preview_01_sub"
    - "ffmpeg:coolcassis_low#audio=opus"
    sam_high: # Reolink FE-W
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.35:554/h264Preview_01_main"
    - "ffmpeg:sam_high#audio=opus"
    sam_low:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.35:554/h264Preview_01_sub"
    - "ffmpeg:sam_low#audio=opus"
  webrtc:
    candidates:
    - 10.0.x.x:8555
    - stun:8555

ffmpeg:
  input_args: preset-rtsp-restream
  output_args:
    record: preset-record-generic-audio-copy

motion:
  threshold: 20
  contour_area: 10

birdseye:
  enabled: true
  mode: continuous

cameras:
  blackpearl:
    ffmpeg:
      inputs:
      - path: rtsp://127.0.0.1:8554/blackpearl_low
        input_args: preset-rtsp-restream
        roles:
        - detect
      - path: rtsp://127.0.0.1:8554/blackpearl_high
        input_args: preset-rtsp-restream
        roles:
        - record
    live:
      stream_name: blackpearl_low
    detect:
      enabled: true
      width: 1024
      height: 1024
      fps: 5
      min_initialized: 1
      max_disappeared: 25
      stationary:
        interval: 20
    record:
      enabled: true
      events:
        pre_capture: 10
        post_capture: 10
        retain:
          default: 10
    snapshots:
      enabled: true
    ui:
      order: 0
    birdseye:
      order: 0
  coolcassis:
    ffmpeg:
      inputs:
      - path: rtsp://127.0.0.1:8554/coolcassis_low
        input_args: preset-rtsp-restream
        roles:
        - detect
      - path: rtsp://127.0.0.1:8554/coolcassis_high
        input_args: preset-rtsp-restream
        roles:
        - record
    live:
      stream_name: coolcassis_low
    detect:
      enabled: true
      width: 1024
      height: 1024
      fps: 5
      min_initialized: 1
      max_disappeared: 25
      stationary:
        interval: 20
    record:
      enabled: true
      events:
        pre_capture: 10
        post_capture: 10
        retain:
          default: 10
    snapshots:
      enabled: true
    ui:
      order: 1
    birdseye:
      order: 1
  sam:
    ffmpeg:
      inputs:
      - path: rtsp://127.0.0.1:8554/sam_low
        input_args: preset-rtsp-restream
        roles:
        - detect
      - path: rtsp://127.0.0.1:8554/sam_high
        input_args: preset-rtsp-restream
        roles:
        - record
    live:
      stream_name: sam_low
    detect:
      enabled: true
      width: 1024
      height: 1024
      fps: 5
      min_initialized: 1
      max_disappeared: 25
      stationary:
        interval: 20
    record:
      enabled: true
      events:
        pre_capture: 10
        post_capture: 10
        retain:
          default: 10
    snapshots:
      enabled: true
    ui:
      order: 2
    birdseye:
      order: 2
  paddock:
    ffmpeg:
    #  output_args:
    #    record: preset-record-generic-audio-copy
      inputs:
      - path: rtsp://127.0.0.1:8554/paddock_low
        input_args: preset-rtsp-restream
        roles:
        - detect
      - path: rtsp://127.0.0.1:8554/paddock_high
        input_args: preset-rtsp-restream
        roles:
        - record
    live:
      stream_name: paddock_high
    detect:
      enabled: true
      width: 640
      height: 360
      min_initialized: 1
      max_disappeared: 25
      stationary:
        interval: 20
    record:
      enabled: true
      events:
        pre_capture: 10
        post_capture: 10
        retain:
          default: 10
    snapshots:
      enabled: true
    ui:
      order: 3
    birdseye:
      order: 3
  haustuer:
    ffmpeg:
      #output_args:
      #  record: preset-record-generic-audio-copy
      inputs:
      - path: rtsp://127.0.0.1:8554/haustuer_low
        input_args: preset-rtsp-restream
        roles:
        - detect
      - path: rtsp://127.0.0.1:8554/haustuer_high
        input_args: preset-rtsp-restream
        roles:
        - record
    live:
      stream_name: haustuer_low
    detect:
      width: 640
      height: 360
      stationary:
        interval: 5
        threshold: 50
    record:
      enabled: true
      events:
        pre_capture: 10
        post_capture: 10
    snapshots:
      enabled: true
    ui:
      order: 4
    birdseye:
      order: 4

Relevant log output

2024-02-04 17:32:11.178119284  [INFO] Preparing Frigate...
2024-02-04 17:32:14.682697906  [INFO] Starting Frigate...
2024-02-04 17:32:28.993187489  [2024-02-04 18:32:28] frigate.app                    INFO    : Starting Frigate (0.13.1-34fb1c2)
2024-02-04 17:32:28.994208956  [2024-02-04 18:32:28] frigate.app                    INFO    : Creating directory: /tmp/cache
2024-02-04 17:32:29.421468527  [2024-02-04 18:32:29] peewee_migrate.logs            INFO    : Starting migrations
2024-02-04 17:32:29.574239651  [2024-02-04 18:32:29] peewee_migrate.logs            INFO    : There is nothing to migrate
2024-02-04 17:32:29.647481407  [2024-02-04 18:32:29] frigate.app                    INFO    : Recording process started: 317
2024-02-04 17:32:29.661697445  [2024-02-04 18:32:29] frigate.app                    INFO    : go2rtc process pid: 90
2024-02-04 17:32:29.804379046  [2024-02-04 18:32:29] frigate.app                    INFO    : Output process started: 328
2024-02-04 17:32:29.809604361  [2024-02-04 18:32:29] detector.coral                 INFO    : Starting detection process: 327
2024-02-04 17:32:29.867884570  [2024-02-04 18:32:29] frigate.detectors.plugins.edgetpu_tfl INFO    : Attempting to load TPU as usb
2024-02-04 17:32:30.260033781  [2024-02-04 18:32:30] frigate.app                    INFO    : Camera processor started for blackpearl: 340
2024-02-04 17:32:30.289905014  [2024-02-04 18:32:30] frigate.app                    INFO    : Camera processor started for coolcassis: 342
2024-02-04 17:32:30.334617986  [2024-02-04 18:32:30] frigate.app                    INFO    : Camera processor started for sam: 343
2024-02-04 17:32:30.375913986  [2024-02-04 18:32:30] frigate.app                    INFO    : Camera processor started for paddock: 345
2024-02-04 17:32:30.440224185  [2024-02-04 18:32:30] frigate.app                    INFO    : Camera processor started for haustuer: 349
2024-02-04 17:32:30.579766709  [2024-02-04 18:32:30] frigate.app                    INFO    : Capture process started for blackpearl: 362
2024-02-04 17:32:30.682153361  [2024-02-04 18:32:30] frigate.app                    INFO    : Capture process started for coolcassis: 368
2024-02-04 17:32:30.772862804  [2024-02-04 18:32:30] frigate.app                    INFO    : Capture process started for sam: 372
2024-02-04 17:32:30.849370852  [2024-02-04 18:32:30] frigate.app                    INFO    : Capture process started for paddock: 375
2024-02-04 17:32:31.057751030  [2024-02-04 18:32:31] frigate.app                    INFO    : Capture process started for haustuer: 388
2024-02-04 17:32:34.195233852  [2024-02-04 18:32:34] frigate.detectors.plugins.edgetpu_tfl INFO    : TPU found
2024-02-04 17:32:38.114300870  [2024-02-04 18:32:38] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-04 17:32:38.114741643  [2024-02-04 18:32:38] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:32:39.311405789  [2024-02-04 18:32:39] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-04 17:32:39.312550609  [2024-02-04 18:32:39] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:32:44.690555497  [2024-02-04 18:32:44] frigate.record.maintainer      DEBUG   : Found 2 old frames.
2024-02-04 17:32:50.937918968  [2024-02-04 18:32:50] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-04 17:32:50.937944357  [2024-02-04 18:32:50] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:32:50.937966912  [2024-02-04 18:32:50] ffmpeg.blackpearl.detect       ERROR   : rtsp://127.0.0.1:8554/blackpearl_low: Invalid data found when processing input
2024-02-04 17:32:51.103208001  [2024-02-04 18:32:51] ffmpeg.blackpearl.record       ERROR   : rtsp://127.0.0.1:8554/blackpearl_high: Invalid data found when processing input
2024-02-04 17:32:51.103221334  [2024-02-04 18:32:51] watchdog.blackpearl            INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:32:51.115806831  [2024-02-04 18:32:51] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:32:51.403662897  [2024-02-04 18:32:51] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-04 17:32:51.406902608  [2024-02-04 18:32:51] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:32:51.406915904  [2024-02-04 18:32:51] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-04 17:32:51.545696465  [2024-02-04 18:32:51] watchdog.haustuer              INFO    : No frames received from haustuer in 20 seconds. Exiting ffmpeg...
2024-02-04 17:32:51.548650234  [2024-02-04 18:32:51] watchdog.haustuer              INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:32:51.567962912  [2024-02-04 18:32:51] ffmpeg.paddock.record          ERROR   : rtsp://127.0.0.1:8554/paddock_high: Invalid data found when processing input
2024-02-04 17:32:51.582781037  [2024-02-04 18:32:51] watchdog.paddock               INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:32:51.644003762  [2024-02-04 18:32:51] watchdog.paddock               INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:32:52.028634956  [2024-02-04 18:32:52] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-04 17:32:52.039755969  [2024-02-04 18:32:52] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-04 17:32:52.044046931  [2024-02-04 18:32:52] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-04 17:32:52.076860306  [2024-02-04 18:32:52] frigate.video                  ERROR   : haustuer: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:32:54.691776977  [2024-02-04 18:32:54] frigate.record.maintainer      DEBUG   : Found 1 old frames.
2024-02-04 17:32:58.906157599  [2024-02-04 18:32:58] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-04 17:32:58.915500635  [2024-02-04 18:32:58] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-04 17:32:58.915537709  [2024-02-04 18:32:58] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:32:59.076272189  [2024-02-04 18:32:59] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-04 17:32:59.101270603  [2024-02-04 18:32:59] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:33:01.556403960  [2024-02-04 18:33:01] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-04 17:33:01.557383175  [2024-02-04 18:33:01] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:01.558215724  [2024-02-04 18:33:01] ffmpeg.blackpearl.detect       ERROR   : rtsp://127.0.0.1:8554/blackpearl_low: Invalid data found when processing input
2024-02-04 17:33:01.659537524  [2024-02-04 18:33:01] ffmpeg.blackpearl.record       ERROR   : rtsp://127.0.0.1:8554/blackpearl_high: Invalid data found when processing input
2024-02-04 17:33:01.659552838  [2024-02-04 18:33:01] watchdog.blackpearl            INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:33:01.659556060  [2024-02-04 18:33:01] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:33:01.982284131  [2024-02-04 18:33:01] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-04 17:33:01.983814360  [2024-02-04 18:33:01] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:01.984166894  [2024-02-04 18:33:01] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-04 17:33:02.097941147  [2024-02-04 18:33:02] ffmpeg.paddock.record          ERROR   : rtsp://127.0.0.1:8554/paddock_high: Invalid data found when processing input
2024-02-04 17:33:02.098922454  [2024-02-04 18:33:02] watchdog.paddock               INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:33:02.099873095  [2024-02-04 18:33:02] watchdog.paddock               INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:33:02.257769388  [2024-02-04 18:33:02] watchdog.haustuer              ERROR   : Ffmpeg process crashed unexpectedly for haustuer.
2024-02-04 17:33:02.259157970  [2024-02-04 18:33:02] watchdog.haustuer              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:02.261909227  [2024-02-04 18:33:02] ffmpeg.haustuer.detect         ERROR   : [swscaler @ 0x559b3545d0] deprecated pixel format used, make sure you did set range correctly
2024-02-04 17:33:08.696414227  [2024-02-04 18:33:08] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-04 17:33:08.701029139  [2024-02-04 18:33:08] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:33:09.505587579  [2024-02-04 18:33:09] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-04 17:33:09.507180568  [2024-02-04 18:33:09] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:33:11.766497879  [2024-02-04 18:33:11] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-04 17:33:11.799315365  [2024-02-04 18:33:11] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:11.802013273  [2024-02-04 18:33:11] ffmpeg.blackpearl.detect       ERROR   : rtsp://127.0.0.1:8554/blackpearl_low: Invalid data found when processing input
2024-02-04 17:33:11.839059176  [2024-02-04 18:33:11] ffmpeg.blackpearl.record       ERROR   : rtsp://127.0.0.1:8554/blackpearl_high: Invalid data found when processing input
2024-02-04 17:33:11.893059207  [2024-02-04 18:33:11] watchdog.blackpearl            INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:33:11.893523796  [2024-02-04 18:33:11] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:33:12.179850006  [2024-02-04 18:33:12] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-04 17:33:12.181855012  [2024-02-04 18:33:12] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:12.183633870  [2024-02-04 18:33:12] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-04 17:33:12.241172420  [2024-02-04 18:33:12] ffmpeg.paddock.record          ERROR   : rtsp://127.0.0.1:8554/paddock_high: Invalid data found when processing input
2024-02-04 17:33:12.244982228  [2024-02-04 18:33:12] watchdog.paddock               INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:33:12.247669433  [2024-02-04 18:33:12] watchdog.paddock               INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:33:13.797339876  [2024-02-04 18:33:13] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-04 17:33:13.800389060  [2024-02-04 18:33:13] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-04 17:33:13.803928833  [2024-02-04 18:33:13] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-04 17:33:13.804319738  [2024-02-04 18:33:13] frigate.video                  ERROR   : haustuer: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:33:17.628338780  [2024-02-04 18:33:17] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-04 17:33:17.629715068  [2024-02-04 18:33:17] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:33:18.099805420  [2024-02-04 18:33:18] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-04 17:33:18.100710989  [2024-02-04 18:33:18] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-04 17:33:18.101929630  [2024-02-04 18:33:18] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:33:21.928496313  [2024-02-04 18:33:21] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-04 17:33:21.928853459  [2024-02-04 18:33:21] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:21.930257136  [2024-02-04 18:33:21] ffmpeg.blackpearl.detect       ERROR   : rtsp://127.0.0.1:8554/blackpearl_low: Invalid data found when processing input
2024-02-04 17:33:22.252679382  [2024-02-04 18:33:22] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-04 17:33:22.253234249  [2024-02-04 18:33:22] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:22.255747919  [2024-02-04 18:33:22] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-04 17:33:22.423053963  [2024-02-04 18:33:22] watchdog.haustuer              ERROR   : Ffmpeg process crashed unexpectedly for haustuer.
2024-02-04 17:33:22.423284999  [2024-02-04 18:33:22] watchdog.haustuer              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:33:22.425235006  [2024-02-04 18:33:22] ffmpeg.haustuer.detect         ERROR   : [rtsp @ 0x5590493090] Could not find codec parameters for stream 0 (Video: h264, none): unspecified size
2024-02-04 17:33:22.425895557  [2024-02-04 18:33:22] ffmpeg.haustuer.detect         ERROR   : Consider increasing the value for the 'analyzeduration' and 'probesize' options
2024-02-04 17:33:22.427481511  [2024-02-04 18:33:22] ffmpeg.haustuer.detect         ERROR   : Output file #0 does not contain any stream
2024-02-04 17:33:34.685948621  [2024-02-04 18:33:34] frigate.record.maintainer      DEBUG   : Found 2 old frames.
2024-02-04 17:33:44.823884600  [2024-02-04 18:33:44] frigate.record.maintainer      DEBUG   : Found 1 old frames.
2024-02-04 17:51:31.514982363  [2024-02-04 18:51:31] ffmpeg.sam.record              ERROR   : [segment @ 0x55b13e3b30] Non-monotonous DTS in output stream 0:0; previous: 3096, current: 361; changing to 3097. This may result in incorrect timestamps in the output file.
22024-02-04 17:51:31.577218785  [2024-02-04 18:51:31] ffmpeg.sam.record              ERROR   : [segment @ 0x55b13e3b30] Non-monotonous DTS in output stream 0:0; previous: 3101, current: 2732; changing to 3102. This may result in incorrect timestamps in the output file.
2024-02-04 17:51:31.581353584  [2024-02-04 18:51:31] watchdog.sam                   INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:51:31.584195325  [2024-02-04 18:51:31] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:55:02.590064559  [2024-02-04 18:55:02] ffmpeg.blackpearl.record       ERROR   : [segment @ 0x558c38db30] Non-monotonous DTS in output stream 0:0; previous: 6306, current: 1027; changing to 6307. This may result in incorrect timestamps in the output file.
2024-02-04 17:55:02.630613374  [2024-02-04 18:55:02] watchdog.blackpearl            INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:55:02.631230719  [2024-02-04 18:55:02] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:55:21.198678959  [2024-02-04 18:55:21] frigate.record.maintainer      WARNING : Discarding a corrupt recording segment: /tmp/cache/coolcassis@20240204185451+0100.mp4
2024-02-04 17:55:34.956657663  [2024-02-04 18:55:34] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-04 17:55:39.959444303  [2024-02-04 18:55:39] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 9 and discarding the rest...
2024-02-04 17:55:44.973498856  [2024-02-04 18:55:44] frigate.record.maintainer      DEBUG   : Found 1 old frames.
2024-02-04 17:55:45.158124581  [2024-02-04 18:55:45] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 9 and discarding the rest...
2024-02-04 17:55:50.099609687  [2024-02-04 18:55:50] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-04 17:55:51.676217811  [2024-02-04 18:55:51] watchdog.sam                   INFO    : sam exceeded fps limit. Exiting ffmpeg...
2024-02-04 17:55:51.678056440  [2024-02-04 18:55:51] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:55:55.011368450  [2024-02-04 18:55:55] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-04 17:56:25.174471929  [2024-02-04 18:56:25] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 9 and discarding the rest...
2024-02-04 17:56:25.618485991  [2024-02-04 18:56:25] watchdog.sam                   INFO    : FFmpeg did not exit. Force killing...
2024-02-04 17:56:25.662969467  [2024-02-04 18:56:25] frigate.video                  ERROR   : sam: Unable to read frames from ffmpeg process.
2024-02-04 17:56:25.675150228  [2024-02-04 18:56:25] frigate.video                  ERROR   : sam: ffmpeg process is not running. exiting capture thread...
2024-02-04 17:56:28.589163879  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] Non-monotonous DTS in output stream 0:0; previous: 3091, current: 476; changing to 3092. This may result in incorrect timestamps in the output file.
2024-02-04 17:56:28.589617189  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] Non-monotonous DTS in output stream 0:0; previous: 3092, current: 1422; changing to 3093. This may result in incorrect timestamps in the output file.
2024-02-04 17:56:28.590467976  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] Non-monotonous DTS in output stream 0:0; previous: 3093, current: 1651; changing to 3094. This may result in incorrect timestamps in the output file.
2024-02-04 17:56:28.590554198  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] Non-monotonous DTS in output stream 0:0; previous: 3094, current: 2137; changing to 3095. This may result in incorrect timestamps in the output file.
2024-02-04 17:56:28.591389392  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] Non-monotonous DTS in output stream 0:0; previous: 3095, current: 2501; changing to 3096. This may result in incorrect timestamps in the output file.
2024-02-04 17:56:28.591696260  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] Non-monotonous DTS in output stream 0:0; previous: 3096, current: 2844; changing to 3097. This may result in incorrect timestamps in the output file.
2024-02-04 17:56:28.592017756  [2024-02-04 18:56:28] ffmpeg.sam.record              ERROR   : [segment @ 0x556b918d50] 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
2024-02-04 17:56:28.592599880  [2024-02-04 18:56:28] watchdog.sam                   INFO    : Terminating the existing ffmpeg process...
2024-02-04 17:56:28.593405927  [2024-02-04 18:56:28] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 17:56:29.989213038  [2024-02-04 18:56:29] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-04 17:56:34.989089375  [2024-02-04 18:56:34] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-04 17:56:38.734074556  [2024-02-04 18:56:38] watchdog.sam                   ERROR   : Ffmpeg process crashed unexpectedly for sam.
2024-02-04 17:56:38.734663068  [2024-02-04 18:56:38] watchdog.sam                   ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 17:56:38.735312784  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [rtsp @ 0x5574a29090] RTP: PT=60: bad cseq 0755 expected=a9d4
2024-02-04 17:56:38.735741261  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [h264 @ 0x5574a7b220] error while decoding MB 14 1, bytestream -24
2024-02-04 17:56:38.736146701  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : rtsp://127.0.0.1:8554/sam_low: corrupt decoded frame in stream 0
2024-02-04 17:56:38.737264708  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [rtsp @ 0x5574a29090] RTP: PT=61: bad cseq 0d3d expected=353c
2024-02-04 17:56:38.737892349  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [out_0_0 @ 0x5574b28fa0] 100 buffers queued in out_0_0, something may be wrong.
2024-02-04 17:56:38.738391455  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [out_0_0 @ 0x5574b28fa0] 1000 buffers queued in out_0_0, something may be wrong.
2024-02-04 17:56:38.738945653  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [out_0_0 @ 0x5574b28fa0] 10000 buffers queued in out_0_0, something may be wrong.
2024-02-04 17:56:38.739008560  [2024-02-04 18:56:38] ffmpeg.sam.detect              ERROR   : [out_0_0 @ 0x5574b28fa0] 100000 buffers queued in out_0_0, something may be wrong.
2024-02-04 19:36:10.662581002  [2024-02-04 20:36:10] frigate.video                  ERROR   : paddock: Unable to read frames from ffmpeg process.
2024-02-04 19:36:10.664614976  [2024-02-04 20:36:10] frigate.video                  ERROR   : paddock: Unable to read frames from ffmpeg process.
2024-02-04 19:36:10.666073068  [2024-02-04 20:36:10] frigate.video                  ERROR   : paddock: ffmpeg process is not running. exiting capture thread...
2024-02-04 19:36:15.023809613  [2024-02-04 20:36:15] watchdog.paddock               ERROR   : Ffmpeg process crashed unexpectedly for paddock.
2024-02-04 19:36:15.065317747  [2024-02-04 20:36:15] watchdog.paddock               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 19:36:15.065398598  [2024-02-04 20:36:15] ffmpeg.paddock.detect          ERROR   : rtsp://127.0.0.1:8554/paddock_low: Invalid data found when processing input
2024-02-04 19:36:15.097044785  [2024-02-04 20:36:15] ffmpeg.paddock.record          ERROR   : rtsp://127.0.0.1:8554/paddock_high: Invalid data found when processing input
2024-02-04 19:36:15.133034508  [2024-02-04 20:36:15] watchdog.paddock               INFO    : Terminating the existing ffmpeg process...
2024-02-04 19:36:15.133050545  [2024-02-04 20:36:15] watchdog.paddock               INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 19:36:15.638933626  [2024-02-04 20:36:15] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 11 and discarding the rest...
2024-02-04 19:36:20.570233159  [2024-02-04 20:36:20] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 11 and discarding the rest...
2024-02-04 19:36:20.864883675  [2024-02-04 20:36:20] frigate.video                  ERROR   : paddock: Unable to read frames from ffmpeg process.
2024-02-04 19:36:25.174057705  [2024-02-04 20:36:25] watchdog.paddock               ERROR   : Ffmpeg process crashed unexpectedly for paddock.
2024-02-04 19:36:25.174644550  [2024-02-04 20:36:25] watchdog.paddock               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 19:36:25.175158358  [2024-02-04 20:36:25] ffmpeg.paddock.detect          ERROR   : rtsp://127.0.0.1:8554/paddock_low: Invalid data found when processing input
2024-02-04 19:36:25.254005013  [2024-02-04 20:36:25] watchdog.paddock               ERROR   : No new recording segments were created for paddock in the last 120s. restarting the ffmpeg record process...
2024-02-04 19:36:25.255637344  [2024-02-04 20:36:25] watchdog.paddock               INFO    : Terminating the existing ffmpeg process...
2024-02-04 19:36:25.257074066  [2024-02-04 20:36:25] watchdog.paddock               INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 19:36:25.697279512  [2024-02-04 20:36:25] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 11 and discarding the rest...
2024-02-04 19:36:30.654817444  [2024-02-04 20:36:30] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 11 and discarding the rest...
2024-02-04 19:36:31.159777006  [2024-02-04 20:36:31] frigate.video                  ERROR   : paddock: Unable to read frames from ffmpeg process.
2024-02-04 19:36:31.164046858  [2024-02-04 20:36:31] frigate.video                  ERROR   : paddock: ffmpeg process is not running. exiting capture thread...
2024-02-04 19:36:35.400206761  [2024-02-04 20:36:35] watchdog.paddock               ERROR   : Ffmpeg process crashed unexpectedly for paddock.
2024-02-04 19:36:35.400788512  [2024-02-04 20:36:35] watchdog.paddock               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-04 19:36:35.402117977  [2024-02-04 20:36:35] ffmpeg.paddock.detect          ERROR   : rtsp://127.0.0.1:8554/paddock_low: Invalid data found when processing input
2024-02-04 20:55:20.512072805  [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f741f66c0] moov atom not found
2024-02-04 21:32:18.738233805  
2024-02-04 21:32:18.738237749  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2024-02-04 21:32:18.738239305  
2024-02-04 21:32:18.738240564  
2024-02-04 21:32:19.876705192  [2024-02-04 22:32:19] frigate.record.maintainer      WARNING : Failed to probe corrupt segment /tmp/cache/haustuer@20240204223210+0100.mp4
2024-02-04 21:32:19.879698391  [2024-02-04 22:32:19] frigate.record.maintainer      WARNING : Discarding a corrupt recording segment: /tmp/cache/haustuer@20240204223210+0100.mp4
2024-02-04 21:32:20.594051311  [2024-02-04 22:32:20] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 11 and discarding the rest...
2024-02-04 21:32:20.715583368  [2024-02-04 22:32:20] watchdog.haustuer              ERROR   : No new recording segments were created for haustuer in the last 120s. restarting the ffmpeg record process...
2024-02-04 21:32:20.716216341  [2024-02-04 22:32:20] watchdog.haustuer              INFO    : Terminating the existing ffmpeg process...
2024-02-04 21:32:20.717100200  [2024-02-04 22:32:20] watchdog.haustuer              INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-04 21:32:25.936242376  [2024-02-04 22:32:25] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 11 and discarding the rest...
2024-02-04 21:32:31.072270546  [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7f741c3190] moov atom not found
2024-02-04 21:32:31.073131182  [ERROR:0@14408.904] global cap.cpp:164 open VIDEOIO(CV_IMAGES): raised OpenCV exception:
2024-02-04 21:32:31.073144719  
2024-02-04 21:32:31.073148645  OpenCV(4.7.0) /io/opencv/modules/videoio/src/cap_images.cpp:267: error: (-215:Assertion failed) number < max_number in function 'icvExtractPattern'
2024-02-04 21:32:31.073150126  
2024-02-04 21:32:31.073151311  
2024-02-04 21:32:33.558123227  [2024-02-04 22:32:33] frigate.record.maintainer      WARNING : Failed to probe corrupt segment /tmp/cache/haustuer@20240204223220+0100.mp4
2024-02-04 21:32:33.558140671  [2024-02-04 22:32:33] frigate.record.maintainer      WARNING : Discarding a corrupt recording segment: /tmp/cache/haustuer@20240204223220+0100.mp4
2024-02-04 21:32:34.240850198  [2024-02-04 22:32:34] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 15 and discarding the rest...
2024-02-04 21:32:38.638422581  [2024-02-04 22:32:38] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for sam. Keeping the 6 most recent segments out of 10 and discarding the rest...
2024-02-04 21:32:40.939945892  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): Immediate exit requested
2024-02-04 21:32:40.945508797  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : 
2024-02-04 21:32:40.958284363  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): Immediate exit requested
2024-02-04 21:32:40.958303993  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : 
2024-02-04 21:32:40.958307733  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : rtsp://127.0.0.1:8554/haustuer_high: Invalid data found when processing input
2024-02-04 21:32:40.958311641  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): Immediate exit requested
2024-02-04 21:32:40.958313844  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : 
2024-02-04 21:32:40.958317418  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : [rtsp @ 0x55a29520b0] Could not find codec parameters for stream 0 (Video: h264, none): unspecified size
2024-02-04 21:32:40.958320678  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Consider increasing the value for the 'analyzeduration' and 'probesize' options
2024-02-04 21:32:40.958323400  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Output file #0 does not contain any stream
2024-02-04 21:32:40.958326807  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): Immediate exit requested
2024-02-04 21:32:40.958328881  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : 
2024-02-04 21:32:40.958332418  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): Immediate exit requested
2024-02-04 21:32:40.958334344  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : 
2024-02-04 21:32:40.958337825  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : [rtsp @ 0x55a4c700b0] Could not find codec parameters for stream 0 (Video: h264, none): unspecified size
2024-02-04 21:32:40.958514527  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Consider increasing the value for the 'analyzeduration' and 'probesize' options
2024-02-04 21:32:40.958519490  [2024-02-04 22:32:40] ffmpeg.haustuer.record         ERROR   : Output file #0 does not contain any stream
2024-02-05 05:29:33.902106417  [2024-02-05 06:29:33] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-05 05:29:33.993933831  [2024-02-05 06:29:33] frigate.video                  ERROR   : sam: Unable to read frames from ffmpeg process.
2024-02-05 05:29:34.149339371  [2024-02-05 06:29:34] frigate.video                  ERROR   : sam: ffmpeg process is not running. exiting capture thread...
2024-02-05 05:29:44.152298894  [2024-02-05 06:29:44] watchdog.sam                   ERROR   : Ffmpeg process crashed unexpectedly for sam.
2024-02-05 05:29:44.153063142  [2024-02-05 06:29:44] watchdog.sam                   ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-05 05:29:44.153706819  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [h264 @ 0x559c733220] error while decoding MB 13 1, bytestream -11
2024-02-05 05:29:44.154543344  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : rtsp://127.0.0.1:8554/sam_low: corrupt decoded frame in stream 0
2024-02-05 05:29:44.155178724  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [h264 @ 0x559c733220] Increasing reorder buffer to 1
2024-02-05 05:29:44.155921139  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [h264 @ 0x559c7125d0] error while decoding MB 12 1, bytestream -10
2024-02-05 05:29:44.156431262  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : rtsp://127.0.0.1:8554/sam_low: corrupt decoded frame in stream 0
2024-02-05 05:29:44.157728707  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [h264 @ 0x559c7125d0] error while decoding MB 12 1, bytestream -9
2024-02-05 05:29:44.159535922  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : rtsp://127.0.0.1:8554/sam_low: corrupt decoded frame in stream 0
2024-02-05 05:29:44.160729220  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [h264 @ 0x559c733220] Increasing reorder buffer to 5
2024-02-05 05:29:44.162258254  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [rtsp @ 0x559c6e1090] RTP: PT=60: bad cseq 02d3 expected=b073
2024-02-05 05:29:44.191243607  [2024-02-05 06:29:44] ffmpeg.sam.detect              ERROR   : [rtsp @ 0x559c6e1090] RTP: PT=61: bad cseq 05ad expected=51cb
2024-02-05 08:06:17.457072089  [2024-02-05 09:06:17] frigate.record.maintainer      DEBUG   : Copied /media/frigate/recordings/2024-02-05/08/haustuer/06.00.mp4 in 1.133012056350708 seconds.
2024-02-05 08:06:17.517927637  [2024-02-05 09:06:17] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:06:17.525128356  [2024-02-05 09:06:17] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for blackpearl. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-05 08:06:22.584654827  [2024-02-05 09:06:22] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for blackpearl. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-05 08:06:26.746795652  [2024-02-05 09:06:26] frigate.record.maintainer      DEBUG   : Copied /media/frigate/recordings/2024-02-05/08/haustuer/06.10.mp4 in 1.0534729957580566 seconds.
2024-02-05 08:06:27.535232106  [2024-02-05 09:06:27] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:06:27.536708087  [2024-02-05 09:06:27] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for blackpearl. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-05 08:28:17.850257849  [h264 @ 0x7f74429310] error while decoding MB 44 83, bytestream -5
2024-02-05 08:28:21.549022306  [2024-02-05 09:28:21] ffmpeg.blackpearl.record       ERROR   : [segment @ 0x5597c7db30] Non-monotonous DTS in output stream 0:0; previous: 3057, current: 501; changing to 3058. This may result in incorrect timestamps in the output file.
2024-02-05 08:28:21.568630030  [2024-02-05 09:28:21] ffmpeg.blackpearl.record       ERROR   : [segment @ 0x5597c7db30] Non-monotonous DTS in output stream 0:0; previous: 3058, current: 1882; changing to 3059. This may result in incorrect timestamps in the output file.
2024-02-05 08:28:21.580531874  [2024-02-05 09:28:21] ffmpeg.blackpearl.record       ERROR   : [rtsp @ 0x559e9620b0] RTP: PT=61: bad cseq 02a7 expected=2550
2024-02-05 08:28:21.581442565  [2024-02-05 09:28:21] ffmpeg.blackpearl.record       ERROR   : [rtsp @ 0x559e9620b0] RTP: PT=60: bad cseq 0945 expected=508f
2024-02-05 08:28:21.582324017  [2024-02-05 09:28:21] watchdog.blackpearl            INFO    : Terminating the existing ffmpeg process...
2024-02-05 08:28:21.583020674  [2024-02-05 09:28:21] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-05 08:28:32.761075981  [h264 @ 0x7f740e85f0] cabac decode of qscale diff failed at 84 41
2024-02-05 08:28:32.761091073  [h264 @ 0x7f740e85f0] error while decoding MB 84 41, bytestream 730
2024-02-05 08:28:33.740771996  [2024-02-05 09:28:33] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-05 08:28:33.742720730  [2024-02-05 09:28:33] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-05 08:28:37.638924438  [2024-02-05 09:28:37] frigate.record.maintainer      DEBUG   : Found 1 old frames.
2024-02-05 08:28:40.316661563  [2024-02-05 09:28:40] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-05 08:28:40.316683415  [2024-02-05 09:28:40] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-05 08:28:40.317387813  [2024-02-05 09:28:40] ffmpeg.coolcassis.detect       ERROR   : [h264 @ 0x55af119c20] Increasing reorder buffer to 1
2024-02-05 08:28:42.690389406  [2024-02-05 09:28:42] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-05 08:28:47.684375349  [2024-02-05 09:28:47] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 8 and discarding the rest...
2024-02-05 08:28:52.624262630  [2024-02-05 09:28:52] frigate.record.maintainer      DEBUG   : Found 1 old frames.
2024-02-05 08:28:52.686175668  [2024-02-05 09:28:52] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 9 and discarding the rest...
2024-02-05 08:29:02.722759327  [2024-02-05 09:29:02] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:29:12.807745430  [2024-02-05 09:29:12] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:29:22.725592017  [2024-02-05 09:29:22] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:29:28.732183940  [2024-02-05 09:29:28] ffmpeg.sam.record              ERROR   : [segment @ 0x5590936b30] Non-monotonous DTS in output stream 0:0; previous: 3092, current: 428; changing to 3093. This may result in incorrect timestamps in the output file.
2024-02-05 08:29:28.732640248  [2024-02-05 09:29:28] ffmpeg.sam.record              ERROR   : [segment @ 0x5590936b30] Non-monotonous DTS in output stream 0:0; previous: 3093, current: 1888; changing to 3094. This may result in incorrect timestamps in the output file.
2024-02-05 08:29:28.743954174  [2024-02-05 09:29:28] watchdog.sam                   INFO    : Terminating the existing ffmpeg process...
2024-02-05 08:29:28.746469289  [2024-02-05 09:29:28] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-05 08:29:32.673612251  [2024-02-05 09:29:32] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:29:42.672563546  [2024-02-05 09:29:42] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...
2024-02-05 08:29:52.710617854  [2024-02-05 09:29:52] frigate.record.maintainer      WARNING : Unable to keep up with recording segments in cache for coolcassis. Keeping the 6 most recent segments out of 7 and discarding the rest...

FFprobe output from your camera

[{"return_code":1,"stderr":"","stdout":""},{"return_code":1,"stderr":"","stdout":""}]

Frigate stats

{"cameras":{"blackpearl":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.1,"capture_pid":362,"detection_enabled":1,"detection_fps":5.0,"ffmpeg_pid":11837,"pid":340,"process_fps":5.0,"skipped_fps":0.0},"coolcassis":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.1,"capture_pid":368,"detection_enabled":1,"detection_fps":3.6,"ffmpeg_pid":250272,"pid":342,"process_fps":5.0,"skipped_fps":0.0},"haustuer":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.1,"capture_pid":388,"detection_enabled":1,"detection_fps":7.4,"ffmpeg_pid":173484,"pid":349,"process_fps":5.0,"skipped_fps":0.1},"paddock":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.0,"capture_pid":375,"detection_enabled":1,"detection_fps":5.5,"ffmpeg_pid":43840,"pid":345,"process_fps":5.0,"skipped_fps":0.0},"sam":{"audio_dBFS":0.0,"audio_rms":0.0,"camera_fps":5.0,"capture_pid":372,"detection_enabled":1,"detection_fps":5.3,"ffmpeg_pid":199414,"pid":343,"process_fps":5.1,"skipped_fps":0.0}},"cpu_usages":{"1":{"cmdline":"/package/admin/s6/command/s6-svscan -d4 -- /run/service","cpu":"0.0","cpu_average":"0","mem":"0.0"},"16":{"cmdline":"s6-supervise s6-linux-init-shutdownd","cpu":"0.0","cpu_average":"0","mem":"0.0"},"18":{"cmdline":"/package/admin/s6-linux-init/command/s6-linux-init-shutdownd -c /run/s6/basedir -g 3000 -C -B","cpu":"0.0","cpu_average":"0","mem":"0.0"},"25":{"cmdline":"s6-supervise nginx","cpu":"0.0","cpu_average":"0","mem":"0.0"},"26":{"cmdline":"s6-supervise go2rtc","cpu":"0.0","cpu_average":"0","mem":"0.0"},"27":{"cmdline":"s6-supervise go2rtc-healthcheck","cpu":"0.0","cpu_average":"0","mem":"0.0"},"28":{"cmdline":"s6-supervise frigate","cpu":"0.0","cpu_average":"0","mem":"0.0"},"29":{"cmdline":"s6-supervise s6rc-oneshot-runner","cpu":"0.0","cpu_average":"0","mem":"0.0"},"30":{"cmdline":"s6-supervise nginx-log","cpu":"0.0","cpu_average":"0","mem":"0.0"},"31":{"cmdline":"s6-supervise s6rc-fdholder","cpu":"0.0","cpu_average":"0","mem":"0.0"},"32":{"cmdline":"s6-supervise go2rtc-log","cpu":"0.0","cpu_average":"0","mem":"0.0"},"33":{"cmdline":"s6-supervise frigate-log","cpu":"0.0","cpu_average":"0","mem":"0.0"},"42":{"cmdline":"/package/admin/s6/command/s6-ipcserverd -1 -- /package/admin/s6/command/s6-ipcserver-access -v0 -E -l0 -i data/rules -- /package/admin/s6/command/s6-sudod -t 30000 -- /package/admin/s6-rc/command/s6-rc-oneshot-run -l ../.. --","cpu":"0.0","cpu_average":"0","mem":"0.0"},"43":{"cmdline":"/package/admin/s6-2.11.3.2/command/s6-fdholderd -1 -i data/rules","cpu":"0.0","cpu_average":"0","mem":"0.0"},"80":{"cmdline":"s6-log -b -- T 1 n0 s10000000 T /dev/shm/logs/nginx","cpu":"0.0","cpu_average":"0","mem":"0.0"},"81":{"cmdline":"s6-log -b -- T 1 n0 s10000000 T /dev/shm/logs/go2rtc","cpu":"0.2","cpu_average":"0","mem":"0.0"},"83":{"cmdline":"s6-log -b -- T 1 n0 s10000000 T /dev/shm/logs/frigate","cpu":"0.0","cpu_average":"0","mem":"0.0"},"90":{"cmdline":"/usr/local/go2rtc/bin/go2rtc -config=/dev/shm/go2rtc.yaml","cpu":"14.7","cpu_average":"12","mem":"0.6"},"106":{"cmdline":"bash ./run.user go2rtc-healthcheck","cpu":"0.2","cpu_average":"0","mem":"0.0"},"108":{"cmdline":"python3 -u -m frigate","cpu":"9.2","cpu_average":"7","mem":"3.2"},"123":{"cmdline":"nginx: master process nginx","cpu":"0.0","cpu_average":"0","mem":"0.2"},"142":{"cmdline":"nginx: worker process","cpu":"0.2","cpu_average":"0","mem":"0.2"},"143":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.2"},"144":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.1"},"148":{"cmdline":"nginx: worker process","cpu":"0.0","cpu_average":"0","mem":"0.1"},"160":{"cmdline":"nginx: cache manager process","cpu":"0.0","cpu_average":"0","mem":"0.1"},"315":{"cmdline":"frigate.logger       ","cpu":"0.2","cpu_average":"0","mem":"1.1"},"317":{"cmdline":"frigate.recording_manager","cpu":"26.3","cpu_average":"31","mem":"1.9"},"326":{"cmdline":"/usr/bin/python3 -c from multiprocessing.resource_tracker import main;main(57)","cpu":"1.2","cpu_average":"1","mem":"0.1"},"327":{"cmdline":"frigate.detector.coral","cpu":"44.4","cpu_average":"28","mem":"1.5"},"328":{"cmdline":"frigate.output       ","cpu":"4.8","cpu_average":"4","mem":"1.4"},"334":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1024x1024 -i pipe: -f mpegts -s 720x720 -codec:v mpeg1video -q 8 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"336":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1024x1024 -i pipe: -f mpegts -s 720x720 -codec:v mpeg1video -q 8 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"337":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1024x1024 -i pipe: -f mpegts -s 720x720 -codec:v mpeg1video -q 8 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.5"},"338":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 640x360 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.4"},"340":{"cmdline":"frigate.process:blackpearl","cpu":"12.7","cpu_average":"8","mem":"1.7"},"341":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 640x360 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.4"},"342":{"cmdline":"frigate.process:coolcassis","cpu":"14.0","cpu_average":"11","mem":"1.6"},"343":{"cmdline":"frigate.process:sam  ","cpu":"13.8","cpu_average":"8","mem":"1.7"},"344":{"cmdline":"ffmpeg -f rawvideo -pix_fmt yuv420p -video_size 1280x720 -i pipe: -f mpegts -s 1280x720 -codec:v mpeg1video -q 8 -bf 0 pipe:","cpu":"0.0","cpu_average":"0","mem":"0.8"},"345":{"cmdline":"frigate.process:paddock","cpu":"16.0","cpu_average":"12","mem":"1.5"},"349":{"cmdline":"frigate.process:haustuer","cpu":"19.7","cpu_average":"13","mem":"1.5"},"362":{"cmdline":"frigate.capture:blackpearl","cpu":"7.3","cpu_average":"6","mem":"1.4"},"368":{"cmdline":"frigate.capture:coolcassis","cpu":"8.3","cpu_average":"6","mem":"1.4"},"372":{"cmdline":"frigate.capture:sam  ","cpu":"6.9","cpu_average":"6","mem":"4.6"},"375":{"cmdline":"frigate.capture:paddock","cpu":"2.0","cpu_average":"2","mem":"1.3"},"388":{"cmdline":"frigate.capture:haustuer","cpu":"2.8","cpu_average":"2","mem":"1.3"},"11837":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/blackpearl_low -r 5 -vf fps=5,scale=1024:1024 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"11.3","cpu_average":"11","mem":"0.7"},"11840":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.33:554/h264Preview_01_sub -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/5090228d0d3f924de0592472c989104f","cpu":"0.9","cpu_average":"0","mem":"0.5"},"43840":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/paddock_low -r 5 -vf fps=5,scale=640:360 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"6.6","cpu_average":"6","mem":"0.6"},"43843":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.32:554/stream2 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/095a8d3394d4e8b9e902af753b9dbbbb","cpu":"1.4","cpu_average":"1","mem":"0.5"},"43980":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/paddock_high -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/paddock@%Y%m%d%H%M%S%z.mp4","cpu":"1.1","cpu_average":"0","mem":"0.5"},"43981":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.32:554/stream1 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/d6b4e5611c340ccdb4cb37d12064fbaa","cpu":"1.8","cpu_average":"1","mem":"0.5"},"66905":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/haustuer_high -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/haustuer@%Y%m%d%H%M%S%z.mp4","cpu":"0.8","cpu_average":"0","mem":"0.5"},"66918":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.31:554/stream1 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/4b9bf7aa13da4943c7a1e08503373845","cpu":"2.4","cpu_average":"2","mem":"0.6"},"173484":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/haustuer_low -r 5 -vf fps=5,scale=640:360 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"6.3","cpu_average":"6","mem":"0.7"},"173486":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.31:554/stream2 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/e103fb1de86de8a2da40985dff943ddb","cpu":"2.1","cpu_average":"2","mem":"0.5"},"199414":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/sam_low -r 5 -vf fps=5,scale=1024:1024 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"11.9","cpu_average":"11","mem":"0.8"},"199420":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.35:554/h264Preview_01_sub -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/d442e3667cb5cf834869ba3853f0a5e0","cpu":"1.5","cpu_average":"1","mem":"0.5"},"225402":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/coolcassis_high -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/coolcassis@%Y%m%d%H%M%S%z.mp4","cpu":"3.5","cpu_average":"3","mem":"1.1"},"250218":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.34:554/h264Preview_01_main -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/2ef2648837194d01755ad3f3b9dc3c58","cpu":"5.2","cpu_average":"5","mem":"0.6"},"250272":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/coolcassis_low -r 5 -vf fps=5,scale=1024:1024 -threads 2 -f rawvideo -pix_fmt yuv420p pipe:","cpu":"11.3","cpu_average":"11","mem":"0.7"},"250274":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.34:554/h264Preview_01_sub -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/2cfb5695cbb70cdbadc87840e69f9bdf","cpu":"1.5","cpu_average":"1","mem":"0.5"},"250483":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/sam_high -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/sam@%Y%m%d%H%M%S%z.mp4","cpu":"2.6","cpu_average":"2","mem":"0.6"},"250489":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.35:554/h264Preview_01_main -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/76cc488b9460a513a81996dc2d84e9d5","cpu":"5.3","cpu_average":"5","mem":"0.6"},"257321":{"cmdline":"ffmpeg -hide_banner -loglevel warning -threads 2 -user_agent FFmpeg Frigate/0.13.1-34fb1c2 -rtsp_transport tcp -stimeout 5000000 -i rtsp://127.0.0.1:8554/blackpearl_high -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy /tmp/cache/blackpearl@%Y%m%d%H%M%S%z.mp4","cpu":"2.9","cpu_average":"4","mem":"0.6"},"257322":{"cmdline":"ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://*:*@10.0.2.33:554/h264Preview_01_main -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp rtsp://127.0.0.1:8554/1a883c348dcaf80a62bb4bb460b2a431","cpu":"5.6","cpu_average":"9","mem":"0.6"},"257394":{"cmdline":"sleep 30s","cpu":"0.0","cpu_average":"0","mem":"0.0"}},"detection_fps":26.8,"detectors":{"coral":{"detection_start":1707123364.818884,"inference_speed":22.0,"pid":327}},"processes":{"go2rtc":{"pid":90},"logger":{"pid":315},"recording":{"pid":317}},"service":{"last_updated":1707123365,"latest_version":"0.13.1","storage":{"/dev/shm":{"free":3888.5,"mount_type":"tmpfs","total":3904.9,"used":16.4},"/media/frigate/clips":{"free":4969095.2,"mount_type":"cifs","total":6677046.5,"used":1707951.3},"/media/frigate/recordings":{"free":4969095.2,"mount_type":"cifs","total":6677046.5,"used":1707951.3},"/tmp/cache":{"free":3868.4,"mount_type":"tmpfs","total":3904.9,"used":36.5}},"temperatures":{},"uptime":55414,"version":"0.13.1-34fb1c2"}}

Operating system

HassOS

Install method

HassOS Addon

Coral version

USB

Network connection

Wired

Camera make and model

Reolink FE-W and TP-Link C200/C310

Any other information that may be helpful

The events will be stored on my NAS.

WeiniGoas commented 8 months ago

logs_frigate.txt logs_go2rtc.txt This are the full logs of friagte and go2rtc, thank you.

NickM-27 commented 8 months ago

[rtsp @ 0x5590493090] Could not find codec parameters for stream 0 (Video: h264, none): unspecified size

the cameras are sending bad data. For your reolink cams you should be using the reolink recommended config https://docs.frigate.video/configuration/camera_specific#reolink-cameras

WeiniGoas commented 8 months ago

Thank you for your reply. The only setting i didn't try yet is the http stream. I try to change and give you feedback if there is anything different.

WeiniGoas commented 8 months ago

I changed the config to the recommendet settings. But there are still plenty of errors for example ffmpeg process crashed or not running. I added the logs hopefully you could please help me. Thank you!

2024-02-06 06:49:18.469494310  [INFO] Preparing Frigate...
2024-02-06 06:49:21.707687656  [INFO] Starting Frigate...
2024-02-06 06:49:35.520909470  [2024-02-06 07:49:35] frigate.app                    INFO    : Starting Frigate (0.13.1-34fb1c2)
2024-02-06 06:49:35.522717191  [2024-02-06 07:49:35] frigate.app                    INFO    : Creating directory: /tmp/cache
2024-02-06 06:49:36.030723057  [2024-02-06 07:49:36] peewee_migrate.logs            INFO    : Starting migrations
2024-02-06 06:49:36.077708174  [2024-02-06 07:49:36] peewee_migrate.logs            INFO    : There is nothing to migrate
2024-02-06 06:49:36.099700734  [2024-02-06 07:49:36] frigate.app                    INFO    : Recording process started: 318
2024-02-06 06:49:36.115751297  [2024-02-06 07:49:36] frigate.app                    INFO    : go2rtc process pid: 89
2024-02-06 06:49:36.295599291  [2024-02-06 07:49:36] frigate.app                    INFO    : Output process started: 329
2024-02-06 06:49:36.330032454  [2024-02-06 07:49:36] detector.coral                 INFO    : Starting detection process: 328
2024-02-06 06:49:36.383060716  [2024-02-06 07:49:36] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 06:49:36.404954257  [2024-02-06 07:49:36] frigate.detectors.plugins.edgetpu_tfl INFO    : Attempting to load TPU as usb
2024-02-06 06:49:36.824981706  [2024-02-06 07:49:36] frigate.app                    INFO    : Camera processor started for blackpearl: 343
2024-02-06 06:49:36.862484515  [2024-02-06 07:49:36] frigate.app                    INFO    : Camera processor started for coolcassis: 344
2024-02-06 06:49:36.889712904  [2024-02-06 07:49:36] frigate.app                    INFO    : Camera processor started for sam: 345
2024-02-06 06:49:37.157757139  [2024-02-06 07:49:37] frigate.app                    INFO    : Camera processor started for paddock: 349
2024-02-06 06:49:37.181979865  [2024-02-06 07:49:37] frigate.app                    INFO    : Camera processor started for haustuer: 358
2024-02-06 06:49:37.219500322  [2024-02-06 07:49:37] frigate.app                    INFO    : Capture process started for blackpearl: 363
2024-02-06 06:49:37.263309665  [2024-02-06 07:49:37] frigate.app                    INFO    : Capture process started for coolcassis: 366
2024-02-06 06:49:37.289675481  [2024-02-06 07:49:37] frigate.app                    INFO    : Capture process started for sam: 367
2024-02-06 06:49:37.325315273  [2024-02-06 07:49:37] frigate.app                    INFO    : Capture process started for paddock: 368
2024-02-06 06:49:37.366514766  [2024-02-06 07:49:37] frigate.app                    INFO    : Capture process started for haustuer: 369
2024-02-06 06:49:37.412146866  [2024-02-06 07:49:37] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 06:49:39.464902917  [2024-02-06 07:49:39] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 06:49:41.301870092  [2024-02-06 07:49:41] frigate.detectors.plugins.edgetpu_tfl INFO    : TPU found
2024-02-06 06:49:43.599700086  [2024-02-06 07:49:43] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 06:49:45.374589515  [2024-02-06 07:49:45] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-06 06:49:45.377235254  [2024-02-06 07:49:45] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-06 06:49:46.270372496  [2024-02-06 07:49:46] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:49:46.271758755  [2024-02-06 07:49:46] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-06 06:49:46.808289952  [2024-02-06 07:49:46] frigate.video                  ERROR   : sam: Unable to read frames from ffmpeg process.
2024-02-06 06:49:46.808303841  [2024-02-06 07:49:46] frigate.video                  ERROR   : sam: Unable to read frames from ffmpeg process.
2024-02-06 06:49:46.808319563  [2024-02-06 07:49:46] frigate.video                  ERROR   : sam: ffmpeg process is not running. exiting capture thread...
2024-02-06 06:49:51.128264914  [2024-02-06 07:49:51] frigate.record.maintainer      DEBUG   : Found 1 old frames.
2024-02-06 06:49:51.613815587  [2024-02-06 07:49:51] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 06:49:58.204428332  [2024-02-06 07:49:58] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-06 06:49:58.204445702  [2024-02-06 07:49:58] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 06:49:58.204715276  [2024-02-06 07:49:58] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-06 06:49:58.234163875  [2024-02-06 07:49:58] ffmpeg.paddock.record          ERROR   : rtsp://127.0.0.1:8554/paddock_high: Invalid data found when processing input
2024-02-06 06:49:58.235725226  [2024-02-06 07:49:58] watchdog.paddock               INFO    : Terminating the existing ffmpeg process...
2024-02-06 06:49:58.238047521  [2024-02-06 07:49:58] watchdog.paddock               INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 06:49:58.362871857  [2024-02-06 07:49:58] watchdog.sam                   ERROR   : Ffmpeg process crashed unexpectedly for sam.
2024-02-06 06:49:58.367252873  [2024-02-06 07:49:58] watchdog.sam                   ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 06:49:58.368508150  [2024-02-06 07:49:58] ffmpeg.sam.detect              ERROR   : rtsp://127.0.0.1:8554/sam_low: Invalid data found when processing input
2024-02-06 06:49:58.456388354  [2024-02-06 07:49:58] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-06 06:49:58.492977597  [2024-02-06 07:49:58] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 06:49:58.515740495  [2024-02-06 07:49:58] ffmpeg.blackpearl.detect       ERROR   : rtsp://127.0.0.1:8554/blackpearl_low: Invalid data found when processing input
2024-02-06 06:49:58.553726979  [2024-02-06 07:49:58] watchdog.haustuer              INFO    : No frames received from haustuer in 20 seconds. Exiting ffmpeg...
2024-02-06 06:49:58.583590299  [2024-02-06 07:49:58] watchdog.haustuer              INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 06:49:58.611144139  [2024-02-06 07:49:58] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-06 06:49:58.611733843  [2024-02-06 07:49:58] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-06 06:49:58.612262417  [2024-02-06 07:49:58] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-06 06:49:58.614465731  [2024-02-06 07:49:58] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-06 06:49:58.627744466  [2024-02-06 07:49:58] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-06 06:49:58.628561817  [2024-02-06 07:49:58] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-06 06:49:58.637180610  [2024-02-06 07:49:58] frigate.video                  ERROR   : haustuer: Unable to read frames from ffmpeg process.
2024-02-06 06:49:58.672576224  [2024-02-06 07:49:58] frigate.video                  ERROR   : haustuer: ffmpeg process is not running. exiting capture thread...
2024-02-06 06:50:04.407673704  [2024-02-06 07:50:04] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:04.409619222  [2024-02-06 07:50:04] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:04.410757925  [2024-02-06 07:50:04] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:04.412861794  [2024-02-06 07:50:04] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:04.414160627  [2024-02-06 07:50:04] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:04.415247386  [2024-02-06 07:50:04] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-06 06:50:05.526418865  [2024-02-06 07:50:05] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-06 06:50:05.533302251  [2024-02-06 07:50:05] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-06 06:50:05.582152788  [2024-02-06 07:50:05] frigate.video                  ERROR   : sam: Unable to read frames from ffmpeg process.
2024-02-06 06:50:05.587657100  [2024-02-06 07:50:05] frigate.video                  ERROR   : sam: ffmpeg process is not running. exiting capture thread...
2024-02-06 06:50:07.631780293  [2024-02-06 07:50:07] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 06:50:08.284547236  [2024-02-06 07:50:08] ffmpeg.paddock.record          ERROR   : rtsp://127.0.0.1:8554/paddock_high: Invalid data found when processing input
2024-02-06 06:50:08.286203495  [2024-02-06 07:50:08] watchdog.paddock               INFO    : Terminating the existing ffmpeg process...
2024-02-06 06:50:08.286358662  [2024-02-06 07:50:08] watchdog.paddock               INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 06:50:08.321396260  [2024-02-06 07:50:08] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-06 06:50:08.322797278  [2024-02-06 07:50:08] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 06:50:08.322812926  [2024-02-06 07:50:08] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-06 06:50:08.574105963  [2024-02-06 07:50:08] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-06 06:50:08.575287333  [2024-02-06 07:50:08] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 06:50:08.575939722  [2024-02-06 07:50:08] ffmpeg.blackpearl.detect       ERROR   : rtsp://127.0.0.1:8554/blackpearl_low: Invalid data found when processing input
2024-02-06 06:50:08.603584027  [2024-02-06 07:50:08] watchdog.sam                   ERROR   : Ffmpeg process crashed unexpectedly for sam.
2024-02-06 06:50:08.605830915  [2024-02-06 07:50:08] watchdog.sam                   ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 06:50:08.607159674  [2024-02-06 07:50:08] ffmpeg.sam.detect              ERROR   : rtsp://127.0.0.1:8554/sam_low: Invalid data found when processing input
2024-02-06 06:50:08.670859483  [2024-02-06 07:50:08] watchdog.haustuer              ERROR   : Ffmpeg process crashed unexpectedly for haustuer.
2024-02-06 06:50:08.671833076  [2024-02-06 07:50:08] watchdog.haustuer              ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 06:50:08.673171186  [2024-02-06 07:50:08] ffmpeg.haustuer.detect         ERROR   : Finishing stream 0:0 without any data written to it.
2024-02-06 06:50:08.677327907  [2024-02-06 07:50:08] ffmpeg.haustuer.detect         ERROR   : [swscaler @ 0x55941d8450] deprecated pixel format used, make sure you did set range correctly
2024-02-06 06:50:08.682739201  [2024-02-06 07:50:08] ffmpeg.haustuer.detect         ERROR   : Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)
2024-02-06 06:50:14.420321773  [2024-02-06 07:50:14] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:14.420880013  [2024-02-06 07:50:14] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:14.424254216  [2024-02-06 07:50:14] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:14.425977382  [2024-02-06 07:50:14] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:14.427878085  [2024-02-06 07:50:14] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:14.430036955  [2024-02-06 07:50:14] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-06 06:50:18.384534534  [2024-02-06 07:50:18] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-06 06:50:18.384548404  [2024-02-06 07:50:18] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 06:50:18.384552182  [2024-02-06 07:50:18] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-06 06:50:21.138618416  [2024-02-06 07:50:21] frigate.record.maintainer      DEBUG   : Found 2 old frames.
2024-02-06 06:50:24.604509608  [2024-02-06 07:50:24] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:24.605462960  [2024-02-06 07:50:24] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-06 06:50:28.542156755  [2024-02-06 07:50:28] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-06 06:50:28.542169033  [2024-02-06 07:50:28] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 06:50:28.542172755  [2024-02-06 07:50:28] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-06 06:50:31.178327516  [2024-02-06 07:50:31] frigate.record.maintainer      DEBUG   : Found 1 old frames.
2024-02-06 06:50:34.597423966  [2024-02-06 07:50:34] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:34.615092498  [2024-02-06 07:50:34] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:34.615105869  [2024-02-06 07:50:34] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:34.615109221  [2024-02-06 07:50:34] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:34.615112313  [2024-02-06 07:50:34] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:34.615318572  [2024-02-06 07:50:34] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:34.615332739  [2024-02-06 07:50:34] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:34.634097678  [2024-02-06 07:50:34] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-06 06:50:38.708010498  [2024-02-06 07:50:38] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-06 06:50:38.708022331  [2024-02-06 07:50:38] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 06:50:38.708026016  [2024-02-06 07:50:38] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-06 06:50:39.647042877  [2024-02-06 07:50:39] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 06:50:44.400006562  [2024-02-06 07:50:44] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 06:50:44.401585487  [2024-02-06 07:50:44] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-06 06:50:48.804736629  [2024-02-06 07:50:48] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-06 06:50:48.804755703  [2024-02-06 07:50:48] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 06:50:48.804759389  [2024-02-06 07:50:48] ffmpeg.coolcassis.detect       ERROR   : rtsp://127.0.0.1:8554/coolcassis_low: Invalid data found when processing input
2024-02-06 06:50:51.169198893  [2024-02-06 07:50:51] frigate.record.maintainer      DEBUG   : Found 1 old frames.
NickM-27 commented 8 months ago

check go2rtc logs, looks like it is receiving bad data from some cameras still

WeiniGoas commented 8 months ago

Where can i find the bad data error in the go2rtc logs?

2024-02-06 13:55:08.232158539  [INFO] Preparing new go2rtc config...
2024-02-06 13:55:08.384549707  [INFO] Got IP address from supervisor: 10.0.1.7
2024-02-06 13:55:08.530219258  [INFO] Got WebRTC port from supervisor: 8555
2024-02-06 13:55:09.423847883  [INFO] Not injecting WebRTC candidates into go2rtc config as it has been set manually
2024-02-06 13:55:09.581960198  [INFO] Starting go2rtc...
2024-02-06 13:55:09.801508419  14:55:09.801 INF go2rtc version 1.8.4 linux/arm64
2024-02-06 13:55:09.807056106  14:55:09.806 INF [rtsp] listen addr=:8554
2024-02-06 13:55:09.808376996  14:55:09.807 INF [api] listen addr=:1984
2024-02-06 13:55:09.810880667  14:55:09.810 INF [webrtc] listen addr=:8555
2024-02-06 13:55:15.851889202  14:55:15.851 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 libopus -application:a:1 lowdelay -frame_duration 20 -min_comp 0 -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:16.118869454  14:55:16.118 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.32:554/stream1 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:16.319724751  14:55:16.319 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:16.411919738  14:55:16.411 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:16.512318452  14:55:16.511 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:16.613539043  14:55:16.612 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 libopus -application:a:1 lowdelay -frame_duration 20 -min_comp 0 -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:16.623856502  14:55:16.622 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 libopus -application:a:1 lowdelay -frame_duration 20 -min_comp 0 -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:16.714609545  14:55:16.714 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.31:554/stream2 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:16.867440151  14:55:16.867 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.32:554/stream2 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:16.973017612  14:55:16.972 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.31:554/stream1 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:17.918711246  [INFO] Starting go2rtc healthcheck service...
2024-02-06 13:55:19.544148730  Input #0, flv, from 'http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx':
2024-02-06 13:55:19.544160267    Metadata:
2024-02-06 13:55:19.544162397      displayWidth    : 2560
2024-02-06 13:55:19.544164230      displayHeight   : 2560
2024-02-06 13:55:19.544243062    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 13:55:19.544288339      Stream #0:0: Video: h264 (High), yuv420p(progressive), 2560x2560, 20 fps, 25 tbr, 1k tbn
2024-02-06 13:55:19.544733297      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:19.545950725  Stream mapping:
2024-02-06 13:55:19.545964706    Stream #0:0 -> #0:0 (copy)
2024-02-06 13:55:19.546010298    Stream #0:1 -> #0:1 (copy)
2024-02-06 13:55:19.546012835    Stream #0:1 -> #0:2 (aac (native) -> opus (libopus))
2024-02-06 13:55:19.546014391  Press [q] to stop, [?] for help
2024-02-06 13:55:19.549015833  [libopus @ 0x55b585e7b0] No bit rate set. Defaulting to 64000 bps.
2024-02-06 13:55:19.599990338  14:55:19.599 DBG [exec] run launch=3.74780725s
2024-02-06 13:55:19.601047361  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dc31a6ab66c91938ab5124143dd6fa97':
2024-02-06 13:55:19.601063842    Metadata:
2024-02-06 13:55:19.601065657      displayWidth    : 2560
2024-02-06 13:55:19.601067268      displayHeight   : 2560
2024-02-06 13:55:19.601068879      encoder         : Lavf58.45.100
2024-02-06 13:55:19.601141156      Stream #0:0: Video: h264 (High), yuv420p(progressive), 2560x2560, q=2-31, 20 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 13:55:19.601870813      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:19.601911813      Stream #0:2: Audio: opus (libopus), 16000 Hz, mono, flt, 64 kb/s
2024-02-06 13:55:19.601913294      Metadata:
2024-02-06 13:55:19.601915072        encoder         : Lavc58.91.100 libopus
2024-02-06 13:55:19.807052313  Guessed Channel Layout for Input Stream #0.1 : mono
2024-02-06 13:55:19.807064313  Input #0, rtsp, from 'rtsp://xxxx:xxxx@10.0.2.32:554/stream1':
2024-02-06 13:55:19.807066035    Metadata:
2024-02-06 13:55:19.807304865      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 13:55:19.807310624      comment         : stream2
2024-02-06 13:55:19.807312532    Duration: N/A, start: 0.000000, bitrate: N/A
2024-02-06 13:55:19.807315272      Stream #0:0: Video: h264 (Main), yuvj420p(pc, progressive), 2304x1296, 15 fps, 14.99 tbr, 90k tbn, 30 tbc
2024-02-06 13:55:19.807317235      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 13:55:19.861220498  14:55:19.860 DBG [exec] run launch=3.742157157s
2024-02-06 13:55:19.862217355  14:55:19.861 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://127.0.0.1:8554/paddock_high?audio acc -vn -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:19.863739650  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/d6b4e5611c340ccdb4cb37d12064fbaa':
2024-02-06 13:55:19.863907981    Metadata:
2024-02-06 13:55:19.864197866      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 13:55:19.864465974      comment         : stream2
2024-02-06 13:55:19.864725193      encoder         : Lavf58.45.100
2024-02-06 13:55:19.865565904      Stream #0:0: Video: h264 (Main), yuvj420p(pc, progressive), 2304x1296, q=2-31, 15 fps, 14.99 tbr, 90k tbn, 15 tbc
2024-02-06 13:55:19.866063787      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 13:55:19.866206137  Stream mapping:
2024-02-06 13:55:19.866483596    Stream #0:0 -> #0:0 (copy)
2024-02-06 13:55:19.866900979    Stream #0:1 -> #0:1 (copy)
2024-02-06 13:55:19.867034681  Press [q] to stop, [?] for help
2024-02-06 13:55:19.885770012  Guessed Channel Layout for Input Stream #0.1 : mono
2024-02-06 13:55:19.885784104  Input #0, rtsp, from 'rtsp://xxxx:xxxx@10.0.2.31:554/stream1':
2024-02-06 13:55:19.885785623    Metadata:
2024-02-06 13:55:19.885787827      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 13:55:19.885789364      comment         : stream1
2024-02-06 13:55:19.885866844    Duration: N/A, start: 0.000000, bitrate: N/A
2024-02-06 13:55:19.887018774      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 1920x1080, 15 fps, 14.29 tbr, 90k tbn, 30 tbc
2024-02-06 13:55:19.887266955      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 13:55:19.889458205  Guessed Channel Layout for Input Stream #0.1 : mono
2024-02-06 13:55:19.889473408  Input #0, rtsp, from 'rtsp://xxxx:xxxx@10.0.2.31:554/stream2':
2024-02-06 13:55:19.889475279    Metadata:
2024-02-06 13:55:19.889477612      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 13:55:19.889479316      comment         : stream2
2024-02-06 13:55:19.889481112    Duration: N/A, start: 0.000000, bitrate: N/A
2024-02-06 13:55:19.889483908      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 640x360, 15 fps, 28.58 tbr, 90k tbn, 30 tbc
2024-02-06 13:55:19.889496075      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 13:55:19.940032418  14:55:19.939 DBG [exec] run launch=3.225054971s
2024-02-06 13:55:19.941073238  14:55:19.940 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://127.0.0.1:8554/haustuer_low?audio acc -vn -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:19.942406035  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/e103fb1de86de8a2da40985dff943ddb':
2024-02-06 13:55:19.942416553    Metadata:
2024-02-06 13:55:19.942418905      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 13:55:19.942485516      comment         : stream2
2024-02-06 13:55:19.942489127      encoder         : Lavf58.45.100
2024-02-06 13:55:19.942575163      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 640x360, q=2-31, 15 fps, 28.58 tbr, 90k tbn, 15 tbc
2024-02-06 13:55:19.944327473      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 13:55:19.944343177  Stream mapping:
2024-02-06 13:55:19.944344788    Stream #0:0 -> #0:0 (copy)
2024-02-06 13:55:19.944346251    Stream #0:1 -> #0:1 (copy)
2024-02-06 13:55:19.944347751  Press [q] to stop, [?] for help
2024-02-06 13:55:19.946645906  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/4b9bf7aa13da4943c7a1e08503373845':
2024-02-06 13:55:19.946656406    Metadata:
2024-02-06 13:55:19.946658480      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 13:55:19.946659943      comment         : stream1
2024-02-06 13:55:19.946661535      encoder         : Lavf58.45.100
2024-02-06 13:55:19.946664387      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 1920x1080, q=2-31, 15 fps, 14.29 tbr, 90k tbn, 15 tbc
2024-02-06 13:55:19.946666406      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 13:55:19.946667702  Stream mapping:
2024-02-06 13:55:19.946669183    Stream #0:0 -> #0:0 (copy)
2024-02-06 13:55:19.946670646    Stream #0:1 -> #0:1 (copy)
2024-02-06 13:55:19.946672109  Press [q] to stop, [?] for help
2024-02-06 13:55:19.951083811  14:55:19.947 DBG [exec] run launch=2.974071678s
2024-02-06 13:55:19.953247950  14:55:19.952 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://127.0.0.1:8554/haustuer_high?audio acc -vn -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:20.202972130  frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:02.62 bitrate=N/A speed=5.02x    
Guessed Channel Layout for Input Stream #0.1 : mono
2024-02-06 13:55:20.202985389  Input #0, rtsp, from 'rtsp://xxxx:xxxx@10.0.2.32:554/stream2':
2024-02-06 13:55:20.202987315    Metadata:
2024-02-06 13:55:20.202989667      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 13:55:20.202991426      comment         : stream2
2024-02-06 13:55:20.203088351    Duration: N/A, start: 0.000000, bitrate: N/A
2024-02-06 13:55:20.205608633      Stream #0:0: Video: h264 (Main), yuvj420p(pc, progressive), 640x360, 15 fps, 15 tbr, 90k tbn, 30 tbc
2024-02-06 13:55:20.205621873      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 13:55:20.258712276  14:55:20.258 DBG [exec] run launch=3.391128719s
2024-02-06 13:55:20.260296755  14:55:20.259 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://127.0.0.1:8554/paddock_low?audio acc -vn -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:20.262080491  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/095a8d3394d4e8b9e902af753b9dbbbb':
2024-02-06 13:55:20.262092287    Metadata:
2024-02-06 13:55:20.262094713      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 13:55:20.262156194      comment         : stream2
2024-02-06 13:55:20.262159694      encoder         : Lavf58.45.100
2024-02-06 13:55:20.264123835      Stream #0:0: Video: h264 (Main), yuvj420p(pc, progressive), 640x360, q=2-31, 15 fps, 15 tbr, 90k tbn, 15 tbc
2024-02-06 13:55:20.264136687      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 13:55:20.264138168  Stream mapping:
2024-02-06 13:55:20.264139687    Stream #0:0 -> #0:0 (copy)
2024-02-06 13:55:20.264141168    Stream #0:1 -> #0:1 (copy)
2024-02-06 13:55:20.264142668  Press [q] to stop, [?] for help
2024-02-06 13:55:20.348450369  Input #0, flv, from 'http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx':
2024-02-06 13:55:20.348596182    Metadata:
2024-02-06 13:55:20.348733754      displayWidth    : 2560
2024-02-06 13:55:20.348869159      displayHeight   : 2560
2024-02-06 13:55:20.349126138    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 13:55:20.350941966      Stream #0:0: Video: h264 (High), yuv420p(progressive), 2560x2560, 19 fps, 25 tbr, 1k tbn
2024-02-06 13:55:20.351211999      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:20.354038055  Stream mapping:
2024-02-06 13:55:20.354235071    Stream #0:0 -> #0:0 (copy)
2024-02-06 13:55:20.354379051    Stream #0:1 -> #0:1 (copy)
2024-02-06 13:55:20.354532956    Stream #0:1 -> #0:2 (aac (native) -> opus (libopus))
2024-02-06 13:55:20.354603585  Press [q] to stop, [?] for help
2024-02-06 13:55:20.360484175  [libopus @ 0x5596d0c7b0] No bit rate set. Defaulting to 64000 bps.
2024-02-06 13:55:20.390009236  Guessed Channel Layout for Input Stream #0.0 : mono
2024-02-06 13:55:20.390024976  Input #0, rtsp, from 'rtsp://127.0.0.1:8554/paddock_high?audio':
2024-02-06 13:55:20.390026625    Metadata:
2024-02-06 13:55:20.390028476      title           : go2rtc/1.8.4
2024-02-06 13:55:20.390030328    Duration: N/A, start: 0.000000, bitrate: 64 kb/s
2024-02-06 13:55:20.390032273      Stream #0:0: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 13:55:20.390034328  [NULL @ 0x55a3312a70] Unable to find a suitable output format for 'acc'
2024-02-06 13:55:20.390035680  acc: Invalid argument
2024-02-06 13:55:20.412843143  frame=    7 fps=0.0 q=-1.0 size=N/A time=00:00:02.33 bitrate=N/A speed= 4.5x    
14:55:20.412 DBG [exec] run launch=3.799651095s
2024-02-06 13:55:20.414253347  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/d1c70890cbaf76e04a2cedca03ebbcc7':
2024-02-06 13:55:20.414389271    Metadata:
2024-02-06 13:55:20.415415757      displayWidth    : 2560
2024-02-06 13:55:20.415663588      displayHeight   : 2560
2024-02-06 13:55:20.415789845      encoder         : Lavf58.45.100
2024-02-06 13:55:20.418204684      Stream #0:0: Video: h264 (High), yuv420p(progressive), 2560x2560, q=2-31, 19 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 13:55:20.418565772      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:20.418803991      Stream #0:2: Audio: opus (libopus), 16000 Hz, mono, flt, 64 kb/s
2024-02-06 13:55:20.419888662      Metadata:
2024-02-06 13:55:20.420056493        encoder         : Lavc58.91.100 libopus
2024-02-06 13:55:20.428135092  Guessed Channel Layout for Input Stream #0.0 : mono
2024-02-06 13:55:20.428147740  Input #0, rtsp, from 'rtsp://127.0.0.1:8554/haustuer_high?audio':
2024-02-06 13:55:20.428149425    Metadata:
2024-02-06 13:55:20.428203406      title           : go2rtc/1.8.4
2024-02-06 13:55:20.428206165    Duration: N/A, start: 0.000000, bitrate: 64 kb/s
2024-02-06 13:55:20.429777367      Stream #0:0: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 13:55:20.429788904  [NULL @ 0x55a55a9970] Unable to find a suitable output format for 'acc'
2024-02-06 13:55:20.429790441  acc: Invalid argument
2024-02-06 13:55:20.525057721  frame=    6 fps=0.0 q=-1.0 size=N/A time=00:00:02.59 bitrate=N/A speed=5.11x    
frame=    6 fps=0.0 q=-1.0 size=N/A time=00:00:15.14 bitrate=N/A speed=  30x    
Guessed Channel Layout for Input Stream #0.0 : mono
2024-02-06 13:55:20.525069462  Input #0, rtsp, from 'rtsp://127.0.0.1:8554/haustuer_low?audio':
2024-02-06 13:55:20.525123776    Metadata:
2024-02-06 13:55:20.525127109      title           : go2rtc/1.8.4
2024-02-06 13:55:20.525129035    Duration: N/A, start: 0.000000, bitrate: 64 kb/s
2024-02-06 13:55:20.525221515      Stream #0:0: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 13:55:20.525330570  [NULL @ 0x558d384970] Unable to find a suitable output format for 'acc'
2024-02-06 13:55:20.525335014  acc: Invalid argument
2024-02-06 13:55:20.692470971  frame=    2 fps=1.9 q=-1.0 size=N/A time=00:00:03.06 bitrate=N/A speed=2.96x    
Input #0, flv, from 'http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx':
2024-02-06 13:55:20.692484545    Metadata:
2024-02-06 13:55:20.692486415      displayWidth    : 2560
2024-02-06 13:55:20.692488138      displayHeight   : 2560
2024-02-06 13:55:20.692558803    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 13:55:20.695388989      Stream #0:0: Video: h264 (High), yuv420p(progressive), 2560x2560, 19 fps, 25 tbr, 1k tbn
2024-02-06 13:55:20.695401415      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:20.696614584  Stream mapping:
2024-02-06 13:55:20.696624158    Stream #0:0 -> #0:0 (copy)
2024-02-06 13:55:20.696625825    Stream #0:1 -> #0:1 (copy)
2024-02-06 13:55:20.696668898    Stream #0:1 -> #0:2 (aac (native) -> opus (libopus))
2024-02-06 13:55:20.696671176  Press [q] to stop, [?] for help
2024-02-06 13:55:20.699450473  [libopus @ 0x558345e7b0] No bit rate set. Defaulting to 64000 bps.
2024-02-06 13:55:20.722816151  Guessed Channel Layout for Input Stream #0.0 : mono
2024-02-06 13:55:20.722826688  Input #0, rtsp, from 'rtsp://127.0.0.1:8554/paddock_low?audio':
2024-02-06 13:55:20.722828132    Metadata:
2024-02-06 13:55:20.722877743      title           : go2rtc/1.8.4
2024-02-06 13:55:20.722880298    Duration: N/A, start: 0.000000, bitrate: 64 kb/s
2024-02-06 13:55:20.724430408      Stream #0:0: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 13:55:20.724441741  [NULL @ 0x55cf7fea60] Unable to find a suitable output format for 'acc'
2024-02-06 13:55:20.724443352  acc: Invalid argument
2024-02-06 13:55:20.753841914  14:55:20.753 DBG [exec] run launch=4.129918117s
2024-02-06 13:55:20.755742445  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/e8f7a54b8a7e44340dffd0d9bf3ab20e':
2024-02-06 13:55:20.755875740    Metadata:
2024-02-06 13:55:20.756127736      displayWidth    : 2560
2024-02-06 13:55:20.756950578      displayHeight   : 2560
2024-02-06 13:55:20.757393146      encoder         : Lavf58.45.100
2024-02-06 13:55:20.758375781      Stream #0:0: Video: h264 (High), yuv420p(progressive), 2560x2560, q=2-31, 19 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 13:55:20.759445156      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:20.759801985      Stream #0:2: Audio: opus (libopus), 16000 Hz, mono, flt, 64 kb/s
2024-02-06 13:55:20.760050148      Metadata:
2024-02-06 13:55:20.760236461        encoder         : Lavc58.91.100 libopus
2024-02-06 13:55:20.868731477  frame=    3 fps=0.0 q=-1.0 size=N/A time=00:00:02.39 bitrate=N/A speed=4.46x    
[rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23790, current: -77669; changing to 23791. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:20.908418053  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23791, current: -77339; changing to 23792. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:20.930677857  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23792, current: -77166; changing to 23793. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:20.962216336  frame=   15 fps= 14 q=-1.0 size=N/A time=00:00:02.86 bitrate=N/A speed=2.71x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:02.79 bitrate=N/A speed= 5.2x    
[rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23793, current: -76909; changing to 23794. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:20.997304176  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23794, current: -76630; changing to 23795. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.019625830  frame=   13 fps= 13 q=-1.0 size=N/A time=00:00:02.97 bitrate=N/A speed=2.92x    
frame=   13 fps= 13 q=-1.0 size=N/A time=00:00:15.63 bitrate=N/A speed=15.4x    
[rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23795, current: -76448; changing to 23796. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.054616894  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23796, current: -76177; changing to 23797. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.085394698  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23797, current: -75926; changing to 23798. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.119978767  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23798, current: -75647; changing to 23799. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.158023883  frame=   14 fps=9.1 q=-1.0 size=N/A time=00:00:03.64 bitrate=N/A speed=2.36x    
[rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23799, current: -75375; changing to 23800. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.192358252  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23800, current: -75177; changing to 23801. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.218034288  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23801, current: -74863; changing to 23802. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.245849871  frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:02.75 bitrate=N/A speed=5.19x    
[rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23802, current: -74639; changing to 23803. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.279715209  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23803, current: -74368; changing to 23804. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.309800318  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23804, current: -74127; changing to 23805. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.344244074  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23805, current: -73853; changing to 23806. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.371707254  frame=   11 fps= 10 q=-1.0 size=N/A time=00:00:02.92 bitrate=N/A speed=2.74x    
[rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23806, current: -73633; changing to 23807. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.410855393  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23807, current: -73374; changing to 23808. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.437672341  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23808, current: -73105; changing to 23809. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.476116712  frame=    5 fps=4.7 q=-1.0 size=N/A time=00:00:03.31 bitrate=N/A speed=3.09x    
[rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23809, current: -72797; changing to 23810. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.503395968  frame=   21 fps= 14 q=-1.0 size=N/A time=00:00:16.19 bitrate=N/A speed=10.6x    
frame=   23 fps= 14 q=-1.0 size=N/A time=00:00:03.40 bitrate=N/A speed=2.13x    
[rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23810, current: -72577; changing to 23811. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.537990370  frame=   20 fps= 13 q=-1.0 size=N/A time=00:00:03.43 bitrate=N/A speed=2.24x    
[rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23811, current: -72301; changing to 23812. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.568723304  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23812, current: -72056; changing to 23813. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.595659454  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23813, current: -71839; changing to 23814. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.629067168  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23814, current: -71574; changing to 23815. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.670089320  frame=   24 fps= 12 q=-1.0 size=N/A time=00:00:04.22 bitrate=N/A speed=2.04x    
[rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23815, current: -71323; changing to 23816. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.694433670  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23816, current: -71051; changing to 23817. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.723604106  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23817, current: -70818; changing to 23818. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.758577726  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23818, current: -70561; changing to 23819. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.792230992  frame=    5 fps=4.8 q=-1.0 size=N/A time=00:00:03.27 bitrate=N/A speed=3.13x    
[rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23819, current: -70270; changing to 23820. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:21.823536474  [rtsp @ 0x5590d79260] Non-monotonous DTS in output stream 0:1; previous: 23820, current: -70022; changing to 23821. This may result in incorrect timestamps in the output file.
2024-02-06 13:55:22.242744192  frame=   20 fps= 12 q=-1.0 size=N/A time=00:00:03.53 bitrate=N/A speed= 2.2x    
frame=   16 fps= 10 q=-1.0 size=N/A time=00:00:03.81 bitrate=N/A speed=2.41x    
frame=   32 fps= 15 q=-1.0 size=N/A time=00:00:04.00 bitrate=N/A speed=1.88x    
frame=   35 fps= 13 q=-1.0 size=N/A time=00:00:04.72 bitrate=N/A speed= 1.8x    
Input #0, flv, from 'http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 13:55:22.242758414    Metadata:
2024-02-06 13:55:22.242760414      displayWidth    : 1024
2024-02-06 13:55:22.242762192      displayHeight   : 1024
2024-02-06 13:55:22.242860931    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 13:55:22.243594644      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 13:55:22.243603125      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:22.300370517  frame=   16 fps= 10 q=-1.0 size=N/A time=00:00:03.77 bitrate=N/A speed=2.38x    
14:55:22.300 DBG [exec] run launch=5.788229526s
2024-02-06 13:55:22.301867960  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dc75ec5c1523f099320784f3a43b5538':
2024-02-06 13:55:22.301921867    Metadata:
2024-02-06 13:55:22.302003922      displayWidth    : 1024
2024-02-06 13:55:22.302735116      displayHeight   : 1024
2024-02-06 13:55:22.302749819      encoder         : Lavf58.45.100
2024-02-06 13:55:22.302755616      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 13:55:22.302759523      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:22.302762152  Stream mapping:
2024-02-06 13:55:22.302811430    Stream #0:0 -> #0:0 (copy)
2024-02-06 13:55:22.302858170    Stream #0:1 -> #0:1 (copy)
2024-02-06 13:55:22.302903873  Press [q] to stop, [?] for help
2024-02-06 13:55:22.561635547  frame=   26 fps= 12 q=-1.0 size=N/A time=00:00:04.33 bitrate=N/A speed=2.08x    
frame=   28 fps= 13 q=-1.0 size=N/A time=00:00:04.06 bitrate=N/A speed= 1.9x    
Input #0, flv, from 'http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 13:55:22.561653602    Metadata:
2024-02-06 13:55:22.561657713      displayWidth    : 1024
2024-02-06 13:55:22.564214495      displayHeight   : 1024
2024-02-06 13:55:22.564231698    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 13:55:22.564237828      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 13:55:22.564242513      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:22.566182951  Input #0, flv, from 'http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 13:55:22.566321282    Metadata:
2024-02-06 13:55:22.566513743      displayWidth    : 1024
2024-02-06 13:55:22.566707592      displayHeight   : 1024
2024-02-06 13:55:22.567089698    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 13:55:22.568682937      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 13:55:22.570778243      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:22.641462769  frame=   40 fps= 15 q=-1.0 size=N/A time=00:00:04.53 bitrate=N/A speed= 1.7x    
14:55:22.640 DBG [exec] run launch=6.228374435s
2024-02-06 13:55:22.641475954  14:55:22.640 DBG [exec] run launch=6.321053638s
2024-02-06 13:55:22.642222777  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dd9cdc4b33c8be02896bee67b8b27d4d':
2024-02-06 13:55:22.642922472    Metadata:
2024-02-06 13:55:22.650692315  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/be8cb653df32c933d282e4c0e43fa184':
2024-02-06 13:55:22.650703945    Metadata:
2024-02-06 13:55:22.650705871      displayWidth    : 1024
2024-02-06 13:55:22.650707612      displayHeight   : 1024
2024-02-06 13:55:22.650709482      encoder         : Lavf58.45.100
2024-02-06 13:55:22.650712334      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 13:55:22.650764907      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:22.650767000  Stream mapping:
2024-02-06 13:55:22.650768537    Stream #0:0 -> #0:0 (copy)
2024-02-06 13:55:22.650770000    Stream #0:1 -> #0:1 (copy)
2024-02-06 13:55:22.650771481  Press [q] to stop, [?] for help
2024-02-06 13:55:22.650921053      displayWidth    : 1024
2024-02-06 13:55:22.651044718      displayHeight   : 1024
2024-02-06 13:55:22.651176328      encoder         : Lavf58.45.100
2024-02-06 13:55:22.651574508      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 13:55:22.651821393      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:22.651892337  Stream mapping:
2024-02-06 13:55:22.652012613    Stream #0:0 -> #0:0 (copy)
2024-02-06 13:55:22.652685864    Stream #0:1 -> #0:1 (copy)
2024-02-06 13:55:22.653525779  Press [q] to stop, [?] for help
2024-02-06 13:55:23.220189839  frame=   46 fps= 14 q=-1.0 size=N/A time=00:00:05.30 bitrate=N/A speed=1.67x    
frame=   27 fps= 13 q=-1.0 size=N/A time=00:00:04.29 bitrate=N/A speed=2.05x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.66 bitrate=N/A speed=8.82x    
frame=   36 fps= 14 q=-1.0 size=N/A time=00:00:04.83 bitrate=N/A speed=1.85x    
frame=   36 fps= 14 q=-1.0 size=N/A time=00:00:04.59 bitrate=N/A speed=1.72x    
frame=   47 fps= 15 q=-1.0 size=N/A time=00:00:05.04 bitrate=N/A speed=1.59x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.64 bitrate=N/A speed=8.74x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.64 bitrate=N/A speed= 9.2x    
av_interleaved_write_frame(): Broken pipe
2024-02-06 13:55:23.221320269  Error writing trailer of rtsp://127.0.0.1:8554/dc75ec5c1523f099320784f3a43b5538: Broken pipe
2024-02-06 13:55:23.221334621  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:04.99 bitrate=N/A speed=5.44x    
2024-02-06 13:55:23.221338176  video:29kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 13:55:23.222512309  Conversion failed!
2024-02-06 13:55:23.237113379  14:55:23.236 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:23.569977645  frame=   57 fps= 15 q=-1.0 size=N/A time=00:00:05.82 bitrate=N/A speed=1.56x    
frame=   36 fps= 14 q=-1.0 size=N/A time=00:00:04.79 bitrate=N/A speed=1.84x    
frame=   47 fps= 15 q=-1.0 size=N/A time=00:00:05.35 bitrate=N/A speed=1.71x    
av_interleaved_write_frame(): Broken pipe
2024-02-06 13:55:23.569993348  Error writing trailer of rtsp://127.0.0.1:8554/be8cb653df32c933d282e4c0e43fa184: Broken pipe
2024-02-06 13:55:23.569996719  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:04.99 bitrate=N/A speed=5.44x    
2024-02-06 13:55:23.570000033  video:30kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 13:55:23.573990296  Conversion failed!
2024-02-06 13:55:23.581039668  av_interleaved_write_frame(): Broken pipe
2024-02-06 13:55:23.582108932  Error writing trailer of rtsp://127.0.0.1:8554/dd9cdc4b33c8be02896bee67b8b27d4d: Broken pipe
2024-02-06 13:55:23.582168116  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:04.99 bitrate=N/A speed=5.38x    
2024-02-06 13:55:23.583096548  video:29kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 13:55:23.584951969  Conversion failed!
2024-02-06 13:55:23.596465782  14:55:23.595 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:23.601129592  14:55:23.600 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:32.049024625  frame=   68 fps= 16 q=-1.0 size=N/A time=00:00:06.32 bitrate=N/A speed=1.49x    
frame=   46 fps= 15 q=-1.0 size=N/A time=00:00:05.31 bitrate=N/A speed=1.71x    
frame=   57 fps= 16 q=-1.0 size=N/A time=00:00:05.87 bitrate=N/A speed=1.61x    
frame=   54 fps= 13 q=-1.0 size=N/A time=00:00:05.49 bitrate=N/A speed=1.32x    
frame=   43 fps= 13 q=-1.0 size=N/A time=00:00:05.15 bitrate=N/A speed=1.61x    
frame=   44 fps= 12 q=-1.0 size=N/A time=00:00:05.15 bitrate=N/A speed=1.37x    
frame=   78 fps= 16 q=-1.0 size=N/A time=00:00:06.84 bitrate=N/A speed=1.44x    
frame=   57 fps= 16 q=-1.0 size=N/A time=00:00:05.83 bitrate=N/A speed=1.61x    
frame=   67 fps= 16 q=-1.0 size=N/A time=00:00:06.37 bitrate=N/A speed=1.54x    
frame=   59 fps= 14 q=-1.0 size=N/A time=00:00:06.24 bitrate=N/A speed=1.46x    
frame=   69 fps= 15 q=-1.0 size=N/A time=00:00:06.58 bitrate=N/A speed=1.41x    
frame=   88 fps= 17 q=-1.0 size=N/A time=00:00:07.42 bitrate=N/A speed=1.41x    
frame=   68 fps= 16 q=-1.0 size=N/A time=00:00:06.35 bitrate=N/A speed=1.53x    
frame=   77 fps= 17 q=-1.0 size=N/A time=00:00:06.89 bitrate=N/A speed=1.49x    
frame=   77 fps= 15 q=-1.0 size=N/A time=00:00:07.04 bitrate=N/A speed=1.36x    
frame=   67 fps= 14 q=-1.0 size=N/A time=00:00:06.70 bitrate=N/A speed= 1.4x    
frame=   99 fps= 17 q=-1.0 size=N/A time=00:00:07.87 bitrate=N/A speed=1.36x    
frame=   77 fps= 17 q=-1.0 size=N/A time=00:00:06.85 bitrate=N/A speed=1.48x    
frame=   88 fps= 17 q=-1.0 size=N/A time=00:00:07.39 bitrate=N/A speed=1.42x    
frame=   85 fps= 15 q=-1.0 size=N/A time=00:00:07.57 bitrate=N/A speed=1.33x    
frame=   75 fps= 14 q=-1.0 size=N/A time=00:00:07.22 bitrate=N/A speed=1.36x    
frame=  109 fps= 17 q=-1.0 size=N/A time=00:00:08.44 bitrate=N/A speed=1.34x    
frame=   88 fps= 17 q=-1.0 size=N/A time=00:00:07.35 bitrate=N/A speed=1.42x    
frame=   99 fps= 17 q=-1.0 size=N/A time=00:00:07.97 bitrate=N/A speed=1.39x    
frame=   82 fps= 14 q=-1.0 size=N/A time=00:00:07.78 bitrate=N/A speed=1.34x    
frame=   93 fps= 15 q=-1.0 size=N/A time=00:00:08.12 bitrate=N/A speed= 1.3x    
frame=  119 fps= 17 q=-1.0 size=N/A time=00:00:08.94 bitrate=N/A speed=1.31x    
frame=   98 fps= 17 q=-1.0 size=N/A time=00:00:07.87 bitrate=N/A speed=1.38x    
frame=  109 fps= 17 q=-1.0 size=N/A time=00:00:08.49 bitrate=N/A speed=1.36x    
frame=   91 fps= 14 q=-1.0 size=N/A time=00:00:08.26 bitrate=N/A speed= 1.3x    
frame=  101 fps= 15 q=-1.0 size=N/A time=00:00:08.68 bitrate=N/A speed=1.28x    
frame=  129 fps= 18 q=-1.0 size=N/A time=00:00:09.46 bitrate=N/A speed=1.29x    
frame=  108 fps= 17 q=-1.0 size=N/A time=00:00:08.39 bitrate=N/A speed=1.35x    
frame=   98 fps= 14 q=-1.0 size=N/A time=00:00:08.76 bitrate=N/A speed=1.28x    
frame=  120 fps= 18 q=-1.0 size=N/A time=00:00:08.99 bitrate=N/A speed=1.32x    
frame=  109 fps= 15 q=-1.0 size=N/A time=00:00:09.24 bitrate=N/A speed=1.26x    
frame=  140 fps= 18 q=-1.0 size=N/A time=00:00:09.91 bitrate=N/A speed=1.27x    
frame=  119 fps= 18 q=-1.0 size=N/A time=00:00:08.95 bitrate=N/A speed=1.33x    
frame=  106 fps= 14 q=-1.0 size=N/A time=00:00:09.25 bitrate=N/A speed=1.26x    
frame=  131 fps= 18 q=-1.0 size=N/A time=00:00:09.51 bitrate=N/A speed= 1.3x    
frame=  118 fps= 15 q=-1.0 size=N/A time=00:00:09.74 bitrate=N/A speed=1.24x    
frame=  150 fps= 18 q=-1.0 size=N/A time=00:00:10.48 bitrate=N/A speed=1.25x    
frame=  129 fps= 18 q=-1.0 size=N/A time=00:00:09.47 bitrate=N/A speed= 1.3x    
frame=  140 fps= 18 q=-1.0 size=N/A time=00:00:10.03 bitrate=N/A speed=1.29x    
frame=  114 fps= 14 q=-1.0 size=N/A time=00:00:09.79 bitrate=N/A speed=1.24x    
frame=  126 fps= 15 q=-1.0 size=N/A time=00:00:10.27 bitrate=N/A speed=1.22x    
frame=  140 fps= 18 q=-1.0 size=N/A time=00:00:09.99 bitrate=N/A speed=1.28x    
frame=  161 fps= 18 q=-1.0 size=N/A time=00:00:11.06 bitrate=N/A speed=1.23x    
frame=  121 fps= 14 q=-1.0 size=N/A time=00:00:10.30 bitrate=N/A speed=1.23x    
frame=  151 fps= 18 q=-1.0 size=N/A time=00:00:10.53 bitrate=N/A speed=1.27x    
frame=  133 fps= 15 q=-1.0 size=N/A time=00:00:10.78 bitrate=N/A speed=1.21x    
frame=  151 fps= 18 q=-1.0 size=N/A time=00:00:10.49 bitrate=N/A speed=1.26x    
frame=  173 fps= 18 q=-1.0 size=N/A time=00:00:11.64 bitrate=N/A speed=1.22x    
frame=  160 fps= 18 q=-1.0 size=N/A time=00:00:11.05 bitrate=N/A speed=1.25x    
frame=  129 fps= 14 q=-1.0 size=N/A time=00:00:10.85 bitrate=N/A speed=1.22x    
frame=  141 fps= 15 q=-1.0 size=N/A time=00:00:11.34 bitrate=N/A speed= 1.2x    
frame=  183 fps= 18 q=-1.0 size=N/A time=00:00:12.14 bitrate=N/A speed=1.21x    
frame=  161 fps= 18 q=-1.0 size=N/A time=00:00:11.01 bitrate=N/A speed=1.25x    
frame=  171 fps= 18 q=-1.0 size=N/A time=00:00:11.55 bitrate=N/A speed=1.24x    
frame=  137 fps= 14 q=-1.0 size=N/A time=00:00:11.42 bitrate=N/A speed=1.21x    
frame=  149 fps= 15 q=-1.0 size=N/A time=00:00:11.90 bitrate=N/A speed=1.19x    
frame=  171 fps= 18 q=-1.0 size=N/A time=00:00:11.51 bitrate=N/A speed=1.23x    
frame=  193 fps= 18 q=-1.0 size=N/A time=00:00:12.66 bitrate=N/A speed= 1.2x    
frame=  181 fps= 18 q=-1.0 size=N/A time=00:00:12.07 bitrate=N/A speed=1.22x    
frame=  145 fps= 14 q=-1.0 size=N/A time=00:00:11.98 bitrate=N/A speed= 1.2x    
frame=  158 fps= 15 q=-1.0 size=N/A time=00:00:12.40 bitrate=N/A speed=1.18x    
frame=  204 fps= 18 q=-1.0 size=N/A time=00:00:13.18 bitrate=N/A speed=1.19x    
frame=  181 fps= 18 q=-1.0 size=N/A time=00:00:12.03 bitrate=N/A speed=1.21x    
frame=  153 fps= 15 q=-1.0 size=N/A time=00:00:12.43 bitrate=N/A speed=1.18x    
frame=  193 fps= 18 q=-1.0 size=N/A time=00:00:12.71 bitrate=N/A speed=1.22x    
frame=  165 fps= 15 q=-1.0 size=N/A time=00:00:12.92 bitrate=N/A speed=1.17x    
frame=  214 fps= 18 q=-1.0 size=N/A time=00:00:13.68 bitrate=N/A speed=1.18x    
frame=  194 fps= 19 q=-1.0 size=N/A time=00:00:12.63 bitrate=N/A speed=1.21x    
frame=  202 fps= 18 q=-1.0 size=N/A time=00:00:13.09 bitrate=N/A speed=1.19x    
frame=  161 fps= 15 q=-1.0 size=N/A time=00:00:12.96 bitrate=N/A speed=1.17x    
frame=  173 fps= 15 q=-1.0 size=N/A time=00:00:13.44 bitrate=N/A speed=1.16x    
frame=  225 fps= 19 q=-1.0 size=N/A time=00:00:14.26 bitrate=N/A speed=1.18x    
frame=  204 fps= 19 q=-1.0 size=N/A time=00:00:13.19 bitrate=N/A speed= 1.2x    
frame=  169 fps= 15 q=-1.0 size=N/A time=00:00:13.46 bitrate=N/A speed=1.17x    
frame=  214 fps= 19 q=-1.0 size=N/A time=00:00:13.73 bitrate=N/A speed=1.19x    
frame=  181 fps= 15 q=-1.0 size=N/A time=00:00:14.00 bitrate=N/A speed=1.15x    
frame=   26 fps=3.7 q=-1.0 size=N/A time=00:00:16.54 bitrate=N/A speed=2.37x    
Error writing trailer of rtsp://127.0.0.1:8554/4b9bf7aa13da4943c7a1e08503373845: Broken pipe
2024-02-06 13:55:32.049253029  frame=   26 fps=2.1 q=-1.0 Lsize=N/A time=00:00:16.54 bitrate=N/A speed=1.37x    
2024-02-06 13:55:32.049258252  video:159kB audio:15kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 13:55:32.049263011  frame=   26 fps=3.7 q=-1.0 size=N/A time=00:00:03.85 bitrate=N/A speed=0.551x    
frame=   26 fps=2.1 q=-1.0 Lsize=N/A time=00:00:03.85 bitrate=N/A speed=0.318x    
2024-02-06 13:55:32.049266492  video:38kB audio:15kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 13:55:32.049270585  14:55:32.048 WRN github.com/AlexxIT/go2rtc/internal/streams/producer.go:171 > error=EOF url=ffmpeg:rtsp://xxxx:xxxx@10.0.2.31:554/stream2
2024-02-06 13:55:32.049277788  14:55:32.048 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.31:554/stream2 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:32.065335746  14:55:32.064 TRC [exec] close url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.31:554/stream1 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:32.080460642  14:55:32.079 TRC [exec] close url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.31:554/stream2 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:35.230761642  frame=  214 fps= 19 q=-1.0 size=N/A time=00:00:13.69 bitrate=N/A speed=1.19x    
frame=  236 fps= 19 q=-1.0 size=N/A time=00:00:14.78 bitrate=N/A speed=1.17x    
frame=  176 fps= 15 q=-1.0 size=N/A time=00:00:13.97 bitrate=N/A speed=1.16x    
frame=  224 fps= 19 q=-1.0 size=N/A time=00:00:14.25 bitrate=N/A speed=1.19x    
frame=  189 fps= 15 q=-1.0 size=N/A time=00:00:14.56 bitrate=N/A speed=1.15x    
frame=  224 fps= 19 q=-1.0 size=N/A time=00:00:14.21 bitrate=N/A speed=1.18x    
frame=  246 fps= 19 q=-1.0 size=N/A time=00:00:15.28 bitrate=N/A speed=1.16x    
frame=  184 fps= 15 q=-1.0 size=N/A time=00:00:14.50 bitrate=N/A speed=1.15x    
frame=  235 fps= 19 q=-1.0 size=N/A time=00:00:14.75 bitrate=N/A speed=1.18x    
frame=  197 fps= 15 q=-1.0 size=N/A time=00:00:15.12 bitrate=N/A speed=1.15x    
frame=  235 fps= 19 q=-1.0 size=N/A time=00:00:14.67 bitrate=N/A speed=1.17x    
frame=  257 fps= 19 q=-1.0 size=N/A time=00:00:15.80 bitrate=N/A speed=1.16x    
frame=  192 fps= 15 q=-1.0 size=N/A time=00:00:15.05 bitrate=N/A speed=1.15x    
frame=  245 fps= 19 q=-1.0 size=N/A time=00:00:15.27 bitrate=N/A speed=1.17x    
frame=  206 fps= 15 q=-1.0 size=N/A time=00:00:15.61 bitrate=N/A speed=1.14x    
frame=  266 fps= 19 q=-1.0 size=N/A time=00:00:16.30 bitrate=N/A speed=1.15x    
frame=  245 fps= 19 q=-1.0 size=N/A time=00:00:15.23 bitrate=N/A speed=1.17x    
frame=  256 fps= 19 q=-1.0 size=N/A time=00:00:15.79 bitrate=N/A speed=1.16x    
frame=  201 fps= 15 q=-1.0 size=N/A time=00:00:15.60 bitrate=N/A speed=1.14x    
frame=  213 fps= 15 q=-1.0 size=N/A time=00:00:16.10 bitrate=N/A speed=1.13x    
frame=  255 fps= 19 q=-1.0 size=N/A time=00:00:15.75 bitrate=N/A speed=1.16x    
frame=  277 fps= 19 q=-1.0 size=N/A time=00:00:16.82 bitrate=N/A speed=1.14x    
frame=  265 fps= 19 q=-1.0 size=N/A time=00:00:16.29 bitrate=N/A speed=1.16x    
frame=  208 fps= 15 q=-1.0 size=N/A time=00:00:16.18 bitrate=N/A speed=1.14x    
frame=  221 fps= 15 q=-1.0 size=N/A time=00:00:16.66 bitrate=N/A speed=1.13x    
frame=  265 fps= 19 q=-1.0 size=N/A time=00:00:16.25 bitrate=N/A speed=1.16x    
frame=  288 fps= 19 q=-1.0 size=N/A time=00:00:17.34 bitrate=N/A speed=1.14x    
frame=  276 fps= 19 q=-1.0 size=N/A time=00:00:16.81 bitrate=N/A speed=1.15x    
frame=  217 fps= 15 q=-1.0 size=N/A time=00:00:16.66 bitrate=N/A speed=1.13x    
frame=  229 fps= 15 q=-1.0 size=N/A time=00:00:17.22 bitrate=N/A speed=1.12x    
14:55:35.230 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:35.310041204  frame=  276 fps= 19 q=-1.0 size=N/A time=00:00:16.77 bitrate=N/A speed=1.15x    
14:55:35.309 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:35.560539319  frame=  298 fps= 19 q=-1.0 size=N/A time=00:00:17.84 bitrate=N/A speed=1.13x    
frame=  286 fps= 19 q=-1.0 size=N/A time=00:00:17.31 bitrate=N/A speed=1.15x    
frame=  224 fps= 15 q=-1.0 size=N/A time=00:00:17.19 bitrate=N/A speed=1.13x    
14:55:35.560 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:37.407509443  frame=  237 fps= 15 q=-1.0 size=N/A time=00:00:17.78 bitrate=N/A speed=1.12x    
frame=  286 fps= 19 q=-1.0 size=N/A time=00:00:17.27 bitrate=N/A speed=1.14x    
frame=  308 fps= 19 q=-1.0 size=N/A time=00:00:18.36 bitrate=N/A speed=1.13x    
frame=  296 fps= 19 q=-1.0 size=N/A time=00:00:17.83 bitrate=N/A speed=1.14x    
frame=  232 fps= 15 q=-1.0 size=N/A time=00:00:17.72 bitrate=N/A speed=1.12x    
frame=  318 fps= 19 q=-1.0 size=N/A time=00:00:18.86 bitrate=N/A speed=1.13x    
frame=  246 fps= 15 q=-1.0 size=N/A time=00:00:18.27 bitrate=N/A speed=1.11x    
frame=  297 fps= 19 q=-1.0 size=N/A time=00:00:17.85 bitrate=N/A speed=1.14x    
frame=  307 fps= 19 q=-1.0 size=N/A time=00:00:18.35 bitrate=N/A speed=1.14x    
frame=  240 fps= 15 q=-1.0 size=N/A time=00:00:18.28 bitrate=N/A speed=1.12x    
frame=  253 fps= 15 q=-1.0 size=N/A time=00:00:18.80 bitrate=N/A speed=1.11x    
frame=  328 fps= 19 q=-1.0 size=N/A time=00:00:19.38 bitrate=N/A speed=1.12x    
frame=  308 fps= 19 q=-1.0 size=N/A time=00:00:18.37 bitrate=N/A speed=1.14x    
frame=  316 fps= 19 q=-1.0 size=N/A time=00:00:18.85 bitrate=N/A speed=1.13x    
frame=  248 fps= 15 q=-1.0 size=N/A time=00:00:18.84 bitrate=N/A speed=1.12x    
frame=  338 fps= 19 q=-1.0 size=N/A time=00:00:19.90 bitrate=N/A speed=1.12x    
frame=  261 fps= 15 q=-1.0 size=N/A time=00:00:19.32 bitrate=N/A speed=1.11x    
[tcp @ 0x55ad6dfe60] Connection to tcp://10.0.2.31:554?timeout=5000000 failed: Connection timed out
2024-02-06 13:55:37.407524795  rtsp://xxxx:xxxx@10.0.2.31:554/stream2: Connection timed out
2024-02-06 13:55:38.424202785  frame=  326 fps= 19 q=-1.0 size=N/A time=00:00:19.31 bitrate=N/A speed=1.13x    
frame=  319 fps= 19 q=-1.0 size=N/A time=00:00:18.87 bitrate=N/A speed=1.13x    
frame=  349 fps= 19 q=-1.0 size=N/A time=00:00:20.40 bitrate=N/A speed=1.11x    
frame=  328 fps= 19 q=-1.0 size=N/A time=00:00:19.39 bitrate=N/A speed=1.13x    
frame=  253 fps= 14 q=-1.0 size=N/A time=00:00:19.07 bitrate=N/A speed=1.08x    
frame=  263 fps= 15 q=-1.0 size=N/A time=00:00:19.40 bitrate=N/A speed=1.07x    
frame=  337 fps= 19 q=-1.0 size=N/A time=00:00:19.87 bitrate=N/A speed=1.13x    
frame=  359 fps= 19 q=-1.0 size=N/A time=00:00:20.92 bitrate=N/A speed=1.11x    
frame=  339 fps= 19 q=-1.0 size=N/A time=00:00:19.91 bitrate=N/A speed=1.13x    
14:55:38.423 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.31:554/stream2 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:40.219394490  frame=  268 fps= 15 q=-1.0 size=N/A time=00:00:20.14 bitrate=N/A speed=1.11x    
frame=  278 fps= 15 q=-1.0 size=N/A time=00:00:20.48 bitrate=N/A speed= 1.1x    
frame=  348 fps= 19 q=-1.0 size=N/A time=00:00:20.39 bitrate=N/A speed=1.12x    
frame=  370 fps= 19 q=-1.0 size=N/A time=00:00:21.43 bitrate=N/A speed=1.11x    
frame=  348 fps= 19 q=-1.0 size=N/A time=00:00:20.41 bitrate=N/A speed=1.12x    
frame=  286 fps= 15 q=-1.0 size=N/A time=00:00:21.00 bitrate=N/A speed= 1.1x    
frame=  276 fps= 15 q=-1.0 size=N/A time=00:00:20.66 bitrate=N/A speed= 1.1x    
frame=  359 fps= 19 q=-1.0 size=N/A time=00:00:20.97 bitrate=N/A speed=1.12x    
frame=  380 fps= 19 q=-1.0 size=N/A time=00:00:21.94 bitrate=N/A speed=1.11x    
frame=  359 fps= 19 q=-1.0 size=N/A time=00:00:20.93 bitrate=N/A speed=1.12x    
frame=  284 fps= 15 q=-1.0 size=N/A time=00:00:21.22 bitrate=N/A speed= 1.1x    
frame=  294 fps= 15 q=-1.0 size=N/A time=00:00:21.57 bitrate=N/A speed= 1.1x    
frame=  369 fps= 19 q=-1.0 size=N/A time=00:00:21.41 bitrate=N/A speed=1.11x    
frame=  390 fps= 19 q=-1.0 size=N/A time=00:00:22.46 bitrate=N/A speed= 1.1x    
frame=  369 fps= 19 q=-1.0 size=N/A time=00:00:21.39 bitrate=N/A speed=1.11x    
frame=  292 fps= 15 q=-1.0 size=N/A time=00:00:21.78 bitrate=N/A speed= 1.1x    
frame=  302 fps= 15 q=-1.0 size=N/A time=00:00:22.13 bitrate=N/A speed= 1.1x    
frame=  379 fps= 19 q=-1.0 size=N/A time=00:00:21.99 bitrate=N/A speed=1.11x    
Input #0, flv, from 'http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 13:55:40.219408619    Metadata:
2024-02-06 13:55:40.219410675      displayWidth    : 1024
2024-02-06 13:55:40.219412545      displayHeight   : 1024
2024-02-06 13:55:40.219478063    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 13:55:40.220492753      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 13:55:40.220506568      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:40.274360998  14:55:40.274 DBG [exec] run launch=5.043380877s
2024-02-06 13:55:40.275417521  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dc75ec5c1523f099320784f3a43b5538':
2024-02-06 13:55:40.275746776    Metadata:
2024-02-06 13:55:40.276162659      displayWidth    : 1024
2024-02-06 13:55:40.276908853      displayHeight   : 1024
2024-02-06 13:55:40.277406699      encoder         : Lavf58.45.100
2024-02-06 13:55:40.278844939      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 13:55:40.279425061      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:40.279698613  Stream mapping:
2024-02-06 13:55:40.280157978    Stream #0:0 -> #0:0 (copy)
2024-02-06 13:55:40.280702249    Stream #0:1 -> #0:1 (copy)
2024-02-06 13:55:40.281258260  Press [q] to stop, [?] for help
2024-02-06 13:55:40.521321677  frame=  379 fps= 19 q=-1.0 size=N/A time=00:00:21.95 bitrate=N/A speed=1.11x    
frame=  401 fps= 19 q=-1.0 size=N/A time=00:00:23.02 bitrate=N/A speed= 1.1x    
Input #0, flv, from 'http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 13:55:40.521337436    Metadata:
2024-02-06 13:55:40.521339473      displayWidth    : 1024
2024-02-06 13:55:40.521341325      displayHeight   : 1024
2024-02-06 13:55:40.521343325    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 13:55:40.521397268      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 13:55:40.521723227      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:40.549008817  Input #0, flv, from 'http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 13:55:40.549019502    Metadata:
2024-02-06 13:55:40.549021465      displayWidth    : 1024
2024-02-06 13:55:40.549023113      displayHeight   : 1024
2024-02-06 13:55:40.549025076    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 13:55:40.549027558      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 13:55:40.549029428      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:40.582395976  14:55:40.581 DBG [exec] run launch=5.021120167s
2024-02-06 13:55:40.586350350  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dd9cdc4b33c8be02896bee67b8b27d4d':
2024-02-06 13:55:40.586362332    Metadata:
2024-02-06 13:55:40.586416942      displayWidth    : 1024
2024-02-06 13:55:40.587626352      displayHeight   : 1024
2024-02-06 13:55:40.587638222      encoder         : Lavf58.45.100
2024-02-06 13:55:40.600339076      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 13:55:40.600351224      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:40.600352965  Stream mapping:
2024-02-06 13:55:40.600354705    Stream #0:0 -> #0:0 (copy)
2024-02-06 13:55:40.600356279    Stream #0:1 -> #0:1 (copy)
2024-02-06 13:55:40.600357798  Press [q] to stop, [?] for help
2024-02-06 13:55:40.611097380  14:55:40.610 DBG [exec] run launch=5.300739884s
2024-02-06 13:55:40.612754266  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/be8cb653df32c933d282e4c0e43fa184':
2024-02-06 13:55:40.612766562    Metadata:
2024-02-06 13:55:40.612768211      displayWidth    : 1024
2024-02-06 13:55:40.612769729      displayHeight   : 1024
2024-02-06 13:55:40.612771285      encoder         : Lavf58.45.100
2024-02-06 13:55:40.613081132      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 13:55:40.613334407      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 13:55:40.613375129  Stream mapping:
2024-02-06 13:55:40.613628496    Stream #0:0 -> #0:0 (copy)
2024-02-06 13:55:40.613635384    Stream #0:1 -> #0:1 (copy)
2024-02-06 13:55:40.613636996  Press [q] to stop, [?] for help
2024-02-06 13:55:40.852213487  frame=  389 fps= 19 q=-1.0 size=N/A time=00:00:22.51 bitrate=N/A speed=1.11x    
frame=  311 fps= 15 q=-1.0 size=N/A time=00:00:22.61 bitrate=N/A speed=1.09x    
frame=  301 fps= 15 q=-1.0 size=N/A time=00:00:22.26 bitrate=N/A speed=1.09x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.67 bitrate=N/A speed=8.84x    
14:55:40.851 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.31:554/stream1 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 13:55:41.556784589  frame=  389 fps= 19 q=-1.0 size=N/A time=00:00:22.47 bitrate=N/A speed=1.11x    
frame=  413 fps= 19 q=-1.0 size=N/A time=00:00:23.60 bitrate=N/A speed= 1.1x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.59 bitrate=N/A speed=8.75x    
frame=  400 fps= 19 q=-1.0 size=N/A time=00:00:23.01 bitrate=N/A speed=1.11x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.64 bitrate=N/A speed=8.56x    
frame=  319 fps= 15 q=-1.0 size=N/A time=00:00:23.13 bitrate=N/A speed=1.09x    
frame=  309 fps= 15 q=-1.0 size=N/A time=00:00:22.80 bitrate=N/A speed=1.09x    
frame=    2 fps=1.9 q=-1.0 size=N/A time=00:00:05.24 bitrate=N/A speed=4.96x    
frame=  400 fps= 19 q=-1.0 size=N/A time=00:00:22.97 bitrate=N/A speed=1.11x    
frame=  422 fps= 19 q=-1.0 size=N/A time=00:00:24.06 bitrate=N/A speed=1.09x    
av_interleaved_write_frame(): Broken pipe
2024-02-06 13:55:41.557483766  Error writing trailer of rtsp://127.0.0.1:8554/be8cb653df32c933d282e4c0e43fa184: Broken pipe
2024-02-06 13:55:41.557499043  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:04.99 bitrate=N/A speed= 5.3x    
2024-02-06 13:55:41.557503839  video:30kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 13:55:41.559488814  Conversion failed!
2024-02-06 13:55:41.585192461  14:55:41.583 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
NickM-27 commented 8 months ago

oh I see another problem in the config. You have acc but it should be aac

2024-02-06 13:55:20.390034328 [NULL @ 0x55a3312a70] Unable to find a suitable output format for 'acc'

WeiniGoas commented 8 months ago

Thank you i corrected it! Now i should be able to hear sound in the events. I hope you can find something in the go2rtc logs.

NickM-27 commented 8 months ago

that should fix some of the issues

WeiniGoas commented 8 months ago

This are the new go2rtc logs.

2024-02-06 14:08:07.382502267  [INFO] Preparing new go2rtc config...
2024-02-06 14:08:07.522660262  [INFO] Got IP address from supervisor: 10.0.1.7
2024-02-06 14:08:07.666138066  [INFO] Got WebRTC port from supervisor: 8555
2024-02-06 14:08:08.554882249  [INFO] Not injecting WebRTC candidates into go2rtc config as it has been set manually
2024-02-06 14:08:08.712970826  [INFO] Starting go2rtc...
2024-02-06 14:08:08.929037225  15:08:08.928 INF go2rtc version 1.8.4 linux/arm64
2024-02-06 14:08:08.931623784  15:08:08.931 INF [api] listen addr=:1984
2024-02-06 14:08:08.931847540  15:08:08.931 INF [rtsp] listen addr=:8554
2024-02-06 14:08:08.934476821  15:08:08.934 INF [webrtc] listen addr=:8555
2024-02-06 14:08:14.681340873  15:08:14.681 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.31:554/stream2 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:15.404386411  15:08:15.404 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 libopus -application:a:1 lowdelay -frame_duration 20 -min_comp 0 -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:15.474630314  15:08:15.474 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 libopus -application:a:1 lowdelay -frame_duration 20 -min_comp 0 -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:15.514922698  15:08:15.514 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:15.608171284  15:08:15.607 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:15.720567547  15:08:15.720 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:15.931853563  15:08:15.931 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 libopus -application:a:1 lowdelay -frame_duration 20 -min_comp 0 -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:16.057189491  15:08:16.056 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.32:554/stream2 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:16.112186499  15:08:16.111 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.32:554/stream1 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:16.209039371  15:08:16.208 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.31:554/stream1 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:17.084187786  [INFO] Starting go2rtc healthcheck service...
2024-02-06 14:08:17.298677335  Guessed Channel Layout for Input Stream #0.1 : mono
2024-02-06 14:08:17.298692242  Input #0, rtsp, from 'rtsp://xxxx:xxxx@10.0.2.31:554/stream2':
2024-02-06 14:08:17.298694150    Metadata:
2024-02-06 14:08:17.298696538      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:08:17.298991609      comment         : stream2
2024-02-06 14:08:17.299000294    Duration: N/A, start: 0.000000, bitrate: N/A
2024-02-06 14:08:17.299003109      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 640x360, 15 fps, 28.58 tbr, 90k tbn, 30 tbc
2024-02-06 14:08:17.299005127      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:17.351361521  15:08:17.350 DBG [exec] run launch=2.669494729s
2024-02-06 14:08:17.351373836  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/e103fb1de86de8a2da40985dff943ddb':
2024-02-06 14:08:17.351375725    Metadata:
2024-02-06 14:08:17.351378114      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:08:17.351380003      comment         : stream2
2024-02-06 14:08:17.351381688      encoder         : Lavf58.45.100
2024-02-06 14:08:17.351384558      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 640x360, q=2-31, 15 fps, 28.58 tbr, 90k tbn, 15 tbc
2024-02-06 14:08:17.352394304      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:17.352406174  Stream mapping:
2024-02-06 14:08:17.352407786    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:17.352409286    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:17.352410786  Press [q] to stop, [?] for help
2024-02-06 14:08:17.352416008  15:08:17.351 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://127.0.0.1:8554/haustuer_low?audio -c:a aac -vn -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:17.932069389  frame=    5 fps=0.0 q=-1.0 size=N/A time=00:00:02.52 bitrate=N/A speed=5.04x    
Guessed Channel Layout for Input Stream #0.0 : mono
2024-02-06 14:08:17.932410551  Input #0, rtsp, from 'rtsp://127.0.0.1:8554/haustuer_low?audio':
2024-02-06 14:08:17.932703640    Metadata:
2024-02-06 14:08:17.933126875      title           : go2rtc/1.8.4
2024-02-06 14:08:17.933625073    Duration: N/A, start: 0.000000, bitrate: 64 kb/s
2024-02-06 14:08:17.934188028      Stream #0:0: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:17.936183817  Stream mapping:
2024-02-06 14:08:17.936758717    Stream #0:0 -> #0:0 (pcm_alaw (native) -> aac (native))
2024-02-06 14:08:17.937005121  Press [q] to stop, [?] for help
2024-02-06 14:08:17.939952102  [aac @ 0x55969cf230] Too many bits 8832.000000 > 6144 per frame requested, clamping to max
2024-02-06 14:08:17.996079465  15:08:17.995 DBG [exec] run launch=644.170247ms
2024-02-06 14:08:17.998079828  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/9e8dd8be10a5aed460082f073e0c08ba':
2024-02-06 14:08:17.998094699    Metadata:
2024-02-06 14:08:17.998099087      title           : go2rtc/1.8.4
2024-02-06 14:08:17.998443194      encoder         : Lavf58.45.100
2024-02-06 14:08:17.998452657      Stream #0:0: Audio: aac (LC), 8000 Hz, mono, fltp, 48 kb/s
2024-02-06 14:08:17.998454268      Metadata:
2024-02-06 14:08:17.998456194        encoder         : Lavc58.91.100 aac
2024-02-06 14:08:18.930525833  frame=   12 fps= 12 q=-1.0 size=N/A time=00:00:15.61 bitrate=N/A speed=15.4x    
size=N/A time=00:00:00.41 bitrate=N/A speed=0.786x    
frame=   19 fps= 12 q=-1.0 size=N/A time=00:00:16.10 bitrate=N/A speed=10.6x    
Input #0, flv, from 'http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx':
2024-02-06 14:08:18.930536907    Metadata:
2024-02-06 14:08:18.930539055      displayWidth    : 2560
2024-02-06 14:08:18.930541111      displayHeight   : 2560
2024-02-06 14:08:18.930763256    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:08:18.930768200      Stream #0:0: Video: h264 (High), yuv420p(progressive), 2560x2560, 19 fps, 25 tbr, 1k tbn
2024-02-06 14:08:18.930770274      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:18.932920821  Stream mapping:
2024-02-06 14:08:18.932932043    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:18.932933728    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:18.933125540    Stream #0:1 -> #0:2 (aac (native) -> opus (libopus))
2024-02-06 14:08:18.933129559  Press [q] to stop, [?] for help
2024-02-06 14:08:18.937527816  [libopus @ 0x55768af7b0] No bit rate set. Defaulting to 64000 bps.
2024-02-06 14:08:18.992919579  Guessed Channel Layout for Input Stream #0.1 : mono
2024-02-06 14:08:18.992939134  Input #0, rtsp, from 'rtsp://xxxx:xxxx@10.0.2.31:554/stream1':
2024-02-06 14:08:18.992944097    Metadata:
2024-02-06 14:08:18.992950393      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:08:18.993051984      comment         : stream1
2024-02-06 14:08:18.993058873    Duration: N/A, start: 0.000000, bitrate: N/A
2024-02-06 14:08:18.994107045      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 1920x1080, 15 fps, 28.58 tbr, 90k tbn, 30 tbc
2024-02-06 14:08:18.994378634      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:18.995979687  15:08:18.995 DBG [exec] run launch=3.064257012s
2024-02-06 14:08:18.998609505  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/d1c70890cbaf76e04a2cedca03ebbcc7':
2024-02-06 14:08:18.998704781    Metadata:
2024-02-06 14:08:18.999344329      displayWidth    : 2560
2024-02-06 14:08:18.999867433      displayHeight   : 2560
2024-02-06 14:08:19.000141818      encoder         : Lavf58.45.100
2024-02-06 14:08:19.001350136      Stream #0:0: Video: h264 (High), yuv420p(progressive), 2560x2560, q=2-31, 19 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:08:19.002032257      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:19.003136298      Stream #0:2: Audio: opus (libopus), 16000 Hz, mono, flt, 64 kb/s
2024-02-06 14:08:19.003920232  size=N/A time=00:00:00.93 bitrate=N/A speed=0.895x    
    Metadata:
2024-02-06 14:08:19.003932547        encoder         : Lavc58.91.100 libopus
2024-02-06 14:08:19.048866297  15:08:19.048 DBG [exec] run launch=2.83948443s
2024-02-06 14:08:19.050339648  15:08:19.050 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://127.0.0.1:8554/haustuer_high?audio -c:a aac -vn -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:19.051911535  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/4b9bf7aa13da4943c7a1e08503373845':
2024-02-06 14:08:19.051934275    Metadata:
2024-02-06 14:08:19.052486768      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:08:19.052612100      comment         : stream1
2024-02-06 14:08:19.052619155      encoder         : Lavf58.45.100
2024-02-06 14:08:19.054108377      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 1920x1080, q=2-31, 15 fps, 28.58 tbr, 90k tbn, 15 tbc
2024-02-06 14:08:19.054125006      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:19.054128173  Stream mapping:
2024-02-06 14:08:19.054131673    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:19.054135043    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:19.054138358  Press [q] to stop, [?] for help
2024-02-06 14:08:19.168686908  Input #0, flv, from 'http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx':
2024-02-06 14:08:19.168698574    Metadata:
2024-02-06 14:08:19.168700407      displayWidth    : 2560
2024-02-06 14:08:19.168702019      displayHeight   : 2560
2024-02-06 14:08:19.168764407    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:08:19.169569618      Stream #0:0: Video: h264 (High), yuv420p(progressive), 2560x2560, 20 fps, 25 tbr, 1k tbn
2024-02-06 14:08:19.169581711      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:19.171585685  Stream mapping:
2024-02-06 14:08:19.171596814    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:19.171645091    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:19.171647888    Stream #0:1 -> #0:2 (aac (native) -> opus (libopus))
2024-02-06 14:08:19.171649443  Press [q] to stop, [?] for help
2024-02-06 14:08:19.174793162  [libopus @ 0x556cffd7b0] No bit rate set. Defaulting to 64000 bps.
2024-02-06 14:08:19.223799970  15:08:19.223 DBG [exec] run launch=3.819301597s
2024-02-06 14:08:19.226034070  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dc31a6ab66c91938ab5124143dd6fa97':
2024-02-06 14:08:19.226048830    Metadata:
2024-02-06 14:08:19.226050552      displayWidth    : 2560
2024-02-06 14:08:19.226052218      displayHeight   : 2560
2024-02-06 14:08:19.226053848      encoder         : Lavf58.45.100
2024-02-06 14:08:19.226056533      Stream #0:0: Video: h264 (High), yuv420p(progressive), 2560x2560, q=2-31, 20 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:08:19.226058385      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:19.226060422      Stream #0:2: Audio: opus (libopus), 16000 Hz, mono, flt, 64 kb/s
2024-02-06 14:08:19.226061681      Metadata:
2024-02-06 14:08:19.226065866        encoder         : Lavc58.91.100 libopus
2024-02-06 14:08:19.256824337  Input #0, flv, from 'http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx':
2024-02-06 14:08:19.256844670    Metadata:
2024-02-06 14:08:19.256846633      displayWidth    : 2560
2024-02-06 14:08:19.256848393      displayHeight   : 2560
2024-02-06 14:08:19.256850356    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:08:19.256929595      Stream #0:0: Video: h264 (High), yuv420p(progressive), 2560x2560, 19 fps, 25 tbr, 1k tbn
2024-02-06 14:08:19.256967854      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:19.261358982  Stream mapping:
2024-02-06 14:08:19.261371038    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:19.261372630    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:19.261374482    Stream #0:1 -> #0:2 (aac (native) -> opus (libopus))
2024-02-06 14:08:19.261376019  Press [q] to stop, [?] for help
2024-02-06 14:08:19.265794184  [libopus @ 0x558d9cb7b0] No bit rate set. Defaulting to 64000 bps.
2024-02-06 14:08:19.314837843  15:08:19.314 DBG [exec] run launch=3.840176623s
2024-02-06 14:08:19.316285658  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/e8f7a54b8a7e44340dffd0d9bf3ab20e':
2024-02-06 14:08:19.316294602    Metadata:
2024-02-06 14:08:19.316296176      displayWidth    : 2560
2024-02-06 14:08:19.316345565      displayHeight   : 2560
2024-02-06 14:08:19.316348935      encoder         : Lavf58.45.100
2024-02-06 14:08:19.317685751      Stream #0:0: Video: h264 (High), yuv420p(progressive), 2560x2560, q=2-31, 19 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:08:19.317926859      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:19.317933488      Stream #0:2: Audio: opus (libopus), 16000 Hz, mono, flt, 64 kb/s
2024-02-06 14:08:19.317934988      Metadata:
2024-02-06 14:08:19.317936840        encoder         : Lavc58.91.100 libopus
2024-02-06 14:08:19.399670001  frame=   27 fps= 13 q=-1.0 size=N/A time=00:00:16.66 bitrate=N/A speed=8.18x    
Guessed Channel Layout for Input Stream #0.0 : mono
2024-02-06 14:08:19.399682686  Input #0, rtsp, from 'rtsp://127.0.0.1:8554/haustuer_high?audio':
2024-02-06 14:08:19.399684464    Metadata:
2024-02-06 14:08:19.399686390      title           : go2rtc/1.8.4
2024-02-06 14:08:19.399688297    Duration: N/A, start: 0.000000, bitrate: 64 kb/s
2024-02-06 14:08:19.399748334      Stream #0:0: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:19.401473756  Stream mapping:
2024-02-06 14:08:19.401497329    Stream #0:0 -> #0:0 (pcm_alaw (native) -> aac (native))
2024-02-06 14:08:19.401499033  Press [q] to stop, [?] for help
2024-02-06 14:08:19.405417723  [aac @ 0x55b1448230] Too many bits 8832.000000 > 6144 per frame requested, clamping to max
2024-02-06 14:08:19.458657124  15:08:19.458 DBG [exec] run launch=408.149053ms
2024-02-06 14:08:19.460412583  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/9c88910272459bd300f5b3d82076a33b':
2024-02-06 14:08:19.460427305    Metadata:
2024-02-06 14:08:19.460431972      title           : go2rtc/1.8.4
2024-02-06 14:08:19.460436157      encoder         : Lavf58.45.100
2024-02-06 14:08:19.460440638      Stream #0:0: Audio: aac (LC), 8000 Hz, mono, fltp, 48 kb/s
2024-02-06 14:08:19.460443471      Metadata:
2024-02-06 14:08:19.460447194        encoder         : Lavc58.91.100 aac
2024-02-06 14:08:19.613465263  frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:02.74 bitrate=N/A speed=5.28x    
size=N/A time=00:00:01.44 bitrate=N/A speed=0.911x    
frame=    6 fps=0.0 q=-1.0 size=N/A time=00:00:02.68 bitrate=N/A speed=5.35x    
Guessed Channel Layout for Input Stream #0.1 : mono
2024-02-06 14:08:19.613483022  Input #0, rtsp, from 'rtsp://xxxx:xxxx@10.0.2.32:554/stream2':
2024-02-06 14:08:19.613761666    Metadata:
2024-02-06 14:08:19.613769647      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:08:19.613773221      comment         : stream2
2024-02-06 14:08:19.613776925    Duration: N/A, start: 0.000000, bitrate: N/A
2024-02-06 14:08:19.614778060      Stream #0:0: Video: h264 (Main), yuvj420p(pc, progressive), 640x360, 15 fps, 15 tbr, 90k tbn, 30 tbc
2024-02-06 14:08:19.614933836      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:19.667690966  15:08:19.667 DBG [exec] run launch=3.610313737s
2024-02-06 14:08:19.668925635  15:08:19.668 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://127.0.0.1:8554/paddock_low?audio -c:a aac -vn -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:19.669177354  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/095a8d3394d4e8b9e902af753b9dbbbb':
2024-02-06 14:08:19.669183909    Metadata:
2024-02-06 14:08:19.669314611      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:08:19.669319167      comment         : stream2
2024-02-06 14:08:19.669322371      encoder         : Lavf58.45.100
2024-02-06 14:08:19.670789018      Stream #0:0: Video: h264 (Main), yuvj420p(pc, progressive), 640x360, q=2-31, 15 fps, 15 tbr, 90k tbn, 15 tbc
2024-02-06 14:08:19.671911448      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:19.672486033  Stream mapping:
2024-02-06 14:08:19.673026323    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:19.673691518    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:19.674318917  Press [q] to stop, [?] for help
2024-02-06 14:08:19.901166694  frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:02.64 bitrate=N/A speed=5.05x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:02.74 bitrate=N/A speed=5.17x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23899, current: -78238; changing to 23900. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:19.936689973  frame=   34 fps= 13 q=-1.0 size=N/A time=00:00:17.15 bitrate=N/A speed=6.73x    
size=N/A time=00:00:00.24 bitrate=N/A speed=0.479x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23900, current: -77962; changing to 23901. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:19.941569114  Guessed Channel Layout for Input Stream #0.1 : mono
2024-02-06 14:08:19.941581558  Input #0, rtsp, from 'rtsp://xxxx:xxxx@10.0.2.32:554/stream1':
2024-02-06 14:08:19.941583317    Metadata:
2024-02-06 14:08:19.941585725      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:08:19.941652483      comment         : stream2
2024-02-06 14:08:19.941655798    Duration: N/A, start: 0.000000, bitrate: N/A
2024-02-06 14:08:19.941775518      Stream #0:0: Video: h264 (Main), yuvj420p(pc, progressive), 2304x1296, 15 fps, 14.99 tbr, 90k tbn, 30 tbc
2024-02-06 14:08:19.941840110      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:19.965580950  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23901, current: -77712; changing to 23902. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.001963830  frame=    4 fps=3.8 q=-1.0 size=N/A time=00:00:03.24 bitrate=N/A speed=3.07x    
15:08:20.001 DBG [exec] run launch=3.8890151s
2024-02-06 14:08:20.001979181  15:08:20.001 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://127.0.0.1:8554/paddock_high?audio -c:a aac -vn -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:20.001982089  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/d6b4e5611c340ccdb4cb37d12064fbaa':
2024-02-06 14:08:20.001983663    Metadata:
2024-02-06 14:08:20.001985774      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:08:20.001987255      comment         : stream2
2024-02-06 14:08:20.001988829      encoder         : Lavf58.45.100
2024-02-06 14:08:20.002043217      Stream #0:0: Video: h264 (Main), yuvj420p(pc, progressive), 2304x1296, q=2-31, 15 fps, 14.99 tbr, 90k tbn, 15 tbc
2024-02-06 14:08:20.002303362      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:20.002310381  Stream mapping:
2024-02-06 14:08:20.002311918    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:20.002313344    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:20.002314807  Press [q] to stop, [?] for help
2024-02-06 14:08:20.021091174  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23902, current: -77490; changing to 23903. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.035766502  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23903, current: -77153; changing to 23904. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.056347512  size=N/A time=00:00:01.95 bitrate=N/A speed=0.934x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23904, current: -76986; changing to 23905. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.075332321  Guessed Channel Layout for Input Stream #0.0 : mono
2024-02-06 14:08:20.075495671  Input #0, rtsp, from 'rtsp://127.0.0.1:8554/paddock_low?audio':
2024-02-06 14:08:20.075702391    Metadata:
2024-02-06 14:08:20.076136700      title           : go2rtc/1.8.4
2024-02-06 14:08:20.076709859    Duration: N/A, start: 0.000000, bitrate: 64 kb/s
2024-02-06 14:08:20.077093595      Stream #0:0: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:20.079435120  Stream mapping:
2024-02-06 14:08:20.079759357    Stream #0:0 -> #0:0 (pcm_alaw (native) -> aac (native))
2024-02-06 14:08:20.080138518  Press [q] to stop, [?] for help
2024-02-06 14:08:20.106414492  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23905, current: -76626; changing to 23906. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.130306330  frame=   13 fps= 13 q=-1.0 size=N/A time=00:00:02.98 bitrate=N/A speed=2.98x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23906, current: -76476; changing to 23907. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.153649860  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23907, current: -76209; changing to 23908. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.185029027  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23908, current: -75955; changing to 23909. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.213410547  frame=    7 fps=0.0 q=-1.0 size=N/A time=00:00:02.33 bitrate=N/A speed=4.38x    
[aac @ 0x558e6a52b0] Too many bits 8832.000000 > 6144 per frame requested, clamping to max
2024-02-06 14:08:20.217833471  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23909, current: -75694; changing to 23910. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.250252032  frame=    4 fps=3.8 q=-1.0 size=N/A time=00:00:03.14 bitrate=N/A speed=2.98x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23910, current: -75436; changing to 23911. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.278118226  15:08:20.277 DBG [exec] run launch=608.862965ms
2024-02-06 14:08:20.279687298  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/fa51d652ef1d50efbfd8c3abd7518102':
2024-02-06 14:08:20.281759919    Metadata:
2024-02-06 14:08:20.281773437      title           : go2rtc/1.8.4
2024-02-06 14:08:20.281775511      encoder         : Lavf58.45.100
2024-02-06 14:08:20.281777808      Stream #0:0: Audio: aac (LC), 8000 Hz, mono, fltp, 48 kb/s
2024-02-06 14:08:20.281779104      Metadata:
2024-02-06 14:08:20.281780826        encoder         : Lavc58.91.100 aac
2024-02-06 14:08:20.287791637  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23911, current: -75136; changing to 23912. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.320526027  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23912, current: -74871; changing to 23913. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.350622377  frame=    4 fps=3.8 q=-1.0 size=N/A time=00:00:03.24 bitrate=N/A speed=3.09x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23913, current: -74672; changing to 23914. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.380542785  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23914, current: -74393; changing to 23915. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.413964110  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23915, current: -74165; changing to 23916. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.443676391  frame=   41 fps= 13 q=-1.0 size=N/A time=00:00:17.64 bitrate=N/A speed=5.76x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23916, current: -73893; changing to 23917. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.473623872  size=N/A time=00:00:00.83 bitrate=N/A speed=0.822x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23917, current: -73653; changing to 23918. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.476662703  Guessed Channel Layout for Input Stream #0.0 : mono
2024-02-06 14:08:20.476677240  Input #0, rtsp, from 'rtsp://127.0.0.1:8554/paddock_high?audio':
2024-02-06 14:08:20.476678981    Metadata:
2024-02-06 14:08:20.476743388      title           : go2rtc/1.8.4
2024-02-06 14:08:20.476746665    Duration: N/A, start: 0.000000, bitrate: 64 kb/s
2024-02-06 14:08:20.476770628      Stream #0:0: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:20.480181195  Stream mapping:
2024-02-06 14:08:20.480199417    Stream #0:0 -> #0:0 (pcm_alaw (native) -> aac (native))
2024-02-06 14:08:20.480201065  Press [q] to stop, [?] for help
2024-02-06 14:08:20.515838306  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23918, current: -73385; changing to 23919. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.537769966  frame=   15 fps=9.6 q=-1.0 size=N/A time=00:00:03.76 bitrate=N/A speed=2.42x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23919, current: -73138; changing to 23920. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.570644928  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23920, current: -72880; changing to 23921. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.603800645  size=N/A time=00:00:02.46 bitrate=N/A speed=0.947x    
frame=   21 fps= 14 q=-1.0 size=N/A time=00:00:03.50 bitrate=N/A speed=2.31x    
frame=    7 fps=0.0 q=-1.0 size=N/A time=00:00:02.37 bitrate=N/A speed=4.42x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23921, current: -72607; changing to 23922. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.613625721  [aac @ 0x55805e62c0] Too many bits 8832.000000 > 6144 per frame requested, clamping to max
2024-02-06 14:08:20.661332935  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23922, current: -72177; changing to 23923. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.668619341  15:08:20.666 DBG [exec] run launch=664.901442ms
2024-02-06 14:08:20.668636359  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/3e76fdd7f27065c66a4248012e1560c8':
2024-02-06 14:08:20.668638174    Metadata:
2024-02-06 14:08:20.668640081      title           : go2rtc/1.8.4
2024-02-06 14:08:20.668641785      encoder         : Lavf58.45.100
2024-02-06 14:08:20.668643748      Stream #0:0: Audio: aac (LC), 8000 Hz, mono, fltp, 48 kb/s
2024-02-06 14:08:20.668644970      Metadata:
2024-02-06 14:08:20.668646600        encoder         : Lavc58.91.100 aac
2024-02-06 14:08:20.681643283  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23923, current: -71988; changing to 23924. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.707268506  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23924, current: -71784; changing to 23925. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.741796872  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23925, current: -71507; changing to 23926. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.764109268  frame=   15 fps= 14 q=-1.0 size=N/A time=00:00:02.86 bitrate=N/A speed=2.68x    
size=N/A time=00:00:00.51 bitrate=N/A speed=0.986x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23926, current: -71348; changing to 23927. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.797753572  frame=   14 fps=8.8 q=-1.0 size=N/A time=00:00:03.72 bitrate=N/A speed=2.35x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23927, current: -71065; changing to 23928. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.825744912  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23928, current: -70834; changing to 23929. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.850266242  frame=   14 fps=8.9 q=-1.0 size=N/A time=00:00:03.76 bitrate=N/A speed= 2.4x    
Input #0, flv, from 'http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 14:08:20.850277834    Metadata:
2024-02-06 14:08:20.850279778      displayWidth    : 1024
2024-02-06 14:08:20.850333500      displayHeight   : 1024
2024-02-06 14:08:20.850336463    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:08:20.851210396      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 14:08:20.851221248      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:20.858910000  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23929, current: -70573; changing to 23930. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.888644910  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23930, current: -70329; changing to 23931. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.917855994  15:08:20.917 DBG [exec] run launch=5.309797542s
2024-02-06 14:08:20.918794130  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dc75ec5c1523f099320784f3a43b5538':
2024-02-06 14:08:20.918804981    Metadata:
2024-02-06 14:08:20.918806870      displayWidth    : 1024
2024-02-06 14:08:20.918871203      displayHeight   : 1024
2024-02-06 14:08:20.918874962      encoder         : Lavf58.45.100
2024-02-06 14:08:20.919711247      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:08:20.919775043      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:20.919777524  Stream mapping:
2024-02-06 14:08:20.919779080    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:20.920453516    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:20.920464015  Press [q] to stop, [?] for help
2024-02-06 14:08:20.926185626  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23931, current: -70066; changing to 23932. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.951710980  frame=   49 fps= 14 q=-1.0 size=N/A time=00:00:18.20 bitrate=N/A speed=5.09x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23932, current: -69820; changing to 23933. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:20.998190543  size=N/A time=00:00:00.83 bitrate=N/A speed=0.549x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23933, current: -69462; changing to 23934. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.030347404  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23934, current: -69275; changing to 23935. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.059216399  frame=   25 fps= 12 q=-1.0 size=N/A time=00:00:04.26 bitrate=N/A speed=2.06x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23935, current: -68968; changing to 23936. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.086271437  size=N/A time=00:00:02.99 bitrate=N/A speed=0.961x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23936, current: -68753; changing to 23937. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.112501096  frame=   28 fps= 14 q=-1.0 size=N/A time=00:00:03.99 bitrate=N/A speed=1.98x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23937, current: -68537; changing to 23938. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.148717533  frame=   16 fps= 15 q=-1.0 size=N/A time=00:00:02.94 bitrate=N/A speed=2.74x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23938, current: -68264; changing to 23939. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.176930463  size=N/A time=00:00:00.56 bitrate=N/A speed=1.02x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23939, current: -68024; changing to 23940. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.192478595  Input #0, flv, from 'http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 14:08:21.192505206    Metadata:
2024-02-06 14:08:21.192507187      displayWidth    : 1024
2024-02-06 14:08:21.192508983      displayHeight   : 1024
2024-02-06 14:08:21.192510872    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:08:21.192589223      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 14:08:21.192702277      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:21.202700647  Input #0, flv, from 'http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 14:08:21.202712406    Metadata:
2024-02-06 14:08:21.202714388      displayWidth    : 1024
2024-02-06 14:08:21.202716295      displayHeight   : 1024
2024-02-06 14:08:21.202718517    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:08:21.202721240      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 14:08:21.202723351      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:21.215313280  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23940, current: -67737; changing to 23941. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.250905633  15:08:21.250 DBG [exec] run launch=5.735772215s
2024-02-06 14:08:21.252763645  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dd9cdc4b33c8be02896bee67b8b27d4d':
2024-02-06 14:08:21.252786145    Metadata:
2024-02-06 14:08:21.252787941      displayWidth    : 1024
2024-02-06 14:08:21.252789571      displayHeight   : 1024
2024-02-06 14:08:21.252791164      encoder         : Lavf58.45.100
2024-02-06 14:08:21.252895959      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:08:21.252952513      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:21.254010203  Stream mapping:
2024-02-06 14:08:21.254025351    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:21.254027407    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:21.254029222  Press [q] to stop, [?] for help
2024-02-06 14:08:21.256769834  15:08:21.256 DBG [exec] run launch=5.536110826s
2024-02-06 14:08:21.258077595  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/be8cb653df32c933d282e4c0e43fa184':
2024-02-06 14:08:21.258339110    Metadata:
2024-02-06 14:08:21.258749957      displayWidth    : 1024
2024-02-06 14:08:21.259050471      displayHeight   : 1024
2024-02-06 14:08:21.259328579      encoder         : Lavf58.45.100
2024-02-06 14:08:21.259890997      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:08:21.260219734      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:21.260419990  Stream mapping:
2024-02-06 14:08:21.260678358    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:21.260930317    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:21.261127129  Press [q] to stop, [?] for help
2024-02-06 14:08:21.275299279  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23941, current: -67241; changing to 23942. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.286136268  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23942, current: -67149; changing to 23943. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.314401623  frame=   23 fps= 14 q=-1.0 size=N/A time=00:00:03.40 bitrate=N/A speed=2.13x    
size=N/A time=00:00:01.07 bitrate=N/A speed=0.998x    
frame=   25 fps= 12 q=-1.0 size=N/A time=00:00:04.24 bitrate=N/A speed=   2x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23943, current: -66922; changing to 23944. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.341862359  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23944, current: -66713; changing to 23945. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.368284072  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23945, current: -66491; changing to 23946. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.418219627  frame=   25 fps= 12 q=-1.0 size=N/A time=00:00:04.28 bitrate=N/A speed=2.06x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23946, current: -66104; changing to 23947. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.444629321  frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.61 bitrate=N/A speed=8.88x    
frame=   56 fps= 14 q=-1.0 size=N/A time=00:00:18.69 bitrate=N/A speed=4.58x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23947, current: -65895; changing to 23948. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.471516935  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23948, current: -65700; changing to 23949. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.501705006  size=N/A time=00:00:00.83 bitrate=N/A speed=0.41x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23949, current: -65427; changing to 23950. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.540225469  frame=   35 fps= 14 q=-1.0 size=N/A time=00:00:04.78 bitrate=N/A speed=1.85x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23950, current: -65204; changing to 23951. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.562495976  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23951, current: -64943; changing to 23952. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.592304607  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23952, current: -64700; changing to 23953. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.642107016  size=N/A time=00:00:03.48 bitrate=N/A speed=0.963x    
frame=   23 fps= 14 q=-1.0 size=N/A time=00:00:03.40 bitrate=N/A speed=2.12x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23953, current: -64364; changing to 23954. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.660006488  frame=   35 fps= 14 q=-1.0 size=N/A time=00:00:04.48 bitrate=N/A speed=1.76x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23954, current: -64155; changing to 23955. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.690545202  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23955, current: -63919; changing to 23956. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.721152120  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23956, current: -63667; changing to 23957. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.762198179  size=N/A time=00:00:01.13 bitrate=N/A speed=1.01x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23957, current: -63362; changing to 23958. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.793364793  frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.65 bitrate=N/A speed=9.01x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.66 bitrate=N/A speed=8.93x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23958, current: -63130; changing to 23959. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.823363848  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23959, current: -62849; changing to 23960. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.840567680  av_interleaved_write_frame(): Broken pipe
2024-02-06 14:08:21.841126099  Error writing trailer of rtsp://127.0.0.1:8554/dc75ec5c1523f099320784f3a43b5538: Broken pipe
2024-02-06 14:08:21.841170747  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:05.00 bitrate=N/A speed=5.43x    
2024-02-06 14:08:21.841196376  video:29kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 14:08:21.842929039  Conversion failed!
2024-02-06 14:08:21.852886891  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23960, current: -62613; changing to 23961. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.859955151  frame=   36 fps= 14 q=-1.0 size=N/A time=00:00:04.74 bitrate=N/A speed= 1.8x    
15:08:21.859 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:21.881836108  frame=   31 fps= 15 q=-1.0 size=N/A time=00:00:03.94 bitrate=N/A speed=1.85x    
size=N/A time=00:00:01.66 bitrate=N/A speed=   1x    
frame=   35 fps= 13 q=-1.0 size=N/A time=00:00:04.78 bitrate=N/A speed=1.85x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23961, current: -62387; changing to 23962. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.917663365  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23962, current: -62124; changing to 23963. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.949674449  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23963, current: -61853; changing to 23964. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:21.984754605  frame=   63 fps= 14 q=-1.0 size=N/A time=00:00:19.18 bitrate=N/A speed=4.17x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23964, current: -61569; changing to 23965. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.008437223  size=N/A time=00:00:00.84 bitrate=N/A speed=0.33x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23965, current: -61370; changing to 23966. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.051986084  frame=   45 fps= 14 q=-1.0 size=N/A time=00:00:05.30 bitrate=N/A speed=1.71x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23966, current: -61104; changing to 23967. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.073217475  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23967, current: -60861; changing to 23968. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.113992427  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23968, current: -60531; changing to 23969. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.141284554  size=N/A time=00:00:04.00 bitrate=N/A speed=0.967x    
frame=   43 fps= 14 q=-1.0 size=N/A time=00:00:05.04 bitrate=N/A speed=1.65x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23969, current: -60307; changing to 23970. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.172952883  frame=   31 fps= 14 q=-1.0 size=N/A time=00:00:03.93 bitrate=N/A speed=1.84x    
av_interleaved_write_frame(): Broken pipe
2024-02-06 14:08:22.173236472  Error writing trailer of rtsp://127.0.0.1:8554/dd9cdc4b33c8be02896bee67b8b27d4d: Broken pipe
2024-02-06 14:08:22.173274435  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:04.99 bitrate=N/A speed=5.43x    
2024-02-06 14:08:22.173299527  video:29kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 14:08:22.175148633  Conversion failed!
2024-02-06 14:08:22.175163781  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23970, current: -60039; changing to 23971. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.190582377  15:08:22.190 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:22.208802566  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23971, current: -59763; changing to 23972. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.223694076  av_interleaved_write_frame(): Broken pipe
2024-02-06 14:08:22.224785136  Error writing trailer of rtsp://127.0.0.1:8554/be8cb653df32c933d282e4c0e43fa184: Broken pipe
2024-02-06 14:08:22.224799562  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:05.04 bitrate=N/A speed=5.24x    
2024-02-06 14:08:22.224804192  video:29kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 14:08:22.225711476  Conversion failed!
2024-02-06 14:08:22.233189342  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23972, current: -59573; changing to 23973. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.248586642  15:08:22.248 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:22.269160875  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23973, current: -59302; changing to 23974. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.298611030  size=N/A time=00:00:01.67 bitrate=N/A speed=   1x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23974, current: -59068; changing to 23975. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.335944841  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23975, current: -58767; changing to 23976. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.360406616  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23976, current: -58553; changing to 23977. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.393726276  frame=   46 fps= 15 q=-1.0 size=N/A time=00:00:05.26 bitrate=N/A speed=1.68x    
frame=   45 fps= 15 q=-1.0 size=N/A time=00:00:05.30 bitrate=N/A speed=1.71x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23977, current: -58290; changing to 23978. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.429749234  frame=   40 fps= 15 q=-1.0 size=N/A time=00:00:04.54 bitrate=N/A speed= 1.7x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23978, current: -58003; changing to 23979. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.461280751  size=N/A time=00:00:02.19 bitrate=N/A speed=0.989x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23979, current: -57764; changing to 23980. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.489147186  frame=   71 fps= 14 q=-1.0 size=N/A time=00:00:19.74 bitrate=N/A speed=3.86x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23980, current: -57523; changing to 23981. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.532097906  size=N/A time=00:00:00.84 bitrate=N/A speed=0.276x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23981, current: -57216; changing to 23982. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.563974603  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23982, current: -56986; changing to 23983. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.592818765  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23983, current: -56751; changing to 23984. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.620739384  frame=   56 fps= 15 q=-1.0 size=N/A time=00:00:05.80 bitrate=N/A speed=1.61x    
size=N/A time=00:00:04.51 bitrate=N/A speed=0.971x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23984, current: -56482; changing to 23985. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.648966351  frame=   50 fps= 14 q=-1.0 size=N/A time=00:00:05.53 bitrate=N/A speed=1.55x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23985, current: -56245; changing to 23986. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.682452046  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23986, current: -55981; changing to 23987. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.712398380  frame=   39 fps= 15 q=-1.0 size=N/A time=00:00:04.47 bitrate=N/A speed=1.68x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23987, current: -55739; changing to 23988. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.773027481  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23988, current: -55273; changing to 23989. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.790109852  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23989, current: -55115; changing to 23990. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.814225076  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23990, current: -54930; changing to 23991. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.846581952  frame=   56 fps= 15 q=-1.0 size=N/A time=00:00:05.76 bitrate=N/A speed=1.58x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23991, current: -54664; changing to 23992. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.886007292  frame=   55 fps= 15 q=-1.0 size=N/A time=00:00:05.80 bitrate=N/A speed=1.61x    
frame=   47 fps= 15 q=-1.0 size=N/A time=00:00:05.04 bitrate=N/A speed=1.59x    
size=N/A time=00:00:02.22 bitrate=N/A speed=0.986x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23992, current: -54374; changing to 23993. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.909392803  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23993, current: -54160; changing to 23994. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.944483737  size=N/A time=00:00:02.61 bitrate=N/A speed=0.957x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23994, current: -53895; changing to 23995. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:22.973324714  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23995, current: -53650; changing to 23996. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.001031651  frame=   78 fps= 14 q=-1.0 size=N/A time=00:00:20.23 bitrate=N/A speed= 3.6x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23996, current: -53430; changing to 23997. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.036540578  size=N/A time=00:00:00.84 bitrate=N/A speed=0.237x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23997, current: -53145; changing to 23998. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.064727287  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23998, current: -52919; changing to 23999. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.104110090  frame=   66 fps= 16 q=-1.0 size=N/A time=00:00:06.32 bitrate=N/A speed=1.54x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 23999, current: -52610; changing to 24000. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.128423923  size=N/A time=00:00:05.02 bitrate=N/A speed=0.973x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24000, current: -52409; changing to 24001. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.163456820  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24001, current: -52136; changing to 24002. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.192710032  frame=   57 fps= 14 q=-1.0 size=N/A time=00:00:06.02 bitrate=N/A speed=1.48x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24002, current: -51893; changing to 24003. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.229089190  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24003, current: -51603; changing to 24004. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.259799254  frame=   47 fps= 15 q=-1.0 size=N/A time=00:00:05.12 bitrate=N/A speed= 1.6x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24004, current: -51356; changing to 24005. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.294988890  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24005, current: -51076; changing to 24006. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.386569145  frame=   66 fps= 16 q=-1.0 size=N/A time=00:00:06.28 bitrate=N/A speed=1.51x    
size=N/A time=00:00:02.77 bitrate=N/A speed=0.989x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24006, current: -50371; changing to 24007. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.397758444  frame=   65 fps= 16 q=-1.0 size=N/A time=00:00:06.32 bitrate=N/A speed=1.54x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24007, current: -50252; changing to 24008. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.412487031  frame=   55 fps= 15 q=-1.0 size=N/A time=00:00:05.60 bitrate=N/A speed= 1.5x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24008, current: -50138; changing to 24009. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.422365625  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24009, current: -50062; changing to 24010. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.449748917  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24010, current: -49842; changing to 24011. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.485747339  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24011, current: -49595; changing to 24012. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.513997250  frame=   85 fps= 14 q=-1.0 size=N/A time=00:00:20.72 bitrate=N/A speed=3.38x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24012, current: -49330; changing to 24013. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.545854577  size=N/A time=00:00:00.84 bitrate=N/A speed=0.207x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24013, current: -49073; changing to 24014. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.588438024  size=N/A time=00:00:03.35 bitrate=N/A speed=1.03x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24014, current: -48802; changing to 24015. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.611818609  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24015, current: -48544; changing to 24016. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.655675836  frame=   76 fps= 16 q=-1.0 size=N/A time=00:00:06.82 bitrate=N/A speed=1.47x    
size=N/A time=00:00:05.53 bitrate=N/A speed=0.975x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24016, current: -48196; changing to 24017. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.676678452  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24017, current: -48021; changing to 24018. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.705779649  frame=   64 fps= 14 q=-1.0 size=N/A time=00:00:06.51 bitrate=N/A speed=1.41x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24018, current: -47799; changing to 24019. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.746234049  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24019, current: -47505; changing to 24020. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.768023878  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24020, current: -47292; changing to 24021. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.802913313  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24021, current: -47019; changing to 24022. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.832662001  frame=   56 fps= 15 q=-1.0 size=N/A time=00:00:05.60 bitrate=N/A speed= 1.5x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24022, current: -46780; changing to 24023. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.867268571  frame=   76 fps= 16 q=-1.0 size=N/A time=00:00:06.80 bitrate=N/A speed=1.46x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24023, current: -46513; changing to 24024. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.898589831  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24024, current: -46260; changing to 24025. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.941711956  frame=   76 fps= 16 q=-1.0 size=N/A time=00:00:06.84 bitrate=N/A speed=1.47x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24025, current: -45905; changing to 24026. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.969348153  size=N/A time=00:00:03.30 bitrate=N/A speed=0.993x    
frame=   63 fps= 15 q=-1.0 size=N/A time=00:00:06.16 bitrate=N/A speed=1.44x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24026, current: -45687; changing to 24027. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:23.997811709  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24027, current: -45458; changing to 24028. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.028876695  frame=   93 fps= 14 q=-1.0 size=N/A time=00:00:21.28 bitrate=N/A speed= 3.2x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24028, current: -45208; changing to 24029. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.064369752  size=N/A time=00:00:00.84 bitrate=N/A speed=0.185x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24029, current: -44929; changing to 24030. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.100384248  size=N/A time=00:00:03.88 bitrate=N/A speed=   1x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24030, current: -44698; changing to 24031. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.121002961  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24031, current: -44476; changing to 24032. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.167809020  frame=   87 fps= 17 q=-1.0 size=N/A time=00:00:07.40 bitrate=N/A speed=1.42x    
size=N/A time=00:00:06.04 bitrate=N/A speed=0.978x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24032, current: -44104; changing to 24033. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.187423599  frame=   72 fps= 14 q=-1.0 size=N/A time=00:00:07.07 bitrate=N/A speed=1.38x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24033, current: -43946; changing to 24034. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.219575441  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24034, current: -43698; changing to 24035. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.248948096  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24035, current: -43450; changing to 24036. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.281438526  frame=   63 fps= 15 q=-1.0 size=N/A time=00:00:06.11 bitrate=N/A speed=1.44x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24036, current: -43188; changing to 24037. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.313830532  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24037, current: -42927; changing to 24038. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.315292587  av_interleaved_write_frame(): Broken pipe
2024-02-06 14:08:24.320575129  size=N/A time=00:00:06.31 bitrate=N/A speed=0.989x    
2024-02-06 14:08:24.320592703  video:0kB audio:1kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 14:08:24.321323120  [aac @ 0x55969cf230] Qavg: 65178.461
2024-02-06 14:08:24.323228928  Conversion failed!
2024-02-06 14:08:24.338207493  15:08:24.337 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://127.0.0.1:8554/haustuer_low?audio -c:a aac -vn -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:24.350429520  av_interleaved_write_frame(): Broken pipe
2024-02-06 14:08:24.351652467  Error writing trailer of rtsp://127.0.0.1:8554/e103fb1de86de8a2da40985dff943ddb: Broken pipe
2024-02-06 14:08:24.351664874  frame=   97 fps= 14 q=-1.0 Lsize=N/A time=00:00:21.56 bitrate=N/A speed=3.08x    
2024-02-06 14:08:24.351669392  video:141kB audio:55kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 14:08:24.353526850  Conversion failed!
2024-02-06 14:08:24.353543164  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24038, current: -42628; changing to 24039. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.368174734  frame=   86 fps= 17 q=-1.0 size=N/A time=00:00:07.30 bitrate=N/A speed=1.41x    
15:08:24.367 TRC [exec] close url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.31:554/stream2 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:24.389954599  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24039, current: -42326; changing to 24040. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.418747873  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24040, current: -42092; changing to 24041. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.453207352  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24041, current: -41815; changing to 24042. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.483012520  frame=   87 fps= 17 q=-1.0 size=N/A time=00:00:07.34 bitrate=N/A speed=1.43x    
size=N/A time=00:00:03.86 bitrate=N/A speed=   1x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24042, current: -41572; changing to 24043. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.518429209  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24043, current: -41299; changing to 24044. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.541359096  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24044, current: -41108; changing to 24045. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.569599193  size=N/A time=00:00:00.85 bitrate=N/A speed=0.166x    
frame=   72 fps= 15 q=-1.0 size=N/A time=00:00:06.66 bitrate=N/A speed=1.39x    
size=N/A time=00:00:04.44 bitrate=N/A speed=1.01x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24045, current: -40883; changing to 24046. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.600310090  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24046, current: -40634; changing to 24047. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.645289025  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24047, current: -40280; changing to 24048. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.676015422  frame=   97 fps= 17 q=-1.0 size=N/A time=00:00:07.92 bitrate=N/A speed=1.39x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24048, current: -40020; changing to 24049. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.714079224  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24049, current: -39794; changing to 24050. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.733753339  frame=   79 fps= 14 q=-1.0 size=N/A time=00:00:07.56 bitrate=N/A speed=1.34x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24050, current: -39560; changing to 24051. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.773837208  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24051, current: -39243; changing to 24052. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.801206111  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24052, current: -39021; changing to 24053. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.835878735  frame=   71 fps= 15 q=-1.0 size=N/A time=00:00:06.66 bitrate=N/A speed=1.39x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24053, current: -38744; changing to 24054. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.859573687  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24054, current: -38553; changing to 24055. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.892855699  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24055, current: -38286; changing to 24056. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.937808227  frame=   97 fps= 17 q=-1.0 size=N/A time=00:00:07.82 bitrate=N/A speed=1.38x    
frame=   96 fps= 17 q=-1.0 size=N/A time=00:00:07.86 bitrate=N/A speed=1.39x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24056, current: -37929; changing to 24057. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.957016292  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24057, current: -37772; changing to 24058. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:24.985219259  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24058, current: -37551; changing to 24059. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.021995412  size=N/A time=00:00:04.45 bitrate=N/A speed=1.01x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24059, current: -37312; changing to 24060. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.049274446  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24060, current: -37040; changing to 24061. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.079436221  size=N/A time=00:00:00.85 bitrate=N/A speed=0.152x    
frame=   80 fps= 15 q=-1.0 size=N/A time=00:00:07.20 bitrate=N/A speed=1.35x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24061, current: -36796; changing to 24062. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.123771146  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24062, current: -36496; changing to 24063. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.144164677  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24063, current: -36276; changing to 24064. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.183693942  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24064, current: -35960; changing to 24065. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.226351962  frame=  108 fps= 17 q=-1.0 size=N/A time=00:00:08.42 bitrate=N/A speed=1.35x    
size=N/A time=00:00:05.00 bitrate=N/A speed=   1x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24065, current: -35620; changing to 24066. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.242296273  frame=   86 fps= 14 q=-1.0 size=N/A time=00:00:08.05 bitrate=N/A speed=1.31x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24066, current: -35507; changing to 24067. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.275134699  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24067, current: -35232; changing to 24068. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.303674532  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24068, current: -35001; changing to 24069. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.340073060  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24069, current: -34716; changing to 24070. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.368210824  frame=   79 fps= 15 q=-1.0 size=N/A time=00:00:07.22 bitrate=N/A speed=1.35x    
frame=  106 fps= 17 q=-1.0 size=N/A time=00:00:08.32 bitrate=N/A speed=1.35x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24070, current: -34485; changing to 24071. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.400947140  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24071, current: -34225; changing to 24072. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.466415475  frame=  106 fps= 17 q=-1.0 size=N/A time=00:00:08.36 bitrate=N/A speed=1.36x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24072, current: -33698; changing to 24073. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.477154243  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24073, current: -33617; changing to 24074. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.499309696  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24074, current: -33436; changing to 24075. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.535926332  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24075, current: -33151; changing to 24076. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.562652096  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24076, current: -32930; changing to 24077. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.592852796  size=N/A time=00:00:00.85 bitrate=N/A speed=0.139x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24077, current: -32690; changing to 24078. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.635805442  frame=   88 fps= 15 q=-1.0 size=N/A time=00:00:07.73 bitrate=N/A speed=1.32x    
size=N/A time=00:00:04.98 bitrate=N/A speed=0.997x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24078, current: -32408; changing to 24079. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.656467452  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24079, current: -32179; changing to 24080. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.689180583  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24080, current: -31922; changing to 24081. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.722251838  frame=   94 fps= 14 q=-1.0 size=N/A time=00:00:08.61 bitrate=N/A speed= 1.3x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24081, current: -31669; changing to 24082. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.761565532  frame=  119 fps= 18 q=-1.0 size=N/A time=00:00:08.94 bitrate=N/A speed=1.32x    
size=N/A time=00:00:05.56 bitrate=N/A speed=1.01x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24082, current: -31339; changing to 24083. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.784495901  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24083, current: -31155; changing to 24084. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.818495589  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24084, current: -30884; changing to 24085. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.848931601  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24085, current: -30638; changing to 24086. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.887430157  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24086, current: -30331; changing to 24087. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.914865060  frame=  117 fps= 17 q=-1.0 size=N/A time=00:00:08.84 bitrate=N/A speed=1.32x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24087, current: -30111; changing to 24088. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.946596851  frame=   87 fps= 15 q=-1.0 size=N/A time=00:00:07.78 bitrate=N/A speed=1.33x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24088, current: -29857; changing to 24089. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:25.986585277  frame=  117 fps= 17 q=-1.0 size=N/A time=00:00:08.88 bitrate=N/A speed=1.33x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24089, current: -29538; changing to 24090. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.008873006  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24090, current: -29364; changing to 24091. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.045055869  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24091, current: -29105; changing to 24092. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.071411935  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24092, current: -28859; changing to 24093. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.106523645  size=N/A time=00:00:00.85 bitrate=N/A speed=0.129x    
size=N/A time=00:00:05.54 bitrate=N/A speed=   1x    
frame=   95 fps= 15 q=-1.0 size=N/A time=00:00:08.29 bitrate=N/A speed=1.29x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24093, current: -28583; changing to 24094. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.135629305  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24094, current: -28347; changing to 24095. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.169225442  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24095, current: -28084; changing to 24096. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.201318433  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24096, current: -27828; changing to 24097. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.250512165  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24097, current: -27501; changing to 24098. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.272578730  frame=  101 fps= 14 q=-1.0 size=N/A time=00:00:09.10 bitrate=N/A speed=1.27x    
frame=  129 fps= 18 q=-1.0 size=N/A time=00:00:09.52 bitrate=N/A speed= 1.3x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24098, current: -27250; changing to 24099. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.301715556  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24099, current: -27017; changing to 24100. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.330555237  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24100, current: -26787; changing to 24101. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.360325850  size=N/A time=00:00:06.15 bitrate=N/A speed=   1x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24101, current: -26547; changing to 24102. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.396560750  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24102, current: -26259; changing to 24103. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.425102380  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24103, current: -26029; changing to 24104. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.458094044  frame=  128 fps= 18 q=-1.0 size=N/A time=00:00:09.36 bitrate=N/A speed= 1.3x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24104, current: -25768; changing to 24105. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.488207208  frame=   96 fps= 15 q=-1.0 size=N/A time=00:00:08.26 bitrate=N/A speed=1.29x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24105, current: -25524; changing to 24106. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.527856101  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24106, current: -25210; changing to 24107. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.559111566  frame=  128 fps= 18 q=-1.0 size=N/A time=00:00:09.40 bitrate=N/A speed=1.31x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24107, current: -25021; changing to 24108. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.588758810  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24108, current: -24723; changing to 24109. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.619028677  size=N/A time=00:00:00.85 bitrate=N/A speed=0.12x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24109, current: -24477; changing to 24110. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.661127186  frame=  103 fps= 15 q=-1.0 size=N/A time=00:00:08.82 bitrate=N/A speed=1.27x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24110, current: -24195; changing to 24111. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.688232334  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24111, current: -23935; changing to 24112. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.711601549  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24112, current: -23739; changing to 24113. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.764742618  size=N/A time=00:00:06.10 bitrate=N/A speed=0.996x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24113, current: -23403; changing to 24114. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.775854103  frame=  108 fps= 14 q=-1.0 size=N/A time=00:00:09.59 bitrate=N/A speed=1.25x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24114, current: -23221; changing to 24115. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.809755774  frame=  140 fps= 18 q=-1.0 size=N/A time=00:00:10.02 bitrate=N/A speed=1.28x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24115, current: -22955; changing to 24116. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.839180818  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24116, current: -22715; changing to 24117. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.873317819  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24117, current: -22447; changing to 24118. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.904775837  size=N/A time=00:00:06.68 bitrate=N/A speed=   1x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24118, current: -22192; changing to 24119. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.938913209  frame=  137 fps= 18 q=-1.0 size=N/A time=00:00:09.86 bitrate=N/A speed=1.28x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24119, current: -21921; changing to 24120. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:26.984566634  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24120, current: -21557; changing to 24121. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.009647142  frame=  104 fps= 15 q=-1.0 size=N/A time=00:00:08.80 bitrate=N/A speed=1.27x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24121, current: -21355; changing to 24122. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.043062449  frame=  138 fps= 18 q=-1.0 size=N/A time=00:00:09.90 bitrate=N/A speed=1.29x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24122, current: -21096; changing to 24123. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.071077863  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24123, current: -20896; changing to 24124. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.102645101  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24124, current: -20617; changing to 24125. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.127471094  size=N/A time=00:00:00.86 bitrate=N/A speed=0.112x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24125, current: -20411; changing to 24126. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.161155564  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24126, current: -20146; changing to 24127. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.191548206  frame=  111 fps= 15 q=-1.0 size=N/A time=00:00:09.38 bitrate=N/A speed=1.26x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24127, current: -19898; changing to 24128. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.225307583  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24128, current: -19631; changing to 24129. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.255453043  frame=  116 fps= 14 q=-1.0 size=N/A time=00:00:10.15 bitrate=N/A speed=1.24x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24129, current: -19386; changing to 24130. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.294969845  size=N/A time=00:00:06.66 bitrate=N/A speed=0.999x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24130, current: -19074; changing to 24131. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.323055869  frame=  151 fps= 18 q=-1.0 size=N/A time=00:00:10.54 bitrate=N/A speed=1.26x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24131, current: -18844; changing to 24132. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.357004910  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24132, current: -18577; changing to 24133. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.385442115  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24133, current: -18346; changing to 24134. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.428704201  size=N/A time=00:00:07.24 bitrate=N/A speed=1.01x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24134, current: -18003; changing to 24135. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.450847210  frame=  148 fps= 18 q=-1.0 size=N/A time=00:00:10.38 bitrate=N/A speed=1.26x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24135, current: -17827; changing to 24136. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.484354164  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24136, current: -17592; changing to 24137. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.516670615  frame=  111 fps= 15 q=-1.0 size=N/A time=00:00:09.32 bitrate=N/A speed=1.25x    
frame=  148 fps= 18 q=-1.0 size=N/A time=00:00:10.42 bitrate=N/A speed=1.27x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24137, current: -17300; changing to 24138. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.596853314  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24138, current: -16657; changing to 24139. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.611168369  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24139, current: -16545; changing to 24140. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.620634117  size=N/A time=00:00:00.86 bitrate=N/A speed=0.105x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24140, current: -16465; changing to 24141. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.642052376  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24141, current: -16302; changing to 24142. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.670977389  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24142, current: -16061; changing to 24143. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.708699844  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24143, current: -15761; changing to 24144. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.738391699  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24144, current: -15523; changing to 24145. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.789437703  frame=  120 fps= 15 q=-1.0 size=N/A time=00:00:09.87 bitrate=N/A speed=1.23x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24145, current: -15200; changing to 24146. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.812913213  frame=  123 fps= 14 q=-1.0 size=N/A time=00:00:10.64 bitrate=N/A speed=1.22x    
frame=  160 fps= 18 q=-1.0 size=N/A time=00:00:11.06 bitrate=N/A speed=1.25x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24146, current: -14937; changing to 24147. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.842793973  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24147, current: -14688; changing to 24148. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.889511329  size=N/A time=00:00:07.25 bitrate=N/A speed=0.998x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24148, current: -14402; changing to 24149. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.910435502  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24149, current: -14147; changing to 24150. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.939888064  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24150, current: -13915; changing to 24151. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.964676650  frame=  158 fps= 18 q=-1.0 size=N/A time=00:00:10.88 bitrate=N/A speed=1.24x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24151, current: -13714; changing to 24152. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:27.993113984  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24152, current: -13488; changing to 24153. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.024745203  frame=  157 fps= 18 q=-1.0 size=N/A time=00:00:10.92 bitrate=N/A speed=1.25x    
size=N/A time=00:00:07.83 bitrate=N/A speed=   1x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24153, current: -13233; changing to 24154. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.057694813  frame=  119 fps= 15 q=-1.0 size=N/A time=00:00:09.89 bitrate=N/A speed=1.24x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24154, current: -12969; changing to 24155. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.096459198  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24155, current: -12726; changing to 24156. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.128175157  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24156, current: -12407; changing to 24157. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.160991379  size=N/A time=00:00:00.86 bitrate=N/A speed=0.0995x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24157, current: -12152; changing to 24158. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.196445918  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24158, current: -11947; changing to 24159. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.220578587  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24159, current: -11667; changing to 24160. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.247721216  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24160, current: -11452; changing to 24161. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.281561739  frame=  128 fps= 15 q=-1.0 size=N/A time=00:00:10.40 bitrate=N/A speed=1.22x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24161, current: -11186; changing to 24162. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.312701372  frame=  130 fps= 14 q=-1.0 size=N/A time=00:00:11.13 bitrate=N/A speed=1.21x    
frame=  170 fps= 18 q=-1.0 size=N/A time=00:00:11.56 bitrate=N/A speed=1.24x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24162, current: -10933; changing to 24163. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.346721171  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24163, current: -10660; changing to 24164. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.375859756  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24164, current: -10425; changing to 24165. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.410354752  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24165, current: -10155; changing to 24166. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.444037963  size=N/A time=00:00:07.78 bitrate=N/A speed=0.999x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24166, current: -9882; changing to 24167. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.483200473  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24167, current: -9568; changing to 24168. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.506434949  frame=  169 fps= 18 q=-1.0 size=N/A time=00:00:11.40 bitrate=N/A speed=1.23x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24168, current: -9379; changing to 24169. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.542621572  frame=  168 fps= 18 q=-1.0 size=N/A time=00:00:11.44 bitrate=N/A speed=1.24x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24169, current: -9111; changing to 24170. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.571872026  size=N/A time=00:00:08.36 bitrate=N/A speed=   1x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24170, current: -8859; changing to 24171. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.606037508  frame=  127 fps= 15 q=-1.0 size=N/A time=00:00:10.44 bitrate=N/A speed=1.22x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24171, current: -8634; changing to 24172. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.636094896  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24172, current: -8341; changing to 24173. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.664767208  size=N/A time=00:00:00.86 bitrate=N/A speed=0.0943x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24173, current: -8112; changing to 24174. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.709862142  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24174, current: -7752; changing to 24175. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.727892241  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24175, current: -7609; changing to 24176. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.762802380  frame=  135 fps= 15 q=-1.0 size=N/A time=00:00:10.92 bitrate=N/A speed=1.21x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24176, current: -7329; changing to 24177. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.792138703  frame=  138 fps= 14 q=-1.0 size=N/A time=00:00:11.69 bitrate=N/A speed= 1.2x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24177, current: -7093; changing to 24178. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.830314189  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24178, current: -6788; changing to 24179. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.858968020  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24179, current: -6557; changing to 24180. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.895531194  frame=  181 fps= 18 q=-1.0 size=N/A time=00:00:12.08 bitrate=N/A speed=1.22x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24180, current: -6275; changing to 24181. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.927563759  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24181, current: -6016; changing to 24182. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.952669211  size=N/A time=00:00:08.33 bitrate=N/A speed=   1x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24182, current: -5809; changing to 24183. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:28.988238416  frame=  178 fps= 18 q=-1.0 size=N/A time=00:00:11.92 bitrate=N/A speed=1.22x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24183, current: -5527; changing to 24184. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.015879242  size=N/A time=00:00:08.92 bitrate=N/A speed=1.01x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24184, current: -5303; changing to 24185. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.049404807  frame=  178 fps= 18 q=-1.0 size=N/A time=00:00:11.96 bitrate=N/A speed=1.23x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24185, current: -5040; changing to 24186. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.084033043  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24186, current: -4756; changing to 24187. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.119742987  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24187, current: -4475; changing to 24188. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.147169556  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24188, current: -4252; changing to 24189. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.177786289  size=N/A time=00:00:00.86 bitrate=N/A speed=0.0895x    
frame=  136 fps= 15 q=-1.0 size=N/A time=00:00:10.93 bitrate=N/A speed=1.21x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24189, current: -4008; changing to 24190. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.207587883  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24190, current: -3769; changing to 24191. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.256465600  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24191, current: -3383; changing to 24192. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.275532594  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24192, current: -3226; changing to 24193. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.308191151  frame=  145 fps= 14 q=-1.0 size=N/A time=00:00:12.18 bitrate=N/A speed=1.19x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24193, current: -2965; changing to 24194. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.338753106  frame=  191 fps= 18 q=-1.0 size=N/A time=00:00:12.58 bitrate=N/A speed=1.21x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24194, current: -2721; changing to 24195. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.369195729  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24195, current: -2477; changing to 24196. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.402730405  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24196, current: -2211; changing to 24197. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.432211115  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24197, current: -1972; changing to 24198. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.474940912  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24198, current: -1633; changing to 24199. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.496428688  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24199, current: -1459; changing to 24200. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.529753460  frame=  189 fps= 18 q=-1.0 size=N/A time=00:00:12.42 bitrate=N/A speed= 1.2x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24200, current: -1195; changing to 24201. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.559711163  frame=  188 fps= 18 q=-1.0 size=N/A time=00:00:12.46 bitrate=N/A speed=1.21x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24201, current: -953; changing to 24202. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.596435316  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24202, current: -659; changing to 24203. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.655115499  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24203, current: -245; changing to 24204. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.667525171  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24204, current: -91; changing to 24205. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.695311532  size=N/A time=00:00:00.87 bitrate=N/A speed=0.085x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24205, current: 129; changing to 24206. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.720140895  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24206, current: 327; changing to 24207. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.753173225  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24207, current: 592; changing to 24208. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.786808918  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24208, current: 846; changing to 24209. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.818291454  frame=  138 fps= 14 q=-1.0 size=N/A time=00:00:11.15 bitrate=N/A speed=1.14x    
frame=  143 fps= 14 q=-1.0 size=N/A time=00:00:11.48 bitrate=N/A speed=1.13x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24209, current: 1106; size=N/A time=00:00:08.78 bitrate=N/A speed=0.942x    
changing to 24210. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.848564672  frame=  152 fps= 14 q=-1.0 size=N/A time=00:00:12.67 bitrate=N/A speed=1.18x    
size=N/A time=00:00:09.23 bitrate=N/A speed=0.948x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24210, current: 1355; changing to 24211. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.880705607  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24211, current: 1609; changing to 24212. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.913494774  frame=  201 fps= 18 q=-1.0 size=N/A time=00:00:13.10 bitrate=N/A speed= 1.2x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24212, current: 1879; changing to 24213. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.949931782  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24213, current: 2166; changing to 24214. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:29.978048306  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24214, current: 2393; changing to 24215. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.016164552  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24215, current: 2687; changing to 24216. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.045238730  frame=  200 fps= 18 q=-1.0 size=N/A time=00:00:12.94 bitrate=N/A speed=1.19x    
frame=  199 fps= 18 q=-1.0 size=N/A time=00:00:12.98 bitrate=N/A speed=1.21x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24216, current: 2932; changing to 24217. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.072459487  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24217, current: 3150; changing to 24218. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.113425011  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24218, current: 3476; changing to 24219. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.140992838  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24219, current: 3660; changing to 24220. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.169785335  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24220, current: 3925; changing to 24221. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.199453690  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24221, current: 4167; changing to 24222. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.243587729  size=N/A time=00:00:00.87 bitrate=N/A speed=0.0811x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24222, current: 4461; changing to 24223. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.266385507  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24223, current: 4686; changing to 24224. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.297601935  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24224, current: 4948; changing to 24225. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.327211717  frame=  160 fps= 14 q=-1.0 size=N/A time=00:00:13.23 bitrate=N/A speed=1.18x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24225, current: 5188; changing to 24226. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.367798301  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24226, current: 5511; changing to 24227. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.395620847  frame=  212 fps= 19 q=-1.0 size=N/A time=00:00:13.62 bitrate=N/A speed=1.19x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24227, current: 5734; changing to 24228. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.426739351  frame=  155 fps= 15 q=-1.0 size=N/A time=00:00:12.20 bitrate=N/A speed=1.18x    
frame=  160 fps= 15 q=-1.0 size=N/A time=00:00:12.53 bitrate=N/A speed=1.17x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24228, current: 5983; changing to 24229. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.462703310  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24229, current: 6270; changing to 24230. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.488309959  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24230, current: 6476; changing to 24231. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.521981633  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24231, current: 6743; changing to 24232. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.552788788  size=N/A time=00:00:09.88 bitrate=N/A speed=   1x    
size=N/A time=00:00:10.32 bitrate=N/A speed=1.01x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24232, current: 6990; changing to 24233. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.585356421  frame=  210 fps= 18 q=-1.0 size=N/A time=00:00:13.52 bitrate=N/A speed=1.19x    
frame=  209 fps= 19 q=-1.0 size=N/A time=00:00:13.48 bitrate=N/A speed=1.19x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24233, current: 7251; changing to 24234. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.615795526  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24234, current: 7491; changing to 24235. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.653382519  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24235, current: 7773; changing to 24236. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.680139561  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24236, current: 8011; changing to 24237. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.721126010  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24237, current: 8337; changing to 24238. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.744140841  size=N/A time=00:00:00.87 bitrate=N/A speed=0.0776x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24238, current: 8524; changing to 24239. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.781784630  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24239, current: 8822; changing to 24240. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.812888615  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24240, current: 9071; changing to 24241. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.840670439  frame=  167 fps= 14 q=-1.0 size=N/A time=00:00:13.72 bitrate=N/A speed=1.17x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24241, current: 9293; changing to 24242. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.877149207  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24242, current: 9576; changing to 24243. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.903899618  frame=  221 fps= 18 q=-1.0 size=N/A time=00:00:14.12 bitrate=N/A speed=1.18x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24243, current: 9797; changing to 24244. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.936326290  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24244, current: 10059; changing to 24245. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:30.968754832  frame=  163 fps= 15 q=-1.0 size=N/A time=00:00:12.73 bitrate=N/A speed=1.17x    
frame=  168 fps= 15 q=-1.0 size=N/A time=00:00:13.06 bitrate=N/A speed=1.17x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24245, current: 10319; changing to 24246. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.005045546  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24246, current: 10607; changing to 24247. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.032302451  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24247, current: 10824; changing to 24248. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.070870247  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24248, current: 11129; changing to 24249. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.097353181  size=N/A time=00:00:10.47 bitrate=N/A speed=   1x    
size=N/A time=00:00:10.91 bitrate=N/A speed=   1x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24249, current: 11348; changing to 24250. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.134982840  frame=  220 fps= 19 q=-1.0 size=N/A time=00:00:14.00 bitrate=N/A speed=1.19x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24250, current: 11646; changing to 24251. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.168709532  frame=  221 fps= 19 q=-1.0 size=N/A time=00:00:14.02 bitrate=N/A speed=1.18x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24251, current: 11893; changing to 24252. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.199537225  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24252, current: 12165; changing to 24253. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.235754717  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24253, current: 12430; changing to 24254. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.257527361  size=N/A time=00:00:00.87 bitrate=N/A speed=0.0744x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24254, current: 12618; changing to 24255. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.293400765  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24255, current: 12885; changing to 24256. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.320285490  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24256, current: 13131; changing to 24257. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.353037269  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24257, current: 13393; changing to 24258. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.386150635  frame=  174 fps= 14 q=-1.0 size=N/A time=00:00:14.21 bitrate=N/A speed=1.16x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24258, current: 13648; changing to 24259. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.418127257  frame=  233 fps= 19 q=-1.0 size=N/A time=00:00:14.64 bitrate=N/A speed=1.18x    
frame=  170 fps= 15 q=-1.0 size=N/A time=00:00:13.24 bitrate=N/A speed=1.16x    
frame=  175 fps= 15 q=-1.0 size=N/A time=00:00:13.58 bitrate=N/A speed=1.16x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24259, current: 13912; changing to 24260. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.458476381  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24260, current: 14233; changing to 24261. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.486799976  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24261, current: 14462; changing to 24262. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.516207576  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24262, current: 14697; changing to 24263. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.548335474  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24263, current: 14952; changing to 24264. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.581099493  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24264, current: 15219; changing to 24265. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.608406953  frame=  229 fps= 19 q=-1.0 size=N/A time=00:00:14.52 bitrate=N/A speed=1.18x    
size=N/A time=00:00:11.00 bitrate=N/A speed=   1x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24265, current: 15436; changing to 24266. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.641451006  size=N/A time=00:00:11.44 bitrate=N/A speed=   1x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24266, current: 15700; changing to 24267. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.677796497  frame=  232 fps= 19 q=-1.0 size=N/A time=00:00:14.60 bitrate=N/A speed=1.17x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24267, current: 15948; changing to 24268. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.705103327  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24268, current: 16205; changing to 24269. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.781686648  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24269, current: 16771; changing to 24270. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.786788711  size=N/A time=00:00:00.87 bitrate=N/A speed=0.0715x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24270, current: 16863; changing to 24271. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.801307078  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24271, current: 16980; changing to 24272. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.836591916  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24272, current: 17263; changing to 24273. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.864673200  frame=  182 fps= 14 q=-1.0 size=N/A time=00:00:14.77 bitrate=N/A speed=1.16x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24273, current: 17488; changing to 24274. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.903119701  frame=  242 fps= 19 q=-1.0 size=N/A time=00:00:15.08 bitrate=N/A speed=1.16x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24274, current: 17794; changing to 24275. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.932009011  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24275, current: 18026; changing to 24276. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:31.960178164  frame=  183 fps= 15 q=-1.0 size=N/A time=00:00:14.14 bitrate=N/A speed=1.15x    
frame=  178 fps= 15 q=-1.0 size=N/A time=00:00:13.80 bitrate=N/A speed=1.16x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24276, current: 18252; changing to 24277. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.000727934  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24277, current: 18561; changing to 24278. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.023874466  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24278, current: 18758; changing to 24279. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.057185997  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24279, current: 19025; changing to 24280. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.089349579  size=N/A time=00:00:11.56 bitrate=N/A speed=0.997x    
size=N/A time=00:00:12.00 bitrate=N/A speed=   1x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24280, current: 19270; changing to 24281. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.121368812  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24281, current: 19537; changing to 24282. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.152188467  frame=  240 fps= 19 q=-1.0 size=N/A time=00:00:15.02 bitrate=N/A speed=1.17x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24282, current: 19780; changing to 24283. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.191583919  frame=  241 fps= 19 q=-1.0 size=N/A time=00:00:15.04 bitrate=N/A speed=1.16x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24283, current: 20085; changing to 24284. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.222375019  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24284, current: 20348; changing to 24285. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.254118144  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24285, current: 20599; changing to 24286. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.291600638  size=N/A time=00:00:00.88 bitrate=N/A speed=0.0688x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24286, current: 20831; changing to 24287. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.311203236  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24287, current: 21059; changing to 24288. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.345000408  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24288, current: 21328; changing to 24289. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.375384903  frame=  189 fps= 14 q=-1.0 size=N/A time=00:00:15.26 bitrate=N/A speed=1.15x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24289, current: 21571; changing to 24290. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.409681624  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24290, current: 21843; changing to 24291. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.440349615  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24291, current: 22092; changing to 24292. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.474305840  frame=  253 fps= 19 q=-1.0 size=N/A time=00:00:15.72 bitrate=N/A speed=1.16x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24292, current: 22359; changing to 24293. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.507405170  frame=  186 fps= 15 q=-1.0 size=N/A time=00:00:14.36 bitrate=N/A speed=1.15x    
frame=  191 fps= 15 q=-1.0 size=N/A time=00:00:14.70 bitrate=N/A speed=1.15x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24293, current: 22629; changing to 24294. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.546831103  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24294, current: 22941; changing to 24295. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.567048044  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24295, current: 23107; changing to 24296. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.607223448  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24296, current: 23427; changing to 24297. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.634157154  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24297, current: 23642; changing to 24298. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.670547126  frame=  251 fps= 19 q=-1.0 size=N/A time=00:00:15.54 bitrate=N/A speed=1.16x    
[rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24298, current: 23921; changing to 24299. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:32.701522927  [rtsp @ 0x5565f9e0d0] Non-monotonous DTS in output stream 0:1; previous: 24299, current: 24164; changing to 24300. This may result in incorrect timestamps in the output file.
2024-02-06 14:08:34.423235500  frame=  253 fps= 19 q=-1.0 size=N/A time=00:00:15.62 bitrate=N/A speed=1.16x    
size=N/A time=00:00:12.11 bitrate=N/A speed=   1x    
size=N/A time=00:00:12.56 bitrate=N/A speed=   1x    
size=N/A time=00:00:00.88 bitrate=N/A speed=0.0663x    
frame=  196 fps= 14 q=-1.0 size=N/A time=00:00:15.75 bitrate=N/A speed=1.14x    
frame=  264 fps= 19 q=-1.0 size=N/A time=00:00:16.24 bitrate=N/A speed=1.16x    
frame=  194 fps= 15 q=-1.0 size=N/A time=00:00:14.93 bitrate=N/A speed=1.15x    
frame=  199 fps= 15 q=-1.0 size=N/A time=00:00:15.25 bitrate=N/A speed=1.14x    
frame=  264 fps= 19 q=-1.0 size=N/A time=00:00:16.14 bitrate=N/A speed=1.15x    
frame=  261 fps= 19 q=-1.0 size=N/A time=00:00:16.12 bitrate=N/A speed=1.15x    
size=N/A time=00:00:13.11 bitrate=N/A speed=   1x    
size=N/A time=00:00:01.02 bitrate=N/A speed=0.0739x    
size=N/A time=00:00:12.68 bitrate=N/A speed=   1x    
frame=  203 fps= 14 q=-1.0 size=N/A time=00:00:16.24 bitrate=N/A speed=1.14x    
frame=  275 fps= 19 q=-1.0 size=N/A time=00:00:16.74 bitrate=N/A speed=1.15x    
frame=  202 fps= 15 q=-1.0 size=N/A time=00:00:15.38 bitrate=N/A speed=1.14x    
frame=  208 fps= 15 q=-1.0 size=N/A time=00:00:15.74 bitrate=N/A speed=1.14x    
frame=  274 fps= 19 q=-1.0 size=N/A time=00:00:16.64 bitrate=N/A speed=1.14x    
frame=  273 fps= 19 q=-1.0 size=N/A time=00:00:16.68 bitrate=N/A speed=1.15x    
size=N/A time=00:00:13.27 bitrate=N/A speed=   1x    
size=N/A time=00:00:13.70 bitrate=N/A speed=   1x    
size=N/A time=00:00:01.55 bitrate=N/A speed=0.108x    
frame=  210 fps= 14 q=-1.0 size=N/A time=00:00:16.73 bitrate=N/A speed=1.13x    
frame=  285 fps= 19 q=-1.0 size=N/A time=00:00:17.32 bitrate=N/A speed=1.15x    
frame=  210 fps= 15 q=-1.0 size=N/A time=00:00:15.91 bitrate=N/A speed=1.13x    
frame=  216 fps= 15 q=-1.0 size=N/A time=00:00:16.27 bitrate=N/A speed=1.13x    
frame=  283 fps= 19 q=-1.0 size=N/A time=00:00:17.20 bitrate=N/A speed=1.15x    
frame=  284 fps= 19 q=-1.0 size=N/A time=00:00:17.22 bitrate=N/A speed=1.14x    
size=N/A time=00:00:02.10 bitrate=N/A speed=0.141x    
size=N/A time=00:00:13.80 bitrate=N/A speed=   1x    
size=N/A time=00:00:14.23 bitrate=N/A speed=   1x    
15:08:34.422 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:34.647981748  frame=  218 fps= 14 q=-1.0 size=N/A time=00:00:17.29 bitrate=N/A speed=1.13x    
frame=  296 fps= 19 q=-1.0 size=N/A time=00:00:17.78 bitrate=N/A speed=1.14x    
frame=  218 fps= 15 q=-1.0 size=N/A time=00:00:16.40 bitrate=N/A speed=1.13x    
frame=  223 fps= 15 q=-1.0 size=N/A time=00:00:16.79 bitrate=N/A speed=1.13x    
15:08:34.647 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:34.654515497  15:08:34.654 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:34.876739834  frame=  294 fps= 19 q=-1.0 size=N/A time=00:00:17.68 bitrate=N/A speed=1.14x    
frame=  295 fps= 19 q=-1.0 size=N/A time=00:00:17.72 bitrate=N/A speed=1.14x    
size=N/A time=00:00:02.56 bitrate=N/A speed=0.166x    
15:08:34.873 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.31:554/stream2 -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:37.681681194  frame=  225 fps= 14 q=-1.0 size=N/A time=00:00:17.78 bitrate=N/A speed=1.12x    
size=N/A time=00:00:14.36 bitrate=N/A speed=0.998x    
size=N/A time=00:00:14.79 bitrate=N/A speed=   1x    
frame=  225 fps= 15 q=-1.0 size=N/A time=00:00:16.92 bitrate=N/A speed=1.12x    
frame=  306 fps= 19 q=-1.0 size=N/A time=00:00:18.34 bitrate=N/A speed=1.14x    
frame=  231 fps= 15 q=-1.0 size=N/A time=00:00:17.38 bitrate=N/A speed=1.12x    
frame=  303 fps= 19 q=-1.0 size=N/A time=00:00:18.18 bitrate=N/A speed=1.13x    
size=N/A time=00:00:03.07 bitrate=N/A speed=0.193x    
frame=  305 fps= 19 q=-1.0 size=N/A time=00:00:18.28 bitrate=N/A speed=1.14x    
frame=  233 fps= 14 q=-1.0 size=N/A time=00:00:18.34 bitrate=N/A speed=1.12x    
size=N/A time=00:00:14.95 bitrate=N/A speed=   1x    
size=N/A time=00:00:15.38 bitrate=N/A speed=   1x    
frame=  316 fps= 19 q=-1.0 size=N/A time=00:00:18.86 bitrate=N/A speed=1.13x    
frame=  233 fps= 15 q=-1.0 size=N/A time=00:00:17.45 bitrate=N/A speed=1.12x    
frame=  239 fps= 15 q=-1.0 size=N/A time=00:00:17.91 bitrate=N/A speed=1.12x    
frame=  315 fps= 19 q=-1.0 size=N/A time=00:00:18.76 bitrate=N/A speed=1.13x    
size=N/A time=00:00:03.59 bitrate=N/A speed=0.219x    
frame=  316 fps= 19 q=-1.0 size=N/A time=00:00:18.80 bitrate=N/A speed=1.13x    
frame=  241 fps= 14 q=-1.0 size=N/A time=00:00:18.90 bitrate=N/A speed=1.12x    
size=N/A time=00:00:15.91 bitrate=N/A speed=   1x    
frame=  327 fps= 19 q=-1.0 size=N/A time=00:00:19.38 bitrate=N/A speed=1.13x    
frame=  241 fps= 15 q=-1.0 size=N/A time=00:00:18.01 bitrate=N/A speed=1.12x    
size=N/A time=00:00:15.48 bitrate=N/A speed=   1x    
frame=  248 fps= 15 q=-1.0 size=N/A time=00:00:18.41 bitrate=N/A speed=1.11x    
frame=  325 fps= 19 q=-1.0 size=N/A time=00:00:19.28 bitrate=N/A speed=1.13x    
frame=  325 fps= 19 q=-1.0 size=N/A time=00:00:19.32 bitrate=N/A speed=1.13x    
size=N/A time=00:00:04.15 bitrate=N/A speed=0.245x    
frame=  248 fps= 14 q=-1.0 size=N/A time=00:00:19.39 bitrate=N/A speed=1.11x    
size=N/A time=00:00:16.05 bitrate=N/A speed=0.999x    
size=N/A time=00:00:16.48 bitrate=N/A speed=   1x    
frame=  337 fps= 19 q=-1.0 size=N/A time=00:00:19.88 bitrate=N/A speed=1.12x    
frame=  249 fps= 15 q=-1.0 size=N/A time=00:00:18.57 bitrate=N/A speed=1.11x    
frame=  256 fps= 15 q=-1.0 size=N/A time=00:00:18.93 bitrate=N/A speed=1.11x    
frame=  336 fps= 19 q=-1.0 size=N/A time=00:00:19.78 bitrate=N/A speed=1.12x    
size=N/A time=00:00:04.60 bitrate=N/A speed=0.264x    
frame=  336 fps= 19 q=-1.0 size=N/A time=00:00:19.82 bitrate=N/A speed=1.12x    
frame=  256 fps= 14 q=-1.0 size=N/A time=00:00:19.95 bitrate=N/A speed=1.11x    
frame=  348 fps= 19 q=-1.0 size=N/A time=00:00:20.40 bitrate=N/A speed=1.12x    
size=N/A time=00:00:16.60 bitrate=N/A speed=   1x    
size=N/A time=00:00:17.03 bitrate=N/A speed=   1x    
frame=  257 fps= 15 q=-1.0 size=N/A time=00:00:19.13 bitrate=N/A speed=1.11x    
frame=  263 fps= 15 q=-1.0 size=N/A time=00:00:19.45 bitrate=N/A speed=1.11x    
frame=  346 fps= 19 q=-1.0 size=N/A time=00:00:20.30 bitrate=N/A speed=1.12x    
size=N/A time=00:00:05.12 bitrate=N/A speed=0.285x    
frame=  346 fps= 19 q=-1.0 size=N/A time=00:00:20.34 bitrate=N/A speed=1.12x    
frame=  262 fps= 14 q=-1.0 size=N/A time=00:00:20.37 bitrate=N/A speed= 1.1x    
frame=  358 fps= 19 q=-1.0 size=N/A time=00:00:20.90 bitrate=N/A speed=1.12x    
Guessed Channel Layout for Input Stream #0.1 : mono
2024-02-06 14:08:37.681700083  Input #0, rtsp, from 'rtsp://xxxx:xxxx@10.0.2.31:554/stream2':
2024-02-06 14:08:37.681702509    Metadata:
2024-02-06 14:08:37.681793822      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:08:37.681797193      comment         : stream2
2024-02-06 14:08:37.681799526    Duration: N/A, start: 0.000000, bitrate: N/A
2024-02-06 14:08:37.682425499      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 640x360, 15 fps, 28.58 tbr, 90k tbn, 30 tbc
2024-02-06 14:08:37.682436703      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:37.730418117  15:08:37.730 DBG [exec] run launch=2.856263454s
2024-02-06 14:08:37.730934888  15:08:37.730 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://127.0.0.1:8554/haustuer_low?audio -c:a aac -vn -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:37.731555880  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/e103fb1de86de8a2da40985dff943ddb':
2024-02-06 14:08:37.731696804    Metadata:
2024-02-06 14:08:37.732144354      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:08:37.732406684      comment         : stream2
2024-02-06 14:08:37.732860122      encoder         : Lavf58.45.100
2024-02-06 14:08:37.733584465      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 640x360, q=2-31, 15 fps, 28.58 tbr, 90k tbn, 15 tbc
2024-02-06 14:08:37.734549360      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:37.734673080  Stream mapping:
2024-02-06 14:08:37.735038742    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:37.735780659    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:37.735862176  Press [q] to stop, [?] for help
2024-02-06 14:08:38.241195337  frame=  266 fps= 15 q=-1.0 size=N/A time=00:00:19.60 bitrate=N/A speed= 1.1x    
size=N/A time=00:00:17.16 bitrate=N/A speed=0.998x    
size=N/A time=00:00:17.59 bitrate=N/A speed=   1x    
frame=  271 fps= 15 q=-1.0 size=N/A time=00:00:20.03 bitrate=N/A speed= 1.1x    
frame=  357 fps= 19 q=-1.0 size=N/A time=00:00:20.80 bitrate=N/A speed=1.11x    
frame=  356 fps= 19 q=-1.0 size=N/A time=00:00:20.84 bitrate=N/A speed=1.12x    
size=N/A time=00:00:05.63 bitrate=N/A speed=0.305x    
frame=  270 fps= 14 q=-1.0 size=N/A time=00:00:20.93 bitrate=N/A speed= 1.1x    
frame=  368 fps= 19 q=-1.0 size=N/A time=00:00:21.42 bitrate=N/A speed=1.11x    
frame=    6 fps=0.0 q=-1.0 size=N/A time=00:00:02.59 bitrate=N/A speed=5.18x    
Guessed Channel Layout for Input Stream #0.0 : mono
2024-02-06 14:08:38.241209670  Input #0, rtsp, from 'rtsp://127.0.0.1:8554/haustuer_low?audio':
2024-02-06 14:08:38.241211782    Metadata:
2024-02-06 14:08:38.241213985      title           : go2rtc/1.8.4
2024-02-06 14:08:38.241216282    Duration: N/A, start: 0.000000, bitrate: 64 kb/s
2024-02-06 14:08:38.241218615      Stream #0:0: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:08:38.245530077  Stream mapping:
2024-02-06 14:08:38.245554633    Stream #0:0 -> #0:0 (pcm_alaw (native) -> aac (native))
2024-02-06 14:08:38.245557966  Press [q] to stop, [?] for help
2024-02-06 14:08:38.254215279  [aac @ 0x5592e50230] Too many bits 8832.000000 > 6144 per frame requested, clamping to max
2024-02-06 14:08:38.304652791  15:08:38.304 DBG [exec] run launch=573.460351ms
2024-02-06 14:08:38.305713926  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/9e8dd8be10a5aed460082f073e0c08ba':
2024-02-06 14:08:38.305729574    Metadata:
2024-02-06 14:08:38.305731907      title           : go2rtc/1.8.4
2024-02-06 14:08:38.305788239      encoder         : Lavf58.45.100
2024-02-06 14:08:38.306436453      Stream #0:0: Audio: aac (LC), 8000 Hz, mono, fltp, 48 kb/s
2024-02-06 14:08:38.306446527      Metadata:
2024-02-06 14:08:38.306448898        encoder         : Lavc58.91.100 aac
2024-02-06 14:08:39.861493375  frame=  274 fps= 15 q=-1.0 size=N/A time=00:00:20.13 bitrate=N/A speed= 1.1x    
size=N/A time=00:00:18.19 bitrate=N/A speed=   1x    
size=N/A time=00:00:17.75 bitrate=N/A speed=   1x    
frame=  279 fps= 15 q=-1.0 size=N/A time=00:00:20.58 bitrate=N/A speed= 1.1x    
frame=  368 fps= 19 q=-1.0 size=N/A time=00:00:21.32 bitrate=N/A speed=1.11x    
size=N/A time=00:00:06.14 bitrate=N/A speed=0.324x    
frame=  367 fps= 19 q=-1.0 size=N/A time=00:00:21.36 bitrate=N/A speed=1.12x    
frame=  278 fps= 14 q=-1.0 size=N/A time=00:00:21.49 bitrate=N/A speed= 1.1x    
frame=  379 fps= 19 q=-1.0 size=N/A time=00:00:21.94 bitrate=N/A speed=1.11x    
frame=   13 fps= 13 q=-1.0 size=N/A time=00:00:15.66 bitrate=N/A speed=15.5x    
size=N/A time=00:00:00.39 bitrate=N/A speed=0.789x    
frame=  281 fps= 15 q=-1.0 size=N/A time=00:00:20.66 bitrate=N/A speed= 1.1x    
size=N/A time=00:00:18.72 bitrate=N/A speed=   1x    
frame=  376 fps= 19 q=-1.0 size=N/A time=00:00:21.88 bitrate=N/A speed=1.11x    
size=N/A time=00:00:06.65 bitrate=N/A speed=0.341x    
frame=  288 fps= 15 q=-1.0 size=N/A time=00:00:21.07 bitrate=N/A speed= 1.1x    
frame=  378 fps= 19 q=-1.0 size=N/A time=00:00:21.90 bitrate=N/A speed=1.11x    
size=N/A time=00:00:18.28 bitrate=N/A speed=   1x    
frame=  285 fps= 14 q=-1.0 size=N/A time=00:00:21.98 bitrate=N/A speed= 1.1x    
frame=  389 fps= 19 q=-1.0 size=N/A time=00:00:22.44 bitrate=N/A speed=1.11x    
frame=   21 fps= 14 q=-1.0 size=N/A time=00:00:16.22 bitrate=N/A speed=10.6x    
size=N/A time=00:00:00.91 bitrate=N/A speed=0.903x    
frame=  289 fps= 15 q=-1.0 size=N/A time=00:00:21.22 bitrate=N/A speed= 1.1x    
frame=  295 fps= 15 q=-1.0 size=N/A time=00:00:21.59 bitrate=N/A speed=1.09x    
size=N/A time=00:00:07.17 bitrate=N/A speed=0.358x    
frame=  387 fps= 19 q=-1.0 size=N/A time=00:00:22.38 bitrate=N/A speed=1.11x    
size=N/A time=00:00:19.28 bitrate=N/A speed=   1x    
size=N/A time=00:00:18.84 bitrate=N/A speed=0.999x    
frame=  389 fps= 19 q=-1.0 size=N/A time=00:00:22.40 bitrate=N/A speed= 1.1x    
frame=  292 fps= 14 q=-1.0 size=N/A time=00:00:22.47 bitrate=N/A speed=1.09x    
frame=  399 fps= 19 q=-1.0 size=N/A time=00:00:22.96 bitrate=N/A speed=1.11x    
frame=   28 fps= 14 q=-1.0 size=N/A time=00:00:16.71 bitrate=N/A speed=8.16x    
size=N/A time=00:00:01.42 bitrate=N/A speed=0.925x    
Input #0, flv, from 'http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 14:08:39.861515745    Metadata:
2024-02-06 14:08:39.861518522      displayWidth    : 1024
2024-02-06 14:08:39.861520800      displayHeight   : 1024
2024-02-06 14:08:39.861627539    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:08:39.864248876      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 14:08:39.864263690      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:39.916147572  15:08:39.915 DBG [exec] run launch=5.492889314s
2024-02-06 14:08:39.918201286  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dc75ec5c1523f099320784f3a43b5538':
2024-02-06 14:08:39.918214342    Metadata:
2024-02-06 14:08:39.918603170      displayWidth    : 1024
2024-02-06 14:08:39.918611152      displayHeight   : 1024
2024-02-06 14:08:39.918614670      encoder         : Lavf58.45.100
2024-02-06 14:08:39.919485473      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:08:39.919499196      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:39.919502677  Stream mapping:
2024-02-06 14:08:39.919506029    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:39.919509214    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:39.919512121  Press [q] to stop, [?] for help
2024-02-06 14:08:40.155349689  frame=  297 fps= 15 q=-1.0 size=N/A time=00:00:21.78 bitrate=N/A speed= 1.1x    
frame=  303 fps= 15 q=-1.0 size=N/A time=00:00:22.12 bitrate=N/A speed=1.09x    
frame=  397 fps= 19 q=-1.0 size=N/A time=00:00:22.90 bitrate=N/A speed=1.11x    
frame=  399 fps= 19 q=-1.0 size=N/A time=00:00:22.92 bitrate=N/A speed= 1.1x    
size=N/A time=00:00:07.81 bitrate=N/A speed=0.38x    
size=N/A time=00:00:19.43 bitrate=N/A speed=   1x    
size=N/A time=00:00:19.87 bitrate=N/A speed=   1x    
frame=  300 fps= 14 q=-1.0 size=N/A time=00:00:23.03 bitrate=N/A speed=1.09x    
Input #0, flv, from 'http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 14:08:40.156220326    Metadata:
2024-02-06 14:08:40.156768689      displayWidth    : 1024
2024-02-06 14:08:40.157240257      displayHeight   : 1024
2024-02-06 14:08:40.157750510    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:08:40.158634369      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 14:08:40.159045660      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:40.165049063  Input #0, flv, from 'http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 14:08:40.165060248    Metadata:
2024-02-06 14:08:40.165062044      displayWidth    : 1024
2024-02-06 14:08:40.165246116      displayHeight   : 1024
2024-02-06 14:08:40.165446373    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:08:40.166007736      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 14:08:40.166572266      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:40.206526025  15:08:40.206 DBG [exec] run launch=5.551901918s
2024-02-06 14:08:40.206996148  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dd9cdc4b33c8be02896bee67b8b27d4d':
2024-02-06 14:08:40.207183460    Metadata:
2024-02-06 14:08:40.207402513      displayWidth    : 1024
2024-02-06 14:08:40.207623973      displayHeight   : 1024
2024-02-06 14:08:40.207844359      encoder         : Lavf58.45.100
2024-02-06 14:08:40.208382519      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:08:40.208755329      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:40.208948586  Stream mapping:
2024-02-06 14:08:40.209163435    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:40.209385913    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:40.209528671  Press [q] to stop, [?] for help
2024-02-06 14:08:40.218915290  15:08:40.218 DBG [exec] run launch=5.570769766s
2024-02-06 14:08:40.219333636  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/be8cb653df32c933d282e4c0e43fa184':
2024-02-06 14:08:40.219344858    Metadata:
2024-02-06 14:08:40.219346673      displayWidth    : 1024
2024-02-06 14:08:40.221353906      displayHeight   : 1024
2024-02-06 14:08:40.221367110      encoder         : Lavf58.45.100
2024-02-06 14:08:40.221370276      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:08:40.221372387      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:40.221373813  Stream mapping:
2024-02-06 14:08:40.221375443    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:40.221377091    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:40.221378721  Press [q] to stop, [?] for help
2024-02-06 14:08:40.904605369  frame=  410 fps= 19 q=-1.0 size=N/A time=00:00:23.46 bitrate=N/A speed= 1.1x    
frame=   36 fps= 14 q=-1.0 size=N/A time=00:00:17.27 bitrate=N/A speed= 6.7x    
size=N/A time=00:00:02.06 bitrate=N/A speed=0.996x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.64 bitrate=N/A speed=8.88x    
frame=  306 fps= 15 q=-1.0 size=N/A time=00:00:22.26 bitrate=N/A speed=1.09x    
frame=  311 fps= 15 q=-1.0 size=N/A time=00:00:22.69 bitrate=N/A speed=1.09x    
frame=  409 fps= 19 q=-1.0 size=N/A time=00:00:23.44 bitrate=N/A speed= 1.1x    
size=N/A time=00:00:08.35 bitrate=N/A speed=0.396x    
frame=  408 fps= 19 q=-1.0 size=N/A time=00:00:23.40 bitrate=N/A speed= 1.1x    
size=N/A time=00:00:19.96 bitrate=N/A speed=0.998x    
frame=  307 fps= 14 q=-1.0 size=N/A time=00:00:23.52 bitrate=N/A speed=1.09x    
size=N/A time=00:00:20.40 bitrate=N/A speed=   1x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.59 bitrate=N/A speed=8.65x    
frame=  420 fps= 19 q=-1.0 size=N/A time=00:00:24.04 bitrate=N/A speed= 1.1x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.65 bitrate=N/A speed=8.61x    
frame=   43 fps= 14 q=-1.0 size=N/A time=00:00:17.76 bitrate=N/A speed=5.77x    
size=N/A time=00:00:02.57 bitrate=N/A speed=0.999x    
av_interleaved_write_frame(): Broken pipe
2024-02-06 14:08:40.905045715  Error writing trailer of rtsp://127.0.0.1:8554/dc75ec5c1523f099320784f3a43b5538: Broken pipe
2024-02-06 14:08:40.905072825  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:04.99 bitrate=N/A speed=5.07x    
2024-02-06 14:08:40.905077196  video:29kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 14:08:40.906367716  Conversion failed!
2024-02-06 14:08:40.924766588  15:08:40.924 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:41.146325730  frame=  312 fps= 15 q=-1.0 size=N/A time=00:00:22.79 bitrate=N/A speed=1.09x    
size=N/A time=00:00:20.52 bitrate=N/A speed=   1x    
size=N/A time=00:00:20.95 bitrate=N/A speed=   1x    
size=N/A time=00:00:08.83 bitrate=N/A speed=0.409x    
frame=  420 fps= 19 q=-1.0 size=N/A time=00:00:23.94 bitrate=N/A speed= 1.1x    
frame=  419 fps= 19 q=-1.0 size=N/A time=00:00:23.92 bitrate=N/A speed= 1.1x    
frame=  320 fps= 15 q=-1.0 size=N/A time=00:00:23.21 bitrate=N/A speed=1.09x    
av_interleaved_write_frame(): Broken pipe
2024-02-06 14:08:41.146340656  Error writing trailer of rtsp://127.0.0.1:8554/dd9cdc4b33c8be02896bee67b8b27d4d: Broken pipe
2024-02-06 14:08:41.146343860  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:04.99 bitrate=N/A speed=5.34x    
2024-02-06 14:08:41.146346952  video:30kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 14:08:41.146932519  Conversion failed!
2024-02-06 14:08:41.162432688  frame=  314 fps= 14 q=-1.0 size=N/A time=00:00:24.01 bitrate=N/A speed=1.09x    
15:08:41.162 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:41.178723421  av_interleaved_write_frame(): Broken pipe
2024-02-06 14:08:41.180055403  Error writing trailer of rtsp://127.0.0.1:8554/be8cb653df32c933d282e4c0e43fa184: Broken pipe
2024-02-06 14:08:41.180655210  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:04.99 bitrate=N/A speed=5.21x    
2024-02-06 14:08:41.180670358  video:30kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 14:08:41.185784440  Conversion failed!
2024-02-06 14:08:41.204073981  15:08:41.203 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:44.367313578  frame=  431 fps= 19 q=-1.0 size=N/A time=00:00:24.56 bitrate=N/A speed= 1.1x    
frame=   50 fps= 14 q=-1.0 size=N/A time=00:00:18.25 bitrate=N/A speed= 5.1x    
size=N/A time=00:00:03.08 bitrate=N/A speed=0.998x    
frame=  321 fps= 15 q=-1.0 size=N/A time=00:00:23.32 bitrate=N/A speed=1.09x    
size=N/A time=00:00:09.34 bitrate=N/A speed=0.423x    
frame=  430 fps= 19 q=-1.0 size=N/A time=00:00:24.46 bitrate=N/A speed= 1.1x    
frame=  429 fps= 19 q=-1.0 size=N/A time=00:00:24.50 bitrate=N/A speed= 1.1x    
frame=  328 fps= 15 q=-1.0 size=N/A time=00:00:23.74 bitrate=N/A speed=1.09x    
frame=  321 fps= 14 q=-1.0 size=N/A time=00:00:24.50 bitrate=N/A speed=1.09x    
size=N/A time=00:00:21.52 bitrate=N/A speed=   1x    
size=N/A time=00:00:21.08 bitrate=N/A speed=   1x    
frame=  441 fps= 19 q=-1.0 size=N/A time=00:00:25.06 bitrate=N/A speed= 1.1x    
frame=   57 fps= 14 q=-1.0 size=N/A time=00:00:18.74 bitrate=N/A speed=4.52x    
size=N/A time=00:00:03.59 bitrate=N/A speed=0.989x    
frame=  440 fps= 19 q=-1.0 size=N/A time=00:00:24.96 bitrate=N/A speed=1.09x    
frame=  329 fps= 15 q=-1.0 size=N/A time=00:00:23.88 bitrate=N/A speed=1.09x    
size=N/A time=00:00:09.85 bitrate=N/A speed=0.436x    
frame=  440 fps= 19 q=-1.0 size=N/A time=00:00:25.00 bitrate=N/A speed=1.09x    
frame=  336 fps= 15 q=-1.0 size=N/A time=00:00:24.27 bitrate=N/A speed=1.08x    
frame=  329 fps= 14 q=-1.0 size=N/A time=00:00:25.06 bitrate=N/A speed=1.09x    
size=N/A time=00:00:21.64 bitrate=N/A speed=0.999x    
size=N/A time=00:00:22.08 bitrate=N/A speed=   1x    
frame=  452 fps= 19 q=-1.0 size=N/A time=00:00:25.64 bitrate=N/A speed=1.09x    
frame=   65 fps= 14 q=-1.0 size=N/A time=00:00:19.30 bitrate=N/A speed=4.14x    
size=N/A time=00:00:04.13 bitrate=N/A speed=0.995x    
frame=  450 fps= 19 q=-1.0 size=N/A time=00:00:25.48 bitrate=N/A speed=1.09x    
size=N/A time=00:00:10.36 bitrate=N/A speed=0.448x    
frame=  338 fps= 15 q=-1.0 size=N/A time=00:00:24.40 bitrate=N/A speed=1.08x    
frame=  343 fps= 15 q=-1.0 size=N/A time=00:00:24.80 bitrate=N/A speed=1.08x    
frame=  451 fps= 19 q=-1.0 size=N/A time=00:00:25.52 bitrate=N/A speed=1.09x    
frame=  336 fps= 14 q=-1.0 size=N/A time=00:00:25.55 bitrate=N/A speed=1.08x    
size=N/A time=00:00:22.67 bitrate=N/A speed=   1x    
size=N/A time=00:00:22.23 bitrate=N/A speed=0.998x    
frame=  462 fps= 19 q=-1.0 size=N/A time=00:00:26.10 bitrate=N/A speed=1.09x    
frame=   73 fps= 14 q=-1.0 size=N/A time=00:00:19.86 bitrate=N/A speed=3.84x    
size=N/A time=00:00:04.62 bitrate=N/A speed=0.991x    
size=N/A time=00:00:10.88 bitrate=N/A speed=0.46x    
frame=  461 fps= 19 q=-1.0 size=N/A time=00:00:26.00 bitrate=N/A speed=1.09x    
frame=  343 fps= 14 q=-1.0 size=N/A time=00:00:26.04 bitrate=N/A speed=1.08x    
frame=  461 fps= 19 q=-1.0 size=N/A time=00:00:26.04 bitrate=N/A speed=1.09x    
frame=   80 fps= 14 q=-1.0 size=N/A time=00:00:20.35 bitrate=N/A speed=3.58x    
frame=  473 fps= 19 q=-1.0 size=N/A time=00:00:26.66 bitrate=N/A speed=1.09x    
size=N/A time=00:00:05.13 bitrate=N/A speed=0.992x    
frame=  470 fps= 19 q=-1.0 size=N/A time=00:00:26.50 bitrate=N/A speed=1.09x    
size=N/A time=00:00:11.39 bitrate=N/A speed=0.471x    
frame=  346 fps= 15 q=-1.0 size=N/A time=00:00:24.94 bitrate=N/A speed=1.05x    
frame=  351 fps= 15 q=-1.0 size=N/A time=00:00:25.27 bitrate=N/A speed=1.05x    
size=N/A time=00:00:22.62 bitrate=N/A speed=0.976x    
size=N/A time=00:00:23.05 bitrate=N/A speed=0.978x    
frame=  471 fps= 19 q=-1.0 size=N/A time=00:00:26.60 bitrate=N/A speed=1.09x    
frame=  351 fps= 14 q=-1.0 size=N/A time=00:00:26.60 bitrate=N/A speed=1.08x    
frame=  483 fps= 19 q=-1.0 size=N/A time=00:00:27.12 bitrate=N/A speed=1.09x    
frame=   87 fps= 14 q=-1.0 size=N/A time=00:00:20.84 bitrate=N/A speed=3.37x    
size=N/A time=00:00:05.64 bitrate=N/A speed=0.993x    
frame=  480 fps= 19 q=-1.0 size=N/A time=00:00:27.02 bitrate=N/A speed=1.09x    
size=N/A time=00:00:11.90 bitrate=N/A speed=0.482x    
frame=  358 fps= 14 q=-1.0 size=N/A time=00:00:27.09 bitrate=N/A speed=1.08x    
frame=  367 fps= 15 q=-1.0 size=N/A time=00:00:26.34 bitrate=N/A speed=1.08x    
frame=  362 fps= 15 q=-1.0 size=N/A time=00:00:26.01 bitrate=N/A speed=1.08x    
frame=  481 fps= 19 q=-1.0 size=N/A time=00:00:27.12 bitrate=N/A speed=1.09x    
size=N/A time=00:00:23.76 bitrate=N/A speed=0.999x    
size=N/A time=00:00:24.20 bitrate=N/A speed=   1x    
15:08:44.367 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:44.487141281  frame=  493 fps= 19 q=-1.0 size=N/A time=00:00:27.70 bitrate=N/A speed=1.09x    
frame=   95 fps= 14 q=-1.0 size=N/A time=00:00:21.40 bitrate=N/A speed=3.19x    
size=N/A time=00:00:06.16 bitrate=N/A speed=0.994x    
15:08:44.486 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:44.730530047  frame=  491 fps= 19 q=-1.0 size=N/A time=00:00:27.52 bitrate=N/A speed=1.08x    
size=N/A time=00:00:12.42 bitrate=N/A speed=0.493x    
frame=  369 fps= 15 q=-1.0 size=N/A time=00:00:26.54 bitrate=N/A speed=1.08x    
frame=  374 fps= 15 q=-1.0 size=N/A time=00:00:26.88 bitrate=N/A speed=1.08x    
15:08:44.730 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:49.164382778  frame=  365 fps= 14 q=-1.0 size=N/A time=00:00:27.58 bitrate=N/A speed=1.08x    
frame=  493 fps= 19 q=-1.0 size=N/A time=00:00:27.70 bitrate=N/A speed=1.09x    
size=N/A time=00:00:24.30 bitrate=N/A speed=0.999x    
size=N/A time=00:00:24.74 bitrate=N/A speed=   1x    
frame=  102 fps= 14 q=-1.0 size=N/A time=00:00:21.89 bitrate=N/A speed=3.03x    
size=N/A time=00:00:06.67 bitrate=N/A speed=0.993x    
frame=  504 fps= 19 q=-1.0 size=N/A time=00:00:28.20 bitrate=N/A speed=1.08x    
frame=  501 fps= 19 q=-1.0 size=N/A time=00:00:28.04 bitrate=N/A speed=1.08x    
size=N/A time=00:00:12.92 bitrate=N/A speed=0.503x    
frame=  373 fps= 14 q=-1.0 size=N/A time=00:00:28.14 bitrate=N/A speed=1.08x    
frame=  377 fps= 15 q=-1.0 size=N/A time=00:00:27.10 bitrate=N/A speed=1.08x    
frame=  382 fps= 15 q=-1.0 size=N/A time=00:00:27.43 bitrate=N/A speed=1.07x    
frame=  504 fps= 19 q=-1.0 size=N/A time=00:00:28.20 bitrate=N/A speed=1.08x    
frame=  513 fps= 19 q=-1.0 size=N/A time=00:00:28.72 bitrate=N/A speed=1.08x    
size=N/A time=00:00:24.85 bitrate=N/A speed=   1x    
size=N/A time=00:00:25.29 bitrate=N/A speed=   1x    
frame=  109 fps= 14 q=-1.0 size=N/A time=00:00:22.38 bitrate=N/A speed=2.89x    
size=N/A time=00:00:07.18 bitrate=N/A speed=0.993x    
frame=  512 fps= 19 q=-1.0 size=N/A time=00:00:28.62 bitrate=N/A speed=1.08x    
size=N/A time=00:00:13.45 bitrate=N/A speed=0.513x    
frame=  380 fps= 14 q=-1.0 size=N/A time=00:00:28.63 bitrate=N/A speed=1.07x    
frame=  514 fps= 19 q=-1.0 size=N/A time=00:00:28.72 bitrate=N/A speed=1.08x    
frame=  386 fps= 15 q=-1.0 size=N/A time=00:00:27.61 bitrate=N/A speed=1.07x    
frame=  391 fps= 15 q=-1.0 size=N/A time=00:00:27.94 bitrate=N/A speed=1.07x    
frame=  524 fps= 19 q=-1.0 size=N/A time=00:00:29.22 bitrate=N/A speed=1.08x    
size=N/A time=00:00:25.41 bitrate=N/A speed=   1x    
size=N/A time=00:00:25.85 bitrate=N/A speed=   1x    
frame=  117 fps= 14 q=-1.0 size=N/A time=00:00:22.94 bitrate=N/A speed=2.77x    
size=N/A time=00:00:07.70 bitrate=N/A speed=0.992x    
frame=  521 fps= 19 q=-1.0 size=N/A time=00:00:29.06 bitrate=N/A speed=1.08x    
size=N/A time=00:00:13.83 bitrate=N/A speed=0.517x    
frame=  387 fps= 14 q=-1.0 size=N/A time=00:00:29.12 bitrate=N/A speed=1.07x    
frame=  524 fps= 19 q=-1.0 size=N/A time=00:00:29.24 bitrate=N/A speed=1.08x    
frame=  394 fps= 15 q=-1.0 size=N/A time=00:00:28.14 bitrate=N/A speed=1.07x    
frame=  399 fps= 15 q=-1.0 size=N/A time=00:00:28.47 bitrate=N/A speed=1.07x    
frame=  535 fps= 19 q=-1.0 size=N/A time=00:00:29.80 bitrate=N/A speed=1.08x    
frame=  124 fps= 14 q=-1.0 size=N/A time=00:00:23.43 bitrate=N/A speed=2.66x    
size=N/A time=00:00:08.14 bitrate=N/A speed=0.982x    
size=N/A time=00:00:26.42 bitrate=N/A speed=   1x    
size=N/A time=00:00:25.98 bitrate=N/A speed=0.999x    
size=N/A time=00:00:14.43 bitrate=N/A speed=0.53x    
frame=  533 fps= 19 q=-1.0 size=N/A time=00:00:29.64 bitrate=N/A speed=1.08x    
frame=  394 fps= 14 q=-1.0 size=N/A time=00:00:29.61 bitrate=N/A speed=1.07x    
frame=  401 fps= 15 q=-1.0 size=N/A time=00:00:28.64 bitrate=N/A speed=1.07x    
frame=  406 fps= 15 q=-1.0 size=N/A time=00:00:28.97 bitrate=N/A speed=1.07x    
frame=  534 fps= 19 q=-1.0 size=N/A time=00:00:29.74 bitrate=N/A speed=1.08x    
frame=  545 fps= 19 q=-1.0 size=N/A time=00:00:30.32 bitrate=N/A speed=1.08x    
frame=  132 fps= 14 q=-1.0 size=N/A time=00:00:23.99 bitrate=N/A speed=2.58x    
size=N/A time=00:00:08.82 bitrate=N/A speed=   1x    
size=N/A time=00:00:14.99 bitrate=N/A speed=0.54x    
frame=  543 fps= 19 q=-1.0 size=N/A time=00:00:30.08 bitrate=N/A speed=1.07x    
size=N/A time=00:00:26.56 bitrate=N/A speed=0.999x    
size=N/A time=00:00:27.00 bitrate=N/A speed=   1x    
frame=  402 fps= 14 q=-1.0 size=N/A time=00:00:30.17 bitrate=N/A speed=1.07x    
frame=  409 fps= 15 q=-1.0 size=N/A time=00:00:29.20 bitrate=N/A speed=1.07x    
frame=  414 fps= 15 q=-1.0 size=N/A time=00:00:29.54 bitrate=N/A speed=1.07x    
frame=  545 fps= 19 q=-1.0 size=N/A time=00:00:30.32 bitrate=N/A speed=1.08x    
frame=  139 fps= 14 q=-1.0 size=N/A time=00:00:24.48 bitrate=N/A speed=2.49x    
frame=  556 fps= 19 q=-1.0 size=N/A time=00:00:30.82 bitrate=N/A speed=1.08x    
size=N/A time=00:00:09.23 bitrate=N/A speed=0.989x    
size=N/A time=00:00:15.49 bitrate=N/A speed=0.548x    
frame=  554 fps= 19 q=-1.0 size=N/A time=00:00:30.66 bitrate=N/A speed=1.07x    
size=N/A time=00:00:27.54 bitrate=N/A speed=   1x    
size=N/A time=00:00:27.10 bitrate=N/A speed=0.999x    
frame=  409 fps= 14 q=-1.0 size=N/A time=00:00:30.66 bitrate=N/A speed=1.07x    
frame=  417 fps= 15 q=-1.0 size=N/A time=00:00:29.76 bitrate=N/A speed=1.07x    
frame=  422 fps= 15 q=-1.0 size=N/A time=00:00:30.09 bitrate=N/A speed=1.07x    
frame=  556 fps= 19 q=-1.0 size=N/A time=00:00:30.84 bitrate=N/A speed=1.08x    
frame=  146 fps= 14 q=-1.0 size=N/A time=00:00:24.97 bitrate=N/A speed=2.42x    
frame=  567 fps= 19 q=-1.0 size=N/A time=00:00:31.34 bitrate=N/A speed=1.08x    
size=N/A time=00:00:09.74 bitrate=N/A speed=0.988x    
size=N/A time=00:00:16.00 bitrate=N/A speed=0.556x    
frame=  564 fps= 19 q=-1.0 size=N/A time=00:00:31.18 bitrate=N/A speed=1.07x    
size=N/A time=00:00:27.65 bitrate=N/A speed=   1x    
size=N/A time=00:00:28.09 bitrate=N/A speed=   1x    
frame=  416 fps= 14 q=-1.0 size=N/A time=00:00:31.15 bitrate=N/A speed=1.07x    
frame=  566 fps= 19 q=-1.0 size=N/A time=00:00:31.34 bitrate=N/A speed=1.08x    
frame=  426 fps= 15 q=-1.0 size=N/A time=00:00:30.27 bitrate=N/A speed=1.07x    
frame=  431 fps= 15 q=-1.0 size=N/A time=00:00:30.60 bitrate=N/A speed=1.07x    
frame=  576 fps= 19 q=-1.0 size=N/A time=00:00:31.86 bitrate=N/A speed=1.07x    
frame=  153 fps= 14 q=-1.0 size=N/A time=00:00:25.46 bitrate=N/A speed=2.34x    
size=N/A time=00:00:10.25 bitrate=N/A speed=0.989x    
size=N/A time=00:00:16.51 bitrate=N/A speed=0.563x    
frame=  574 fps= 19 q=-1.0 size=N/A time=00:00:31.68 bitrate=N/A speed=1.07x    
size=N/A time=00:00:28.24 bitrate=N/A speed=0.999x    
size=N/A time=00:00:28.68 bitrate=N/A speed=   1x    
frame=  424 fps= 14 q=-1.0 size=N/A time=00:00:31.71 bitrate=N/A speed=1.07x    
frame=  576 fps= 19 q=-1.0 size=N/A time=00:00:31.86 bitrate=N/A speed=1.07x    
frame=  434 fps= 15 q=-1.0 size=N/A time=00:00:30.80 bitrate=N/A speed=1.06x    
frame=  439 fps= 15 q=-1.0 size=N/A time=00:00:31.14 bitrate=N/A speed=1.06x    
frame=  586 fps= 19 q=-1.0 size=N/A time=00:00:32.36 bitrate=N/A speed=1.07x    
frame=  161 fps= 14 q=-1.0 size=N/A time=00:00:26.02 bitrate=N/A speed=2.29x    
Input #0, flv, from 'http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 14:08:49.164638960    Metadata:
2024-02-06 14:08:49.164645793      displayWidth    : 1024
2024-02-06 14:08:49.164756810      displayHeight   : 1024
2024-02-06 14:08:49.164761199    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:08:49.164764069      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 14:08:49.164766273      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:49.217836713  size=N/A time=00:00:10.77 bitrate=N/A speed=0.99x    
15:08:49.216 DBG [exec] run launch=4.730218642s
2024-02-06 14:08:49.220343774  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/be8cb653df32c933d282e4c0e43fa184':
2024-02-06 14:08:49.223565602    Metadata:
2024-02-06 14:08:49.224136187      displayWidth    : 1024
2024-02-06 14:08:49.226171920      displayHeight   : 1024
2024-02-06 14:08:49.227271498      encoder         : Lavf58.45.100
2024-02-06 14:08:49.227285480      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:08:49.227287739      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:49.227289276  Stream mapping:
2024-02-06 14:08:49.227290850    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:49.227292350    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:49.227293887  Press [q] to stop, [?] for help
2024-02-06 14:08:49.850716108  size=N/A time=00:00:17.02 bitrate=N/A speed=0.571x    
frame=  585 fps= 19 q=-1.0 size=N/A time=00:00:32.20 bitrate=N/A speed=1.07x    
frame=  431 fps= 14 q=-1.0 size=N/A time=00:00:32.20 bitrate=N/A speed=1.06x    
size=N/A time=00:00:29.22 bitrate=N/A speed=   1x    
size=N/A time=00:00:28.78 bitrate=N/A speed=0.999x    
frame=  587 fps= 19 q=-1.0 size=N/A time=00:00:32.30 bitrate=N/A speed=1.07x    
frame=  442 fps= 15 q=-1.0 size=N/A time=00:00:31.34 bitrate=N/A speed=1.06x    
frame=  447 fps= 15 q=-1.0 size=N/A time=00:00:31.67 bitrate=N/A speed=1.06x    
frame=  597 fps= 19 q=-1.0 size=N/A time=00:00:32.88 bitrate=N/A speed=1.07x    
frame=  169 fps= 14 q=-1.0 size=N/A time=00:00:26.58 bitrate=N/A speed=2.23x    
size=N/A time=00:00:11.28 bitrate=N/A speed=0.99x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.61 bitrate=N/A speed=8.62x    
size=N/A time=00:00:17.54 bitrate=N/A speed=0.578x    
frame=  595 fps= 19 q=-1.0 size=N/A time=00:00:32.72 bitrate=N/A speed=1.07x    
Input #0, flv, from 'http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 14:08:49.850848939    Metadata:
2024-02-06 14:08:49.851129862      displayWidth    : 1024
2024-02-06 14:08:49.851379932      displayHeight   : 1024
2024-02-06 14:08:49.851635262    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:08:49.852352531      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 14:08:49.852642212      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:49.901847370  frame=  438 fps= 14 q=-1.0 size=N/A time=00:00:32.69 bitrate=N/A speed=1.06x    
15:08:49.901 DBG [exec] run launch=5.534352906s
2024-02-06 14:08:49.901986146  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dc75ec5c1523f099320784f3a43b5538':
2024-02-06 14:08:49.901989868    Metadata:
2024-02-06 14:08:49.902016312      displayWidth    : 1024
2024-02-06 14:08:49.902571323      displayHeight   : 1024
2024-02-06 14:08:49.902582416      encoder         : Lavf58.45.100
2024-02-06 14:08:49.902654915      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:08:49.903174130      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:49.903185649  Stream mapping:
2024-02-06 14:08:49.903187241    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:49.903188797    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:49.903190297  Press [q] to stop, [?] for help
2024-02-06 14:08:50.142423580  size=N/A time=00:00:29.77 bitrate=N/A speed=   1x    
size=N/A time=00:00:29.33 bitrate=N/A speed=   1x    
frame=  597 fps= 19 q=-1.0 size=N/A time=00:00:32.88 bitrate=N/A speed=1.07x    
frame=  449 fps= 15 q=-1.0 size=N/A time=00:00:31.89 bitrate=N/A speed=1.06x    
frame=  454 fps= 15 q=-1.0 size=N/A time=00:00:32.22 bitrate=N/A speed=1.06x    
Input #0, flv, from 'http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 14:08:50.142436894    Metadata:
2024-02-06 14:08:50.142439579      displayWidth    : 1024
2024-02-06 14:08:50.142505264      displayHeight   : 1024
2024-02-06 14:08:50.142509264    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:08:50.142595800      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 14:08:50.142667002      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:50.195251653  frame=  176 fps= 14 q=-1.0 size=N/A time=00:00:27.07 bitrate=N/A speed=2.18x    
frame=  608 fps= 19 q=-1.0 size=N/A time=00:00:33.38 bitrate=N/A speed=1.07x    
size=N/A time=00:00:11.79 bitrate=N/A speed=0.991x    
15:08:50.195 DBG [exec] run launch=5.464532071s
2024-02-06 14:08:50.196333083  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dd9cdc4b33c8be02896bee67b8b27d4d':
2024-02-06 14:08:50.196448323    Metadata:
2024-02-06 14:08:50.196612543      displayWidth    : 1024
2024-02-06 14:08:50.198380131      displayHeight   : 1024
2024-02-06 14:08:50.198574832      encoder         : Lavf58.45.100
2024-02-06 14:08:50.200209218      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:08:50.200495604      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:50.200581176  Stream mapping:
2024-02-06 14:08:50.201528905    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:50.201540201    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:50.201542349  Press [q] to stop, [?] for help
2024-02-06 14:08:50.886975765  size=N/A time=00:00:18.05 bitrate=N/A speed=0.585x    
frame=  605 fps= 19 q=-1.0 size=N/A time=00:00:33.22 bitrate=N/A speed=1.07x    
frame=  446 fps= 14 q=-1.0 size=N/A time=00:00:33.25 bitrate=N/A speed=1.06x    
frame=    3 fps=2.7 q=-1.0 size=N/A time=00:00:05.19 bitrate=N/A speed=4.71x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.64 bitrate=N/A speed=8.86x    
frame=  608 fps= 19 q=-1.0 size=N/A time=00:00:33.46 bitrate=N/A speed=1.07x    
size=N/A time=00:00:29.90 bitrate=N/A speed=0.999x    
size=N/A time=00:00:30.34 bitrate=N/A speed=   1x    
frame=  457 fps= 15 q=-1.0 size=N/A time=00:00:32.42 bitrate=N/A speed=1.06x    
frame=  462 fps= 15 q=-1.0 size=N/A time=00:00:32.75 bitrate=N/A speed=1.06x    
frame=  618 fps= 19 q=-1.0 size=N/A time=00:00:33.90 bitrate=N/A speed=1.07x    
frame=  183 fps= 14 q=-1.0 size=N/A time=00:00:27.56 bitrate=N/A speed=2.13x    
size=N/A time=00:00:12.31 bitrate=N/A speed=0.99x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.57 bitrate=N/A speed=8.71x    
size=N/A time=00:00:18.56 bitrate=N/A speed=0.592x    
frame=  615 fps= 19 q=-1.0 size=N/A time=00:00:33.74 bitrate=N/A speed=1.07x    
frame=    8 fps=5.0 q=-1.0 size=N/A time=00:00:05.70 bitrate=N/A speed=3.56x    
frame=  453 fps= 14 q=-1.0 size=N/A time=00:00:33.74 bitrate=N/A speed=1.06x    
av_interleaved_write_frame(): Broken pipe
2024-02-06 14:08:50.886994265  Error writing trailer of rtsp://127.0.0.1:8554/dc75ec5c1523f099320784f3a43b5538: Broken pipe
2024-02-06 14:08:50.886997524  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:05.02 bitrate=N/A speed=5.13x    
2024-02-06 14:08:50.887000653  video:29kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 14:08:50.887002265  Conversion failed!
2024-02-06 14:08:50.902699653  15:08:50.902 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:51.151629384  frame=  619 fps= 19 q=-1.0 size=N/A time=00:00:33.96 bitrate=N/A speed=1.07x    
size=N/A time=00:00:30.45 bitrate=N/A speed=   1x    
size=N/A time=00:00:30.89 bitrate=N/A speed=   1x    
frame=  465 fps= 15 q=-1.0 size=N/A time=00:00:32.98 bitrate=N/A speed=1.06x    
frame=  470 fps= 15 q=-1.0 size=N/A time=00:00:33.31 bitrate=N/A speed=1.06x    
av_interleaved_write_frame(): Broken pipe
2024-02-06 14:08:51.152154785  Error writing trailer of rtsp://127.0.0.1:8554/dd9cdc4b33c8be02896bee67b8b27d4d: Broken pipe
2024-02-06 14:08:51.154199110  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:04.99 bitrate=N/A speed=5.26x    
2024-02-06 14:08:51.154269313  video:30kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 14:08:51.154273331  Conversion failed!
2024-02-06 14:08:51.172511484  15:08:51.172 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:54.602551377  frame=  628 fps= 19 q=-1.0 size=N/A time=00:00:34.42 bitrate=N/A speed=1.07x    
frame=  191 fps= 14 q=-1.0 size=N/A time=00:00:28.12 bitrate=N/A speed=2.09x    
size=N/A time=00:00:12.94 bitrate=N/A speed=   1x    
frame=  625 fps= 19 q=-1.0 size=N/A time=00:00:34.24 bitrate=N/A speed=1.07x    
size=N/A time=00:00:19.07 bitrate=N/A speed=0.598x    
frame=   13 fps=6.1 q=-1.0 size=N/A time=00:00:06.21 bitrate=N/A speed= 2.9x    
frame=  460 fps= 14 q=-1.0 size=N/A time=00:00:34.23 bitrate=N/A speed=1.06x    
frame=  629 fps= 19 q=-1.0 size=N/A time=00:00:34.54 bitrate=N/A speed=1.07x    
frame=  474 fps= 15 q=-1.0 size=N/A time=00:00:33.47 bitrate=N/A speed=1.06x    
frame=  479 fps= 15 q=-1.0 size=N/A time=00:00:33.80 bitrate=N/A speed=1.06x    
size=N/A time=00:00:31.04 bitrate=N/A speed=0.999x    
size=N/A time=00:00:31.48 bitrate=N/A speed=   1x    
frame=  198 fps= 14 q=-1.0 size=N/A time=00:00:28.61 bitrate=N/A speed=2.05x    
frame=  639 fps= 19 q=-1.0 size=N/A time=00:00:34.98 bitrate=N/A speed=1.07x    
size=N/A time=00:00:13.45 bitrate=N/A speed=0.999x    
frame=  636 fps= 19 q=-1.0 size=N/A time=00:00:34.76 bitrate=N/A speed=1.07x    
size=N/A time=00:00:19.58 bitrate=N/A speed=0.604x    
frame=  468 fps= 14 q=-1.0 size=N/A time=00:00:34.79 bitrate=N/A speed=1.06x    
frame=   19 fps=7.1 q=-1.0 size=N/A time=00:00:06.79 bitrate=N/A speed=2.52x    
frame=  640 fps= 19 q=-1.0 size=N/A time=00:00:35.06 bitrate=N/A speed=1.07x    
frame=  486 fps= 15 q=-1.0 size=N/A time=00:00:34.30 bitrate=N/A speed=1.06x    
frame=  481 fps= 15 q=-1.0 size=N/A time=00:00:33.96 bitrate=N/A speed=1.06x    
size=N/A time=00:00:31.58 bitrate=N/A speed=0.999x    
size=N/A time=00:00:32.02 bitrate=N/A speed=   1x    
frame=  205 fps= 14 q=-1.0 size=N/A time=00:00:29.10 bitrate=N/A speed=2.01x    
frame=  649 fps= 19 q=-1.0 size=N/A time=00:00:35.50 bitrate=N/A speed=1.07x    
size=N/A time=00:00:13.96 bitrate=N/A speed=0.999x    
frame=  646 fps= 19 q=-1.0 size=N/A time=00:00:35.28 bitrate=N/A speed=1.06x    
size=N/A time=00:00:20.09 bitrate=N/A speed=0.611x    
frame=  475 fps= 14 q=-1.0 size=N/A time=00:00:35.28 bitrate=N/A speed=1.06x    
frame=   24 fps=7.5 q=-1.0 size=N/A time=00:00:07.30 bitrate=N/A speed=2.27x    
frame=  651 fps= 20 q=-1.0 size=N/A time=00:00:35.56 bitrate=N/A speed=1.07x    
frame=  489 fps= 15 q=-1.0 size=N/A time=00:00:34.52 bitrate=N/A speed=1.06x    
frame=  494 fps= 15 q=-1.0 size=N/A time=00:00:34.85 bitrate=N/A speed=1.06x    
size=N/A time=00:00:32.57 bitrate=N/A speed=   1x    
size=N/A time=00:00:32.13 bitrate=N/A speed=   1x    
frame=  660 fps= 20 q=-1.0 size=N/A time=00:00:36.02 bitrate=N/A speed=1.07x    
frame=  212 fps= 14 q=-1.0 size=N/A time=00:00:29.59 bitrate=N/A speed=1.98x    
size=N/A time=00:00:14.48 bitrate=N/A speed=0.995x    
size=N/A time=00:00:20.61 bitrate=N/A speed=0.617x    
frame=  482 fps= 14 q=-1.0 size=N/A time=00:00:35.77 bitrate=N/A speed=1.06x    
frame=  657 fps= 19 q=-1.0 size=N/A time=00:00:35.84 bitrate=N/A speed=1.06x    
frame=   29 fps=7.8 q=-1.0 size=N/A time=00:00:07.88 bitrate=N/A speed=2.11x    
frame=  660 fps= 19 q=-1.0 size=N/A time=00:00:36.08 bitrate=N/A speed=1.07x    
frame=  220 fps= 14 q=-1.0 size=N/A time=00:00:30.15 bitrate=N/A speed=1.95x    
frame=  497 fps= 15 q=-1.0 size=N/A time=00:00:35.09 bitrate=N/A speed=1.06x    
frame=  502 fps= 15 q=-1.0 size=N/A time=00:00:35.42 bitrate=N/A speed=1.06x    
frame=  670 fps= 20 q=-1.0 size=N/A time=00:00:36.52 bitrate=N/A speed=1.06x    
size=N/A time=00:00:14.99 bitrate=N/A speed=0.995x    
size=N/A time=00:00:32.72 bitrate=N/A speed=   1x    
size=N/A time=00:00:33.16 bitrate=N/A speed=   1x    
size=N/A time=00:00:21.12 bitrate=N/A speed=0.622x    
frame=  490 fps= 14 q=-1.0 size=N/A time=00:00:36.33 bitrate=N/A speed=1.06x    
frame=  668 fps= 20 q=-1.0 size=N/A time=00:00:36.36 bitrate=N/A speed=1.06x    
frame=   34 fps=8.0 q=-1.0 size=N/A time=00:00:08.39 bitrate=N/A speed=1.97x    
frame=  672 fps= 20 q=-1.0 size=N/A time=00:00:36.60 bitrate=N/A speed=1.06x    
frame=  227 fps= 14 q=-1.0 size=N/A time=00:00:30.64 bitrate=N/A speed=1.92x    
frame=  505 fps= 15 q=-1.0 size=N/A time=00:00:35.64 bitrate=N/A speed=1.06x    
frame=  510 fps= 15 q=-1.0 size=N/A time=00:00:35.97 bitrate=N/A speed=1.06x    
frame=  680 fps= 20 q=-1.0 size=N/A time=00:00:37.04 bitrate=N/A speed=1.06x    
size=N/A time=00:00:15.50 bitrate=N/A speed=0.995x    
size=N/A time=00:00:33.69 bitrate=N/A speed=   1x    
size=N/A time=00:00:33.25 bitrate=N/A speed=   1x    
size=N/A time=00:00:21.63 bitrate=N/A speed=0.628x    
frame=  677 fps= 19 q=-1.0 size=N/A time=00:00:36.88 bitrate=N/A speed=1.06x    
frame=  497 fps= 14 q=-1.0 size=N/A time=00:00:36.82 bitrate=N/A speed=1.06x    
frame=   40 fps=8.3 q=-1.0 size=N/A time=00:00:08.90 bitrate=N/A speed=1.85x    
frame=  235 fps= 14 q=-1.0 size=N/A time=00:00:31.20 bitrate=N/A speed=1.89x    
frame=  681 fps= 19 q=-1.0 size=N/A time=00:00:37.10 bitrate=N/A speed=1.06x    
frame=  691 fps= 20 q=-1.0 size=N/A time=00:00:37.54 bitrate=N/A speed=1.06x    
frame=  514 fps= 15 q=-1.0 size=N/A time=00:00:36.14 bitrate=N/A speed=1.05x    
frame=  519 fps= 15 q=-1.0 size=N/A time=00:00:36.47 bitrate=N/A speed=1.05x    
size=N/A time=00:00:16.01 bitrate=N/A speed=0.995x    
size=N/A time=00:00:22.15 bitrate=N/A speed=0.634x    
size=N/A time=00:00:33.81 bitrate=N/A speed=   1x    
size=N/A time=00:00:34.25 bitrate=N/A speed=   1x    
frame=  688 fps= 20 q=-1.0 size=N/A time=00:00:37.38 bitrate=N/A speed=1.06x    
frame=  504 fps= 14 q=-1.0 size=N/A time=00:00:37.31 bitrate=N/A speed=1.05x    
frame=   45 fps=8.5 q=-1.0 size=N/A time=00:00:09.41 bitrate=N/A speed=1.77x    
15:08:54.601 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:54.890880837  frame=  693 fps= 20 q=-1.0 size=N/A time=00:00:37.68 bitrate=N/A speed=1.06x    
frame=  242 fps= 14 q=-1.0 size=N/A time=00:00:31.69 bitrate=N/A speed=1.86x    
frame=  522 fps= 15 q=-1.0 size=N/A time=00:00:36.67 bitrate=N/A speed=1.05x    
frame=  527 fps= 15 q=-1.0 size=N/A time=00:00:37.01 bitrate=N/A speed=1.05x    
size=N/A time=00:00:16.52 bitrate=N/A speed=0.995x    
15:08:54.890 DBG [exec] run url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:08:59.838608063  frame=  701 fps= 20 q=-1.0 size=N/A time=00:00:38.06 bitrate=N/A speed=1.06x    
size=N/A time=00:00:22.65 bitrate=N/A speed=0.639x    
frame=  698 fps= 20 q=-1.0 size=N/A time=00:00:37.90 bitrate=N/A speed=1.06x    
frame=  512 fps= 14 q=-1.0 size=N/A time=00:00:37.87 bitrate=N/A speed=1.06x    
size=N/A time=00:00:34.38 bitrate=N/A speed=   1x    
size=N/A time=00:00:34.82 bitrate=N/A speed=   1x    
frame=   50 fps=8.6 q=-1.0 size=N/A time=00:00:09.99 bitrate=N/A speed=1.71x    
frame=  703 fps= 20 q=-1.0 size=N/A time=00:00:38.12 bitrate=N/A speed=1.06x    
frame=  249 fps= 14 q=-1.0 size=N/A time=00:00:32.18 bitrate=N/A speed=1.84x    
frame=  529 fps= 15 q=-1.0 size=N/A time=00:00:37.18 bitrate=N/A speed=1.05x    
frame=  534 fps= 15 q=-1.0 size=N/A time=00:00:37.51 bitrate=N/A speed=1.05x    
frame=  712 fps= 20 q=-1.0 size=N/A time=00:00:38.64 bitrate=N/A speed=1.06x    
size=N/A time=00:00:17.04 bitrate=N/A speed=0.996x    
size=N/A time=00:00:23.18 bitrate=N/A speed=0.644x    
frame=  519 fps= 14 q=-1.0 size=N/A time=00:00:38.36 bitrate=N/A speed=1.05x    
frame=  708 fps= 20 q=-1.0 size=N/A time=00:00:38.40 bitrate=N/A speed=1.06x    
size=N/A time=00:00:34.94 bitrate=N/A speed=   1x    
size=N/A time=00:00:35.37 bitrate=N/A speed=   1x    
frame=   55 fps=8.7 q=-1.0 size=N/A time=00:00:10.50 bitrate=N/A speed=1.66x    
frame=  713 fps= 20 q=-1.0 size=N/A time=00:00:38.70 bitrate=N/A speed=1.06x    
frame=  256 fps= 14 q=-1.0 size=N/A time=00:00:32.67 bitrate=N/A speed=1.81x    
frame=  721 fps= 20 q=-1.0 size=N/A time=00:00:39.08 bitrate=N/A speed=1.06x    
size=N/A time=00:00:17.54 bitrate=N/A speed=0.995x    
frame=  542 fps= 15 q=-1.0 size=N/A time=00:00:38.10 bitrate=N/A speed=1.05x    
frame=  537 fps= 15 q=-1.0 size=N/A time=00:00:37.77 bitrate=N/A speed=1.05x    
size=N/A time=00:00:23.68 bitrate=N/A speed=0.649x    
frame=  719 fps= 20 q=-1.0 size=N/A time=00:00:38.86 bitrate=N/A speed=1.06x    
frame=  526 fps= 14 q=-1.0 size=N/A time=00:00:38.85 bitrate=N/A speed=1.05x    
size=N/A time=00:00:35.53 bitrate=N/A speed=   1x    
size=N/A time=00:00:35.97 bitrate=N/A speed=   1x    
frame=   60 fps=8.7 q=-1.0 size=N/A time=00:00:11.01 bitrate=N/A speed= 1.6x    
frame=  723 fps= 20 q=-1.0 size=N/A time=00:00:39.22 bitrate=N/A speed=1.06x    
frame=  264 fps= 14 q=-1.0 size=N/A time=00:00:33.23 bitrate=N/A speed=1.79x    
frame=  732 fps= 20 q=-1.0 size=N/A time=00:00:39.66 bitrate=N/A speed=1.06x    
frame=  545 fps= 15 q=-1.0 size=N/A time=00:00:38.30 bitrate=N/A speed=1.05x    
frame=  550 fps= 15 q=-1.0 size=N/A time=00:00:38.63 bitrate=N/A speed=1.05x    
size=N/A time=00:00:18.06 bitrate=N/A speed=0.995x    
size=N/A time=00:00:24.19 bitrate=N/A speed=0.654x    
frame=  534 fps= 14 q=-1.0 size=N/A time=00:00:39.41 bitrate=N/A speed=1.05x    
frame=  729 fps= 20 q=-1.0 size=N/A time=00:00:39.44 bitrate=N/A speed=1.06x    
frame=   66 fps=9.0 q=-1.0 size=N/A time=00:00:11.47 bitrate=N/A speed=1.56x    
size=N/A time=00:00:36.05 bitrate=N/A speed=   1x    
size=N/A time=00:00:36.49 bitrate=N/A speed=   1x    
frame=  734 fps= 20 q=-1.0 size=N/A time=00:00:39.72 bitrate=N/A speed=1.06x    
frame=  271 fps= 14 q=-1.0 size=N/A time=00:00:33.72 bitrate=N/A speed=1.77x    
frame=  741 fps= 20 q=-1.0 size=N/A time=00:00:40.10 bitrate=N/A speed=1.06x    
frame=  552 fps= 15 q=-1.0 size=N/A time=00:00:38.72 bitrate=N/A speed=1.05x    
frame=  557 fps= 15 q=-1.0 size=N/A time=00:00:39.05 bitrate=N/A speed=1.05x    
size=N/A time=00:00:24.71 bitrate=N/A speed=0.658x    
size=N/A time=00:00:18.57 bitrate=N/A speed=0.992x    
frame=  540 fps= 14 q=-1.0 size=N/A time=00:00:39.83 bitrate=N/A speed=1.05x    
frame=  740 fps= 20 q=-1.0 size=N/A time=00:00:40.00 bitrate=N/A speed=1.06x    
frame=   71 fps=9.0 q=-1.0 size=N/A time=00:00:11.99 bitrate=N/A speed=1.52x    
size=N/A time=00:00:37.05 bitrate=N/A speed=   1x    
size=N/A time=00:00:36.62 bitrate=N/A speed=   1x    
frame=  278 fps= 14 q=-1.0 size=N/A time=00:00:34.21 bitrate=N/A speed=1.75x    
frame=  745 fps= 20 q=-1.0 size=N/A time=00:00:40.24 bitrate=N/A speed=1.06x    
frame=  753 fps= 20 q=-1.0 size=N/A time=00:00:40.68 bitrate=N/A speed=1.06x    
frame=  561 fps= 15 q=-1.0 size=N/A time=00:00:39.31 bitrate=N/A speed=1.05x    
frame=  566 fps= 15 q=-1.0 size=N/A time=00:00:39.64 bitrate=N/A speed=1.05x    
frame=  548 fps= 14 q=-1.0 size=N/A time=00:00:40.39 bitrate=N/A speed=1.05x    
size=N/A time=00:00:25.22 bitrate=N/A speed=0.662x    
size=N/A time=00:00:19.21 bitrate=N/A speed=0.999x    
frame=  751 fps= 20 q=-1.0 size=N/A time=00:00:40.46 bitrate=N/A speed=1.05x    
frame=   76 fps=9.0 q=-1.0 size=N/A time=00:00:12.48 bitrate=N/A speed=1.48x    
size=N/A time=00:00:37.64 bitrate=N/A speed=   1x    
size=N/A time=00:00:37.20 bitrate=N/A speed=   1x    
frame=  755 fps= 20 q=-1.0 size=N/A time=00:00:40.76 bitrate=N/A speed=1.06x    
frame=  286 fps= 14 q=-1.0 size=N/A time=00:00:34.77 bitrate=N/A speed=1.73x    
frame=  763 fps= 20 q=-1.0 size=N/A time=00:00:41.20 bitrate=N/A speed=1.06x    
frame=  569 fps= 15 q=-1.0 size=N/A time=00:00:39.84 bitrate=N/A speed=1.05x    
frame=  574 fps= 15 q=-1.0 size=N/A time=00:00:40.18 bitrate=N/A speed=1.05x    
frame=  555 fps= 14 q=-1.0 size=N/A time=00:00:40.88 bitrate=N/A speed=1.05x    
size=N/A time=00:00:19.73 bitrate=N/A speed=0.997x    
size=N/A time=00:00:25.86 bitrate=N/A speed=0.669x    
frame=  761 fps= 20 q=-1.0 size=N/A time=00:00:41.04 bitrate=N/A speed=1.06x    
frame=   81 fps=9.1 q=-1.0 size=N/A time=00:00:13.00 bitrate=N/A speed=1.45x    
frame=  765 fps= 20 q=-1.0 size=N/A time=00:00:41.26 bitrate=N/A speed=1.06x    
frame=  293 fps= 14 q=-1.0 size=N/A time=00:00:35.26 bitrate=N/A speed=1.71x    
size=N/A time=00:00:37.74 bitrate=N/A speed=   1x    
size=N/A time=00:00:38.18 bitrate=N/A speed=   1x    
frame=  773 fps= 20 q=-1.0 size=N/A time=00:00:41.70 bitrate=N/A speed=1.06x    
frame=  577 fps= 15 q=-1.0 size=N/A time=00:00:40.41 bitrate=N/A speed=1.05x    
frame=  582 fps= 15 q=-1.0 size=N/A time=00:00:40.74 bitrate=N/A speed=1.05x    
frame=  563 fps= 14 q=-1.0 size=N/A time=00:00:41.44 bitrate=N/A speed=1.05x    
size=N/A time=00:00:26.36 bitrate=N/A speed=0.673x    
size=N/A time=00:00:20.23 bitrate=N/A speed=0.996x    
frame=  772 fps= 20 q=-1.0 size=N/A time=00:00:41.54 bitrate=N/A speed=1.05x    
frame=   87 fps=9.2 q=-1.0 size=N/A time=00:00:13.59 bitrate=N/A speed=1.43x    
frame=  775 fps= 20 q=-1.0 size=N/A time=00:00:41.78 bitrate=N/A speed=1.06x    
frame=  300 fps= 14 q=-1.0 size=N/A time=00:00:35.75 bitrate=N/A speed=1.69x    
size=N/A time=00:00:38.30 bitrate=N/A speed=0.999x    
size=N/A time=00:00:38.74 bitrate=N/A speed=   1x    
frame=  784 fps= 20 q=-1.0 size=N/A time=00:00:42.22 bitrate=N/A speed=1.05x    
frame=  570 fps= 14 q=-1.0 size=N/A time=00:00:41.93 bitrate=N/A speed=1.05x    
size=N/A time=00:00:26.88 bitrate=N/A speed=0.678x    
size=N/A time=00:00:20.74 bitrate=N/A speed=0.996x    
frame=  585 fps= 15 q=-1.0 size=N/A time=00:00:40.97 bitrate=N/A speed=1.05x    
frame=  590 fps= 15 q=-1.0 size=N/A time=00:00:41.29 bitrate=N/A speed=1.05x    
frame=  781 fps= 20 q=-1.0 size=N/A time=00:00:42.06 bitrate=N/A speed=1.05x    
frame=   91 fps=9.1 q=-1.0 size=N/A time=00:00:14.08 bitrate=N/A speed=1.41x    
frame=  785 fps= 20 q=-1.0 size=N/A time=00:00:42.28 bitrate=N/A speed=1.05x    
frame=  308 fps= 14 q=-1.0 size=N/A time=00:00:36.31 bitrate=N/A speed=1.68x    
size=N/A time=00:00:38.86 bitrate=N/A speed=   1x    
size=N/A time=00:00:39.29 bitrate=N/A speed=   1x    
frame=  795 fps= 20 q=-1.0 size=N/A time=00:00:42.80 bitrate=N/A speed=1.05x    
frame=  578 fps= 14 q=-1.0 size=N/A time=00:00:42.49 bitrate=N/A speed=1.05x    
size=N/A time=00:00:27.40 bitrate=N/A speed=0.682x    
size=N/A time=00:00:21.27 bitrate=N/A speed=0.997x    
frame=  598 fps= 15 q=-1.0 size=N/A time=00:00:41.86 bitrate=N/A speed=1.05x    
frame=  593 fps= 15 q=-1.0 size=N/A time=00:00:41.53 bitrate=N/A speed=1.05x    
frame=  793 fps= 20 q=-1.0 size=N/A time=00:00:42.64 bitrate=N/A speed=1.05x    
frame=   97 fps=9.2 q=-1.0 size=N/A time=00:00:14.60 bitrate=N/A speed=1.39x    
Input #0, flv, fro
2024-02-06 14:08:59.839024613  m 'http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 14:08:59.839032353    Metadata:
2024-02-06 14:08:59.839034168      displayWidth    : 1024
2024-02-06 14:08:59.840040025      displayHeight   : 1024
2024-02-06 14:08:59.840052173    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:08:59.840054729      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 14:08:59.840056618      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:59.893312741  frame=  315 fps= 14 q=-1.0 size=N/A time=00:00:36.80 bitrate=N/A speed=1.66x    
15:08:59.893 DBG [exec] run launch=5.291044195s
2024-02-06 14:08:59.893585571  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dc75ec5c1523f099320784f3a43b5538':
2024-02-06 14:08:59.893622756    Metadata:
2024-02-06 14:08:59.893624682      displayWidth    : 1024
2024-02-06 14:08:59.893626367      displayHeight   : 1024
2024-02-06 14:08:59.893628015      encoder         : Lavf58.45.100
2024-02-06 14:08:59.895386418      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:08:59.895398251      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:08:59.895399770  Stream mapping:
2024-02-06 14:08:59.895401325    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:08:59.895402788    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:08:59.895404233  Press [q] to stop, [?] for help
2024-02-06 14:09:00.174008634  frame=  796 fps= 20 q=-1.0 size=N/A time=00:00:42.80 bitrate=N/A speed=1.05x    
size=N/A time=00:00:39.86 bitrate=N/A speed=   1x    
size=N/A time=00:00:39.42 bitrate=N/A speed=   1x    
frame=  805 fps= 20 q=-1.0 size=N/A time=00:00:43.30 bitrate=N/A speed=1.05x    
frame=  585 fps= 14 q=-1.0 size=N/A time=00:00:42.98 bitrate=N/A speed=1.05x    
size=N/A time=00:00:27.90 bitrate=N/A speed=0.686x    
size=N/A time=00:00:21.77 bitrate=N/A speed=0.997x    
Input #0, flv, from 'http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx':
2024-02-06 14:09:00.174021671    Metadata:
2024-02-06 14:09:00.174023671      displayWidth    : 1024
2024-02-06 14:09:00.174077374      displayHeight   : 1024
2024-02-06 14:09:00.174080300    Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
2024-02-06 14:09:00.174659459      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, 9 fps, 25 tbr, 1k tbn
2024-02-06 14:09:00.174750124      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:09:00.231826791  frame=  607 fps= 15 q=-1.0 size=N/A time=00:00:42.34 bitrate=N/A speed=1.05x    
frame=  602 fps= 15 q=-1.0 size=N/A time=00:00:42.01 bitrate=N/A speed=1.05x    
15:09:00.229 DBG [exec] run launch=5.338998479s
2024-02-06 14:09:00.245824257  frame=  102 fps=9.3 q=-1.0 size=N/A time=00:00:15.11 bitrate=N/A speed=1.37x    
Output #0, rtsp, to 'rtsp://127.0.0.1:8554/dd9cdc4b33c8be02896bee67b8b27d4d':
2024-02-06 14:09:00.245840887    Metadata:
2024-02-06 14:09:00.245842886      displayWidth    : 1024
2024-02-06 14:09:00.245844664      displayHeight   : 1024
2024-02-06 14:09:00.246048439      encoder         : Lavf58.45.100
2024-02-06 14:09:00.246120883      Stream #0:0: Video: h264 (High), yuv420p(progressive), 1024x1024, q=2-31, 9 fps, 25 tbr, 90k tbn, 1k tbc
2024-02-06 14:09:00.246147012      Stream #0:1: Audio: aac (LC), 16000 Hz, mono, fltp
2024-02-06 14:09:00.246148845  Stream mapping:
2024-02-06 14:09:00.246197549    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:09:00.246200493    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:09:00.246202011  Press [q] to stop, [?] for help
2024-02-06 14:09:00.888428525  frame=  804 fps= 20 q=-1.0 size=N/A time=00:00:43.20 bitrate=N/A speed=1.05x    
frame=  322 fps= 14 q=-1.0 size=N/A time=00:00:37.29 bitrate=N/A speed=1.65x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.64 bitrate=N/A speed=8.75x    
frame=  807 fps= 20 q=-1.0 size=N/A time=00:00:43.32 bitrate=N/A speed=1.05x    
frame=  816 fps= 20 q=-1.0 size=N/A time=00:00:43.82 bitrate=N/A speed=1.05x    
size=N/A time=00:00:40.01 bitrate=N/A speed=   1x    
size=N/A time=00:00:40.45 bitrate=N/A speed=   1x    
frame=  592 fps= 14 q=-1.0 size=N/A time=00:00:43.47 bitrate=N/A speed=1.05x    
size=N/A time=00:00:28.42 bitrate=N/A speed=0.69x    
size=N/A time=00:00:22.28 bitrate=N/A speed=0.997x    
frame=  609 fps= 15 q=-1.0 size=N/A time=00:00:42.51 bitrate=N/A speed=1.05x    
frame=  614 fps= 15 q=-1.0 size=N/A time=00:00:42.84 bitrate=N/A speed=1.05x    
frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:04.64 bitrate=N/A speed=9.23x    
frame=  814 fps= 20 q=-1.0 size=N/A time=00:00:43.72 bitrate=N/A speed=1.05x    
frame=  107 fps=9.3 q=-1.0 size=N/A time=00:00:15.62 bitrate=N/A speed=1.35x    
av_interleaved_write_frame(): Broken pipe
2024-02-06 14:09:00.888444414  Error writing trailer of rtsp://127.0.0.1:8554/dc75ec5c1523f099320784f3a43b5538: Broken pipe
2024-02-06 14:09:00.888447618  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:05.03 bitrate=N/A speed=5.06x    
2024-02-06 14:09:00.888450673  video:29kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 14:09:00.891306914  Conversion failed!
2024-02-06 14:09:00.908372766  frame=  329 fps= 14 q=-1.0 size=N/A time=00:00:37.78 bitrate=N/A speed=1.63x    
15:09:00.908 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:09:01.174259944  frame=  817 fps= 20 q=-1.0 size=N/A time=00:00:43.88 bitrate=N/A speed=1.05x    
frame=  826 fps= 20 q=-1.0 size=N/A time=00:00:44.34 bitrate=N/A speed=1.05x    
frame=  600 fps= 14 q=-1.0 size=N/A time=00:00:44.03 bitrate=N/A speed=1.05x    
size=N/A time=00:00:40.98 bitrate=N/A speed=   1x    
size=N/A time=00:00:40.54 bitrate=N/A speed=   1x    
av_interleaved_write_frame(): Broken pipe
2024-02-06 14:09:01.174274018  Error writing trailer of rtsp://127.0.0.1:8554/dd9cdc4b33c8be02896bee67b8b27d4d: Broken pipe
2024-02-06 14:09:01.174276814  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:04.99 bitrate=N/A speed= 5.4x    
2024-02-06 14:09:01.174279536  video:29kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 14:09:01.174291240  Conversion failed!
2024-02-06 14:09:01.195642148  size=N/A time=00:00:28.93 bitrate=N/A speed=0.694x    
size=N/A time=00:00:22.79 bitrate=N/A speed=0.997x    
15:09:01.195 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:09:04.822264859  frame=  617 fps= 15 q=-1.0 size=N/A time=00:00:43.01 bitrate=N/A speed=1.05x    
frame=  622 fps= 15 q=-1.0 size=N/A time=00:00:43.40 bitrate=N/A speed=1.04x    
frame=  825 fps= 20 q=-1.0 size=N/A time=00:00:44.24 bitrate=N/A speed=1.05x    
frame=  112 fps=9.3 q=-1.0 size=N/A time=00:00:16.20 bitrate=N/A speed=1.35x    
frame=  336 fps= 14 q=-1.0 size=N/A time=00:00:38.27 bitrate=N/A speed=1.62x    
frame=  828 fps= 20 q=-1.0 size=N/A time=00:00:44.40 bitrate=N/A speed=1.05x    
frame=  836 fps= 20 q=-1.0 size=N/A time=00:00:44.84 bitrate=N/A speed=1.05x    
frame=  607 fps= 14 q=-1.0 size=N/A time=00:00:44.52 bitrate=N/A speed=1.05x    
NickM-27 commented 8 months ago

here we can see the stream from the camera broke

av_interleaved_write_frame(): Broken pipe
2024-02-06 14:09:00.888444414  Error writing trailer of rtsp://127.0.0.1:8554/dc75ec5c1523f099320784f3a43b5538: Broken pipe
2024-02-06 14:09:00.888447618  frame=    1 fps=0.0 q=-1.0 Lsize=N/A time=00:00:05.03 bitrate=N/A speed=5.06x    
2024-02-06 14:09:00.888450673  video:29kB audio:8kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
2024-02-06 14:09:00.891306914  Conversion failed!
2024-02-06 14:09:00.908372766  frame=  329 fps= 14 q=-1.0 size=N/A time=00:00:37.78 bitrate=N/A speed=1.63x    
15:09:00.908 TRC [exec] close url="exec:ffmpeg -hide_banner -fflags nobuffer -flags low_delay -i http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx -c copy -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:09:01.174259944  frame=  817 fps= 20 q=-1.0 size=N/A time=00:00:43.88 bitrate=N/A speed=1.05x    
frame=  826 fps= 20 q=-1.0 size=N/A time=00:00:44.34 bitrate=N/A speed=1.05x    
frame=  600 fps= 14 q=-1.0 size=N/A time=00:00:44.03 bitrate=N/A speed=1.05x    
size=N/A time=00:00:40.98 bitrate=N/A speed=   1x    
size=N/A time=00:00:40.54 bitrate=N/A speed=   1x    
av_interleaved_write_frame(): Broken pipe

you might want to try these cameras without ffmpeg and see what happens

WeiniGoas commented 8 months ago

I deleted the ffmpeg and the logs seams better. But there are still some unable to read frames and exits. Config:

streams:
    haustuer_high:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.31:554/stream1#video=copy#audio=copy#audio=aac"
    haustuer_low:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.31:554/stream2#video=copy#audio=copy#audio=aac"
    paddock_high:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.32:554/stream1#video=copy#audio=copy#audio=aac"
    paddock_low:
    - "ffmpeg:rtsp://xxxx:xxxx@10.0.2.32:554/stream2#video=copy#audio=copy#audio=aac"
    blackpearl_high:
    - "http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx#video=copy#audio=copy#audio=opus"
    blackpearl_low:
    - "http://10.0.2.33/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx"
    coolcassis_high:
    - "http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx#video=copy#audio=copy#audio=opus"
    coolcassis_low:
    - "http://10.0.2.34/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx"
    sam_high:
    - "http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=xxxx&password=xxxx#video=copy#audio=copy#audio=opus"
    sam_low:
    - "http://10.0.2.35/flv?port=1935&app=bcs&stream=channel0_sub.bcs&user=xxxx&password=xxxx"

2024-02-06 14:29:41.136626321  [INFO] Preparing Frigate...
2024-02-06 14:29:41.483883185  [INFO] Starting Frigate...
2024-02-06 14:29:46.832759763  [2024-02-06 15:29:46] frigate.app                    INFO    : Starting Frigate (0.13.1-34fb1c2)
2024-02-06 14:29:46.833596419  [2024-02-06 15:29:46] frigate.app                    INFO    : Creating directory: /tmp/cache
2024-02-06 14:29:47.080262946  [2024-02-06 15:29:47] peewee_migrate.logs            INFO    : Starting migrations
2024-02-06 14:29:47.095137345  [2024-02-06 15:29:47] peewee_migrate.logs            INFO    : There is nothing to migrate
2024-02-06 14:29:47.115491005  [2024-02-06 15:29:47] frigate.app                    INFO    : Recording process started: 306
2024-02-06 14:29:47.127263685  [2024-02-06 15:29:47] frigate.app                    INFO    : go2rtc process pid: 89
2024-02-06 14:29:47.149365138  [2024-02-06 15:29:47] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 14:29:47.234028553  [2024-02-06 15:29:47] detector.coral                 INFO    : Starting detection process: 316
2024-02-06 14:29:47.239453742  [2024-02-06 15:29:47] frigate.app                    INFO    : Output process started: 318
2024-02-06 14:29:47.245841677  [2024-02-06 15:29:47] frigate.detectors.plugins.edgetpu_tfl INFO    : Attempting to load TPU as usb
2024-02-06 14:29:47.315554232  [2024-02-06 15:29:47] frigate.app                    INFO    : Camera processor started for blackpearl: 326
2024-02-06 14:29:47.338360823  [2024-02-06 15:29:47] frigate.app                    INFO    : Camera processor started for coolcassis: 327
2024-02-06 14:29:47.364261449  [2024-02-06 15:29:47] frigate.app                    INFO    : Camera processor started for sam: 329
2024-02-06 14:29:47.401547130  [2024-02-06 15:29:47] frigate.app                    INFO    : Camera processor started for paddock: 331
2024-02-06 14:29:47.453608544  [2024-02-06 15:29:47] frigate.app                    INFO    : Camera processor started for haustuer: 335
2024-02-06 14:29:47.505610440  [2024-02-06 15:29:47] frigate.app                    INFO    : Capture process started for blackpearl: 337
2024-02-06 14:29:47.567645076  [2024-02-06 15:29:47] frigate.app                    INFO    : Capture process started for coolcassis: 341
2024-02-06 14:29:47.626892082  [2024-02-06 15:29:47] frigate.app                    INFO    : Capture process started for sam: 345
2024-02-06 14:29:47.711998844  [2024-02-06 15:29:47] frigate.app                    INFO    : Capture process started for paddock: 350
2024-02-06 14:29:47.811701137  [2024-02-06 15:29:47] frigate.app                    INFO    : Capture process started for haustuer: 361
2024-02-06 14:29:48.167890885  [2024-02-06 15:29:48] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 14:29:49.996615667  [2024-02-06 15:29:49] frigate.detectors.plugins.edgetpu_tfl INFO    : TPU found
2024-02-06 14:29:50.195029582  [2024-02-06 15:29:50] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 14:29:54.208353177  [2024-02-06 15:29:54] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 14:30:02.258030089  [2024-02-06 15:30:02] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 14:30:07.157324495  [2024-02-06 15:30:07] frigate.record.maintainer      DEBUG   : Found 1 old frames.
2024-02-06 14:30:18.274078696  [2024-02-06 15:30:18] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 14:30:50.287740885  [2024-02-06 15:30:50] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 14:31:07.973002059  [2024-02-06 15:31:07] watchdog.blackpearl            INFO    : No frames received from blackpearl in 20 seconds. Exiting ffmpeg...
2024-02-06 14:31:07.974446447  [2024-02-06 15:31:07] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:31:08.025999702  [2024-02-06 15:31:08] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-06 14:31:08.028865535  [2024-02-06 15:31:08] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-06 14:31:08.049390230  [2024-02-06 15:31:08] watchdog.coolcassis            INFO    : No frames received from coolcassis in 20 seconds. Exiting ffmpeg...
2024-02-06 14:31:08.051846346  [2024-02-06 15:31:08] watchdog.coolcassis            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:31:08.125979196  [2024-02-06 15:31:08] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 14:31:08.126503485  [2024-02-06 15:31:08] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-06 14:31:08.153683353  [2024-02-06 15:31:08] watchdog.sam                   INFO    : No frames received from sam in 20 seconds. Exiting ffmpeg...
2024-02-06 14:31:08.154232791  [2024-02-06 15:31:08] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:31:08.192208407  [2024-02-06 15:31:08] frigate.video                  ERROR   : sam: Unable to read frames from ffmpeg process.
2024-02-06 14:31:08.194710615  [2024-02-06 15:31:08] frigate.video                  ERROR   : sam: ffmpeg process is not running. exiting capture thread...
2024-02-06 14:31:18.031851561  [2024-02-06 15:31:18] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-06 14:31:18.032366832  [2024-02-06 15:31:18] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 14:31:18.130964048  [2024-02-06 15:31:18] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-06 14:31:18.131832241  [2024-02-06 15:31:18] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 14:31:18.197466663  [2024-02-06 15:31:18] watchdog.sam                   ERROR   : Ffmpeg process crashed unexpectedly for sam.
2024-02-06 14:31:18.198024638  [2024-02-06 15:31:18] watchdog.sam                   ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 14:31:54.315081967  [2024-02-06 15:31:54] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 14:32:28.110347543  [2024-02-06 15:32:28] watchdog.blackpearl            INFO    : No frames received from blackpearl in 20 seconds. Exiting ffmpeg...
2024-02-06 14:32:28.110914998  [2024-02-06 15:32:28] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:32:28.162282903  [2024-02-06 15:32:28] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-06 14:32:28.162849433  [2024-02-06 15:32:28] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-06 14:32:28.210014763  [2024-02-06 15:32:28] watchdog.coolcassis            INFO    : No frames received from coolcassis in 20 seconds. Exiting ffmpeg...
2024-02-06 14:32:28.211794870  [2024-02-06 15:32:28] watchdog.coolcassis            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:32:28.237228372  [2024-02-06 15:32:28] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 14:32:28.239173236  [2024-02-06 15:32:28] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 14:32:28.240073798  [2024-02-06 15:32:28] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-06 14:32:28.320382326  [2024-02-06 15:32:28] watchdog.sam                   INFO    : No frames received from sam in 20 seconds. Exiting ffmpeg...
2024-02-06 14:32:28.321234186  [2024-02-06 15:32:28] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:32:28.387747190  [2024-02-06 15:32:28] frigate.video                  ERROR   : sam: Unable to read frames from ffmpeg process.
2024-02-06 14:32:28.389437020  [2024-02-06 15:32:28] frigate.video                  ERROR   : sam: ffmpeg process is not running. exiting capture thread...
2024-02-06 14:32:38.165535896  [2024-02-06 15:32:38] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-06 14:32:38.166728473  [2024-02-06 15:32:38] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 14:32:38.236502435  [2024-02-06 15:32:38] watchdog.blackpearl            ERROR   : No new recording segments were created for blackpearl in the last 120s. restarting the ffmpeg record process...
2024-02-06 14:32:38.237338794  [2024-02-06 15:32:38] watchdog.blackpearl            INFO    : Terminating the existing ffmpeg process...
2024-02-06 14:32:38.238122006  [2024-02-06 15:32:38] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:32:38.243298698  [2024-02-06 15:32:38] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-06 14:32:38.243311328  [2024-02-06 15:32:38] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 14:32:38.324659343  [2024-02-06 15:32:38] watchdog.coolcassis            ERROR   : No new recording segments were created for coolcassis in the last 120s. restarting the ffmpeg record process...
2024-02-06 14:32:38.324675583  [2024-02-06 15:32:38] watchdog.coolcassis            INFO    : Terminating the existing ffmpeg process...
2024-02-06 14:32:38.324678713  [2024-02-06 15:32:38] watchdog.coolcassis            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:32:38.393997940  [2024-02-06 15:32:38] watchdog.sam                   ERROR   : Ffmpeg process crashed unexpectedly for sam.
2024-02-06 14:32:38.394755448  [2024-02-06 15:32:38] watchdog.sam                   ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 14:32:38.532022402  [2024-02-06 15:32:38] watchdog.sam                   ERROR   : No new recording segments were created for sam in the last 120s. restarting the ffmpeg record process...
2024-02-06 14:32:38.532039068  [2024-02-06 15:32:38] watchdog.sam                   INFO    : Terminating the existing ffmpeg process...
2024-02-06 14:32:38.532042272  [2024-02-06 15:32:38] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:33:48.338528003  [2024-02-06 15:33:48] watchdog.blackpearl            INFO    : No frames received from blackpearl in 20 seconds. Exiting ffmpeg...
2024-02-06 14:33:48.340322665  [2024-02-06 15:33:48] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:33:48.426776428  [2024-02-06 15:33:48] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-06 14:33:48.430010627  [2024-02-06 15:33:48] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-06 14:33:48.431357498  [2024-02-06 15:33:48] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-06 14:33:48.432449558  [2024-02-06 15:33:48] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-06 14:33:48.493650391  [2024-02-06 15:33:48] watchdog.coolcassis            INFO    : No frames received from coolcassis in 20 seconds. Exiting ffmpeg...
2024-02-06 14:33:48.496244709  [2024-02-06 15:33:48] watchdog.coolcassis            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:33:48.575170089  [2024-02-06 15:33:48] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 14:33:48.576625644  [2024-02-06 15:33:48] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-06 14:33:48.730728064  [2024-02-06 15:33:48] watchdog.sam                   INFO    : No frames received from sam in 20 seconds. Exiting ffmpeg...
2024-02-06 14:33:48.732325284  [2024-02-06 15:33:48] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:33:48.761244259  [2024-02-06 15:33:48] frigate.video                  ERROR   : sam: Unable to read frames from ffmpeg process.
2024-02-06 14:33:48.762204673  [2024-02-06 15:33:48] frigate.video                  ERROR   : sam: ffmpeg process is not running. exiting capture thread...
2024-02-06 14:33:54.375726157  [2024-02-06 15:33:54] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized
2024-02-06 14:33:58.434916357  [2024-02-06 15:33:58] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-06 14:33:58.434931505  [2024-02-06 15:33:58] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 14:33:58.578747040  [2024-02-06 15:33:58] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-06 14:33:58.579714732  [2024-02-06 15:33:58] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 14:33:58.796350930  [2024-02-06 15:33:58] watchdog.sam                   ERROR   : Ffmpeg process crashed unexpectedly for sam.
2024-02-06 14:33:58.796364263  [2024-02-06 15:33:58] watchdog.sam                   ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 14:35:08.501786660  [2024-02-06 15:35:08] watchdog.blackpearl            INFO    : No frames received from blackpearl in 20 seconds. Exiting ffmpeg...
2024-02-06 14:35:08.502187507  [2024-02-06 15:35:08] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:35:08.551142092  [2024-02-06 15:35:08] frigate.video                  ERROR   : blackpearl: Unable to read frames from ffmpeg process.
2024-02-06 14:35:08.552067821  [2024-02-06 15:35:08] frigate.video                  ERROR   : blackpearl: ffmpeg process is not running. exiting capture thread...
2024-02-06 14:35:08.653722461  [2024-02-06 15:35:08] watchdog.coolcassis            INFO    : No frames received from coolcassis in 20 seconds. Exiting ffmpeg...
2024-02-06 14:35:08.654962482  [2024-02-06 15:35:08] watchdog.coolcassis            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:35:08.687906683  [2024-02-06 15:35:08] frigate.video                  ERROR   : coolcassis: Unable to read frames from ffmpeg process.
2024-02-06 14:35:08.689657475  [2024-02-06 15:35:08] frigate.video                  ERROR   : coolcassis: ffmpeg process is not running. exiting capture thread...
2024-02-06 14:35:08.851216354  [2024-02-06 15:35:08] watchdog.sam                   INFO    : No frames received from sam in 20 seconds. Exiting ffmpeg...
2024-02-06 14:35:08.852779870  [2024-02-06 15:35:08] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:35:08.893587117  [2024-02-06 15:35:08] frigate.video                  ERROR   : sam: Unable to read frames from ffmpeg process.
2024-02-06 14:35:08.895056635  [2024-02-06 15:35:08] frigate.video                  ERROR   : sam: ffmpeg process is not running. exiting capture thread...
2024-02-06 14:35:18.582259865  [2024-02-06 15:35:18] watchdog.blackpearl            ERROR   : Ffmpeg process crashed unexpectedly for blackpearl.
2024-02-06 14:35:18.582780858  [2024-02-06 15:35:18] watchdog.blackpearl            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 14:35:18.695329671  [2024-02-06 15:35:18] watchdog.coolcassis            ERROR   : Ffmpeg process crashed unexpectedly for coolcassis.
2024-02-06 14:35:18.714550810  [2024-02-06 15:35:18] watchdog.coolcassis            ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 14:35:18.898456158  [2024-02-06 15:35:18] watchdog.sam                   ERROR   : Ffmpeg process crashed unexpectedly for sam.
2024-02-06 14:35:18.925414270  [2024-02-06 15:35:18] watchdog.sam                   ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2024-02-06 14:35:28.615255839  [2024-02-06 15:35:28] watchdog.blackpearl            ERROR   : No new recording segments were created for blackpearl in the last 120s. restarting the ffmpeg record process...
2024-02-06 14:35:28.616464509  [2024-02-06 15:35:28] watchdog.blackpearl            INFO    : Terminating the existing ffmpeg process...
2024-02-06 14:35:28.616478101  [2024-02-06 15:35:28] watchdog.blackpearl            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:35:28.745997749  [2024-02-06 15:35:28] watchdog.coolcassis            ERROR   : No new recording segments were created for coolcassis in the last 120s. restarting the ffmpeg record process...
2024-02-06 14:35:28.746310301  [2024-02-06 15:35:28] watchdog.coolcassis            INFO    : Terminating the existing ffmpeg process...
2024-02-06 14:35:28.747501544  [2024-02-06 15:35:28] watchdog.coolcassis            INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:35:28.959303547  [2024-02-06 15:35:28] watchdog.sam                   ERROR   : No new recording segments were created for sam in the last 120s. restarting the ffmpeg record process...
2024-02-06 14:35:28.960403366  [2024-02-06 15:35:28] watchdog.sam                   INFO    : Terminating the existing ffmpeg process...
2024-02-06 14:35:28.970596697  [2024-02-06 15:35:28] watchdog.sam                   INFO    : Waiting for ffmpeg to exit gracefully...
2024-02-06 14:35:54.394013703  [2024-02-06 15:35:54] frigate.comms.mqtt             ERROR   : Unable to connect to MQTT server: MQTT Not authorized

2024-02-06 14:29:41.457607731  [INFO] Preparing new go2rtc config...
2024-02-06 14:29:41.602062552  [INFO] Got IP address from supervisor: 10.0.1.7
2024-02-06 14:29:41.745955214  [INFO] Got WebRTC port from supervisor: 8555
2024-02-06 14:29:42.646172113  [INFO] Not injecting WebRTC candidates into go2rtc config as it has been set manually
2024-02-06 14:29:42.805197134  [INFO] Starting go2rtc...
2024-02-06 14:29:43.007427350  15:29:43.007 INF go2rtc version 1.8.4 linux/arm64
2024-02-06 14:29:43.009960280  15:29:43.009 INF [rtsp] listen addr=:8554
2024-02-06 14:29:43.011433372  15:29:43.009 INF [api] listen addr=:1984
2024-02-06 14:29:43.012581413  15:29:43.011 INF [webrtc] listen addr=:8555
2024-02-06 14:29:48.822018898  15:29:48.821 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.31:554/stream1 -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 aac -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:29:49.456662221  15:29:49.456 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.32:554/stream2 -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 aac -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:29:49.796491275  15:29:49.796 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.32:554/stream1 -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 aac -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:29:49.798900243  15:29:49.798 DBG [exec] run url="exec:ffmpeg -hide_banner -allowed_media_types video+audio -fflags nobuffer -flags low_delay -stimeout 5000000 -user_agent go2rtc/ffmpeg -rtsp_transport tcp -i rtsp://xxxx:xxxx@10.0.2.31:554/stream2 -map 0:v:0? -c:v:0 copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 aac -user_agent ffmpeg/go2rtc -rtsp_transport tcp -f rtsp {output}"
2024-02-06 14:29:51.143914162  [INFO] Starting go2rtc healthcheck service...
2024-02-06 14:29:51.462048369  Guessed Channel Layout for Input Stream #0.1 : mono
2024-02-06 14:29:51.462489474  Input #0, rtsp, from 'rtsp://xxxx:xxxx@10.0.2.31:554/stream1':
2024-02-06 14:29:51.462668138    Metadata:
2024-02-06 14:29:51.462812025      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:29:51.462942931      comment         : stream1
2024-02-06 14:29:51.463283741    Duration: N/A, start: 0.000000, bitrate: N/A
2024-02-06 14:29:51.463814845      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 1920x1080, 15 fps, 28.58 tbr, 90k tbn, 30 tbc
2024-02-06 14:29:51.464157637      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:29:51.465606155  Stream mapping:
2024-02-06 14:29:51.465948318    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:29:51.466092649    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:29:51.466278387    Stream #0:1 -> #0:2 (pcm_alaw (native) -> aac (native))
2024-02-06 14:29:51.466369775  Press [q] to stop, [?] for help
2024-02-06 14:29:51.486398273  [aac @ 0x5567573b00] Too many bits 8832.000000 > 6144 per frame requested, clamping to max
2024-02-06 14:29:51.546602193  15:29:51.545 DBG [exec] run launch=2.723801027s
2024-02-06 14:29:51.547649309  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/7fd26a7452b11973be9cba9fce3d1260':
2024-02-06 14:29:51.547791659    Metadata:
2024-02-06 14:29:51.548580945      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:29:51.548800016      comment         : stream1
2024-02-06 14:29:51.548957532      encoder         : Lavf58.45.100
2024-02-06 14:29:51.549809262      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 1920x1080, q=2-31, 15 fps, 28.58 tbr, 90k tbn, 15 tbc
2024-02-06 14:29:51.550820101      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:29:51.551672330      Stream #0:2: Audio: aac (LC), 8000 Hz, mono, fltp, 48 kb/s
2024-02-06 14:29:51.551821273      Metadata:
2024-02-06 14:29:51.552006678        encoder         : Lavc58.91.100 aac
2024-02-06 14:29:52.060746604  frame=    6 fps=0.0 q=-1.0 size=N/A time=00:00:02.45 bitrate=N/A speed=4.61x    
[rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19453, current: -80833; changing to 19454. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.101521518  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19454, current: -80517; changing to 19455. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.130594842  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19455, current: -80277; changing to 19456. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.155022932  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19456, current: -80080; changing to 19457. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.188493866  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19457, current: -79863; changing to 19458. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.219563961  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19458, current: -79569; changing to 19459. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.219824939  [aac @ 0x5567573b00] Queue input is backward in time
2024-02-06 14:29:52.244257213  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19459, current: -79373; changing to 19460. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.275234513  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19460, current: -79119; changing to 19461. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.307439983  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19461, current: -78864; changing to 19462. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.354905160  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19462, current: -78482; changing to 19463. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.374523516  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19463, current: -78324; changing to 19464. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.381850995  Guessed Channel Layout for Input Stream #0.1 : mono
2024-02-06 14:29:52.381864402  Input #0, rtsp, from 'rtsp://xxxx:xxxx@10.0.2.31:554/stream2':
2024-02-06 14:29:52.381866309    Metadata:
2024-02-06 14:29:52.381964141      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:29:52.381968104      comment         : stream2
2024-02-06 14:29:52.382135287    Duration: N/A, start: 0.000000, bitrate: N/A
2024-02-06 14:29:52.382587244      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 640x360, 15 fps, 28.58 tbr, 90k tbn, 30 tbc
2024-02-06 14:29:52.382812982      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:29:52.385103489  Stream mapping:
2024-02-06 14:29:52.385116304    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:29:52.385117915    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:29:52.385119822    Stream #0:1 -> #0:2 (pcm_alaw (native) -> aac (native))
2024-02-06 14:29:52.385121341  Press [q] to stop, [?] for help
2024-02-06 14:29:52.409732205  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19464, current: -78044; changing to 19465. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.413765579  [aac @ 0x5576b94390] Too many bits 8832.000000 > 6144 per frame requested, clamping to max
2024-02-06 14:29:52.437709767  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19465, current: -77839; changing to 19466. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.470022975  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19466, current: -77577; changing to 19467. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.473196619  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:2; previous: 19259, current: -80277; changing to 19260. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.476238191  15:29:52.475 DBG [exec] run launch=2.67756087s
2024-02-06 14:29:52.477552822  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/bf709ecc95a6058fcc114dc335e82ae9':
2024-02-06 14:29:52.477562636    Metadata:
2024-02-06 14:29:52.477607654      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:29:52.477610191      comment         : stream2
2024-02-06 14:29:52.477612080      encoder         : Lavf58.45.100
2024-02-06 14:29:52.478259053      Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 640x360, q=2-31, 15 fps, 28.58 tbr, 90k tbn, 15 tbc
2024-02-06 14:29:52.478270053      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:29:52.478822675      Stream #0:2: Audio: aac (LC), 8000 Hz, mono, fltp, 48 kb/s
2024-02-06 14:29:52.478831231      Metadata:
2024-02-06 14:29:52.478873304        encoder         : Lavc58.91.100 aac
2024-02-06 14:29:52.495470051  Guessed Channel Layout for Input Stream #0.1 : mono
2024-02-06 14:29:52.495528550  Input #0, rtsp, from 'rtsp://xxxx:xxxx@10.0.2.32:554/stream1':
2024-02-06 14:29:52.495530532    Metadata:
2024-02-06 14:29:52.495532643      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:29:52.496112432      comment         : stream2
2024-02-06 14:29:52.496122246    Duration: N/A, start: 0.000000, bitrate: N/A
2024-02-06 14:29:52.496125524      Stream #0:0: Video: h264 (Main), yuvj420p(pc, progressive), 2304x1296, 15 fps, 15 tbr, 90k tbn, 30 tbc
2024-02-06 14:29:52.496127987      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:29:52.498026018  Stream mapping:
2024-02-06 14:29:52.498040277    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:29:52.498109757    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:29:52.498114331    Stream #0:1 -> #0:2 (pcm_alaw (native) -> aac (native))
2024-02-06 14:29:52.498116776  Press [q] to stop, [?] for help
2024-02-06 14:29:52.502344313  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19467, current: -77318; changing to 19468. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.536168169  frame=   13 fps= 13 q=-1.0 size=N/A time=00:00:02.94 bitrate=N/A speed=2.84x    
[rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19468, current: -77029; changing to 19469. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.550752923  [aac @ 0x558ba48b30] Too many bits 8832.000000 > 6144 per frame requested, clamping to max
2024-02-06 14:29:52.564190600  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19469, current: -76806; changing to 19470. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.598016215  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19470, current: -76563; changing to 19471. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.604714257  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:2; previous: 19260, current: -79373; changing to 19261. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.610959768  15:29:52.610 DBG [exec] run launch=2.814335514s
2024-02-06 14:29:52.611923034  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/74c1a83fbb4cb67edefc982030879205':
2024-02-06 14:29:52.611933274    Metadata:
2024-02-06 14:29:52.612107198      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:29:52.612111161      comment         : stream2
2024-02-06 14:29:52.612113605      encoder         : Lavf58.45.100
2024-02-06 14:29:52.613234424      Stream #0:0: Video: h264 (Main), yuvj420p(pc, progressive), 2304x1296, q=2-31, 15 fps, 15 tbr, 90k tbn, 15 tbc
2024-02-06 14:29:52.614036377      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:29:52.614506019      Stream #0:2: Audio: aac (LC), 8000 Hz, mono, fltp, 48 kb/s
2024-02-06 14:29:52.614512000      Metadata:
2024-02-06 14:29:52.614626110        encoder         : Lavc58.91.100 aac
2024-02-06 14:29:52.630290405  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19471, current: -76300; changing to 19472. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.663429066  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19472, current: -76010; changing to 19473. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.700141495  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19473, current: -75771; changing to 19474. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.721585753  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19474, current: -75546; changing to 19475. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.728972657  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:2; previous: 19261, current: -78324; changing to 19262. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.755369257  Guessed Channel Layout for Input Stream #0.1 : mono
2024-02-06 14:29:52.755387757  Input #0, rtsp, from 'rtsp://xxxx:xxxx@10.0.2.32:554/stream2':
2024-02-06 14:29:52.755488070    Metadata:
2024-02-06 14:29:52.755495404      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:29:52.756014638      comment         : stream2
2024-02-06 14:29:52.756889830    Duration: N/A, start: 0.000000, bitrate: N/A
2024-02-06 14:29:52.758156554      Stream #0:0: Video: h264 (Main), yuvj420p(pc, progressive), 640x360, 15 fps, 15.08 tbr, 90k tbn, 30 tbc
2024-02-06 14:29:52.758179202      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:29:52.761746619  Stream mapping:
2024-02-06 14:29:52.761763544    Stream #0:0 -> #0:0 (copy)
2024-02-06 14:29:52.761858173    Stream #0:1 -> #0:1 (copy)
2024-02-06 14:29:52.761865932    Stream #0:1 -> #0:2 (pcm_alaw (native) -> aac (native))
2024-02-06 14:29:52.761870710  Press [q] to stop, [?] for help
2024-02-06 14:29:52.763451022  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19475, current: -75222; changing to 19476. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.791150921  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19476, current: -74995; changing to 19477. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.829669789  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19477, current: -74771; changing to 19478. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.831452470  [aac @ 0x5591855960] Too many bits 8832.000000 > 6144 per frame requested, clamping to max
2024-02-06 14:29:52.855333603  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19478, current: -74483; changing to 19479. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.862505398  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:2; previous: 19262, current: -77318; changing to 19263. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.882081254  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19479, current: -74263; changing to 19480. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.895298304  15:29:52.895 DBG [exec] run launch=3.438428141s
2024-02-06 14:29:52.896019017  Output #0, rtsp, to 'rtsp://127.0.0.1:8554/d8374c1c15ebd2f433372db483f1a6f5':
2024-02-06 14:29:52.896031980    Metadata:
2024-02-06 14:29:52.896320013      title           : Session streamed by "TP-LINK RTSP Server"
2024-02-06 14:29:52.896330143      comment         : stream2
2024-02-06 14:29:52.896334791      encoder         : Lavf58.45.100
2024-02-06 14:29:52.896342031      Stream #0:0: Video: h264 (Main), yuvj420p(pc, progressive), 640x360, q=2-31, 15 fps, 15.08 tbr, 90k tbn, 15 tbc
2024-02-06 14:29:52.896565584      Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
2024-02-06 14:29:52.896576843      Stream #0:2: Audio: aac (LC), 8000 Hz, mono, fltp, 48 kb/s
2024-02-06 14:29:52.896580047      Metadata:
2024-02-06 14:29:52.897011282        encoder         : Lavc58.91.100 aac
2024-02-06 14:29:52.915277581  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19480, current: -73999; changing to 19481. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.948499259  frame=    5 fps=0.0 q=-1.0 size=N/A time=00:00:02.55 bitrate=N/A speed=4.93x    
[rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19481, current: -73732; changing to 19482. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.980172272  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19482, current: -73479; changing to 19483. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:52.982241079  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:2; previous: 19263, current: -76300; changing to 19264. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.010545136  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19483, current: -73236; changing to 19484. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.051572842  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19484, current: -72965; changing to 19485. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.076532887  frame=   20 fps= 13 q=-1.0 size=N/A time=00:00:03.43 bitrate=N/A speed=2.22x    
[rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19485, current: -72705; changing to 19486. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.112917987  frame=    0 fps=0.0 q=-1.0 size=N/A time=00:00:01.67 bitrate=N/A speed=3.18x    
[rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19486, current: -72419; changing to 19487. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.117384892  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:2; previous: 19264, current: -75222; changing to 19265. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.142382788  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19487, current: -72202; changing to 19488. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.176172478  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19488, current: -71909; changing to 19489. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.177792642  [rtsp @ 0x5576b919f0] Non-monotonous DTS in output stream 0:1; previous: 22232, current: -79188; changing to 22233. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.219273175  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19489, current: -71568; changing to 19490. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.220464049  [rtsp @ 0x5576b919f0] Non-monotonous DTS in output stream 0:1; previous: 22233, current: -78847; changing to 22234. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.234712289  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19490, current: -71439; changing to 19491. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.236111123  [rtsp @ 0x5576b919f0] [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:2; previous: 19265, current: -74263; changing to 19266. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.237311385  Non-monotonous DTS in output stream 0:1; previous: 22234, current: -78718; changing to 22235. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.270245326  [rtsp @ 0x5567570da0] Non-monotonous DTS in output stream 0:1; previous: 19491, current: -71159; changing to 19492. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.271948489  [rtsp @ 0x5576b919f0] Non-monotonous DTS in output stream 0:1; previous: 22235, current: -78438; changing to 22236. This may result in incorrect timestamps in the output file.
2024-02-06 14:29:53.272432501  [aac @ 0x5576b94390] Queue input is backward in time
NickM-27 commented 8 months ago

Might need to look at updating reolink firmware

WeiniGoas commented 8 months ago

There are no updates available for TP Link or Reolink either.

NickM-27 commented 8 months ago

If you check the reolink download center or the reolink firmware GitHub there is most likely newer firmware

WeiniGoas commented 8 months ago

Hi, there are no firmware updates availiable on there download center or github.

github-actions[bot] commented 7 months ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.