frigate icon indicating copy to clipboard operation
frigate copied to clipboard

[Support]: tmpfs keeps filling up

Open Dougiebabe opened this issue 2 years ago • 25 comments

Describe the problem you are having

It seems that Frigate will stop working after a random amount of time, the logs will complain of:

ERROR : Could not write header for output file #0 (incorrect codec parameters ?): No space left on device'.

But the actual drive that it is saving to has space. I have consoled onto the docker container and found this when running df -h

root:/opt/frigate# df -h
Filesystem                         Size  Used Avail Use% Mounted on
overlay                             36G   14G   21G  40% /
tmpfs                               64M     0   64M   0% /dev
shm                                128M  6.0M  123M   5% /dev/shm
/dev/mapper/ubuntu--vg-ubuntu--lv   36G   14G   21G  40% /db
//192.168.1.248/cctv               1.9T  1.7T  175G  91% /media/frigate
tmpfs                              954M  954M     0 100% /tmp/cache

So it looks like the tmpfs is filling up. Resetting the docker container is normally enough to bring it back online and the tmpfs will sit around 5% used UNTIL there is an issue.

If I understand correctly, the tmpfs is a RAM drive and used to reduce wear, the files get saved there and then removed if not needed?

I haven't been able to pin down if there is something specific that causes the tmpfs to stop emptying itself but it seems to happen at random times, sometime a day, sometimes a week.

This seems to have started when I did two things, I migrated to a new device and upgraded to the newest version of Frigate.

My setup is:

Host: Intel(R) Pentium(R) Gold 7505 @ 2.00GHz 32GB RAM Proxmox

VM: Ubuntu VM 2 x vCPU 4GB RAM USB Passthrough for coral (Entire PCI Device) GPU Passthrough

I did have an issue with the Coral when only passing through the device but since passing through the whole USB PCI Device it seems to be stable. GPU Passthrough seems to be functioning correctly and intel_gpu_top shows activity on the Video encoder

This is what I am greeted to when going to the website once it has happened image

Version

0.11.1-2EADA21

Frigate config file

database:
    path: /db/frigate.db
mqtt:
    host: REDACTED
    user: REDACTED
    password: REDACTED
detectors:
    coral:
        type: edgetpu
        device: usb
ffmpeg:
    output_args:
        record: -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy
    hwaccel_args:
        -c:v h264_qsv
        #- -hwaccel
        #- vaapi
        #- -hwaccel_device
        #- /dev/dri/renderD128
        #- -hwaccel_output_format
        #- yuv420p
detect:
    stationary:
        interval: 50
objects:
    track:
        - person
        - cat
        - dog
    filters:
        person:
            min_area: 5000
            max_area: 8000000
            threshold: 0.80
record:
    events:
        pre_capture: 7
        post_capture: 10
cameras:
    Back_left: # <------ Name the camera
        ffmpeg:
            inputs:
                - path: rtsp://REDACTED/Streaming/Channels/103/ # <----- Update for your camera
                  roles:
                    - detect
                    - rtmp
                - path: rtsp://REDACTED/Streaming/Channels/101/
                  roles:
                    - record
                   # - detect
                    #- rtmp
        rtmp:
            enabled: False # <-- RTMP should be disabled if your stream is not H264
        detect:
            width: 1280 # <---- update for your camera's resolution
            height: 720 # <---- update for your camera's resolution
            #width: 2688
            #height: 1520
        record:
            enabled: True
           # retain:
           #     days: 1
           #     mode: all
            events:
                retain:
                    mode: active_objects
                    default: 10
        snapshots:
            enabled: True
            retain:
                default: 10
        mqtt:
            height: 1000
            quality: 100
    #720p zones
        zones:
            patio:
                coordinates: 0,720,1280,720,1280,260,1037,111,1002,187,801,184,727,160,710,218,521,242,516,164,417,204,105,253,83,164,0,218
            garden:
                coordinates: 375,0,385,142,332,151,328,214,520,228,709,209,814,180,939,185,954,113,608,0
            path_shed:
                coordinates: 388,149,376,0,307,0,182,0,158,117,122,250,264,229,328,216,324,162
    #4mp zones
       #zones:
       #    garden:
       #        coordinates: 809,300,679,313,682,459,932,429,932,290,1074,276,1092,379,1080,501,1225,483,1511,466,1536,271,1619,271,1694,303,1678,378,2049,394,2105,208,1892,186,1310,0,826,0
       #    path_shed:
       #        coordinates: 801,295,807,0,478,0,386,130,300,233,185,211,215,534,694,446,689,315
       #    patio:
       #        coordinates: 0,1520,0,404,216,549,925,409,930,275,1092,283,1087,493,1496,451,1543,260,1691,301,1679,376,2064,389,2104,195,2688,561,2688,1520
       #motion:
       #    mask:
       #        - 2160,201,1887,178,1337,0,2688,0,2688,543
       #        - 206,208,295,245,446,75,807,60,797,0,0,0,0,376
    Crib:
        ffmpeg:
            output_args:
                record: -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an
            inputs:
                - path: rtsp://REDACTED/stream1
                  roles:
                    - record
                  #  - detect
                - path: rtsp://REDACTED/stream2
                  roles:
                  #  - record
                    - detect
        rtmp:
            enabled: False # <-- RTMP should be disabled if your stream is not H264
        detect:
          width: 640
          height: 360
        record:
            enabled: True
            events:
                retain:
                    mode: active_objects
                    default: 10
        snapshots:
            enabled: True
            retain:
                default: 10
        mqtt:
            height: 1000
            quality: 100

Relevant log output

[2022-12-13 09:55:43] ffmpeg.Crib.record             ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): No space left on device
[2022-12-13 10:28:14] watchdog.Crib                  INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-13 10:28:02] ffmpeg.Back_left.record        ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): No space left on device
[2022-12-13 10:28:02] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-13 10:28:02] ffmpeg.Back_left.record        ERROR   : 
[2022-12-13 10:28:02] ffmpeg.Back_left.record        ERROR   : Error initializing output stream 0:1 -- 
[2022-12-13 10:28:02] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-13 10:28:04] ffmpeg.Crib.record             ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): No space left on device
[2022-12-13 10:28:04] ffmpeg.Crib.record             ERROR   : Error initializing output stream 0:0 -- 
[2022-12-13 10:28:04] ffmpeg.Crib.record             ERROR   : 
[2022-12-13 10:28:04] watchdog.Crib                  INFO    : Terminating the existing ffmpeg process...
[2022-12-13 10:28:04] watchdog.Crib                  INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-13 10:28:12] ffmpeg.Back_left.record        ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): No space left on device
[2022-12-13 10:28:12] ffmpeg.Back_left.record        ERROR   : Error initializing output stream 0:1 -- 
[2022-12-13 10:28:12] ffmpeg.Back_left.record        ERROR   : 
[2022-12-13 10:28:12] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-13 10:28:12] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-13 10:28:14] ffmpeg.Crib.record             ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): No space left on device
[2022-12-13 10:28:14] ffmpeg.Crib.record             ERROR   : Error initializing output stream 0:0 -- 
[2022-12-13 10:28:14] ffmpeg.Crib.record             ERROR   : 
[2022-12-13 10:28:14] watchdog.Crib                  INFO    : Terminating the existing ffmpeg process...

FFprobe output from your camera

Metadata:
    title           : Media Presentation
  Duration: N/A, start: 0.040000, bitrate: N/A
  Stream #0:0: Video: h264 (Main), yuvj420p(pc, bt709, progressive), 1280x720, 6 fps, 25 tbr, 90k tbn
  Metadata:
    title           : Media Presentation
  Duration: N/A, start: 0.000000, bitrate: N/A
  Stream #0:0: Video: h264 (Main), yuvj420p(pc, bt709, progressive), 2688x1520, 15 fps, 25 tbr, 90k tbn
  Stream #0:1: Audio: aac (LC), 48000 Hz, stereo, fltp

 Metadata:
    title           : Session streamed by "TP-LINK RTSP Server"
    comment         : stream2
  Duration: N/A, start: 0.000000, bitrate: N/A
  Stream #0:0: Video: h264 (Main), yuv420p(progressive), 2304x1296, 15 fps, 14.92 tbr, 90k tbn
  Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s

 Metadata:
    title           : Session streamed by "TP-LINK RTSP Server"
    comment         : stream2
  Duration: N/A, start: 0.000000, bitrate: N/A
  Stream #0:0: Video: h264 (Main), yuv420p(progressive), 640x360, 20 fps, 20.08 tbr, 90k tbn
  Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s

Frigate stats

{"Back_left":{"camera_fps":5.1,"capture_pid":218,"detection_fps":0.0,"pid":215,"process_fps":5.1,"skipped_fps":0.0},"Crib":{"camera_fps":5.1,"capture_pid":223,"detection_fps":0.0,"pid":216,"process_fps":5.1,"skipped_fps":0.0},"detection_fps":0.0,"detectors":{"coral":{"detection_start":0.0,"inference_speed":8.63,"pid":212}},"service":{"latest_version":"0.11.1","storage":{"/dev/shm":{"free":131.4,"mount_type":"tmpfs","total":134.2,"used":2.8},"/media/frigate/clips":{"free":187127.5,"mount_type":"cifs","total":2000397.9,"used":1813270.4},"/media/frigate/recordings":{"free":187127.5,"mount_type":"cifs","total":2000397.9,"used":1813270.4},"/tmp/cache":{"free":963.9,"mount_type":"tmpfs","total":1000.0,"used":36.1}},"temperatures":{},"uptime":54,"version":"0.11.1-2eada21"}}

Operating system

Other Linux

Install method

Docker Compose

Coral version

USB

Network connection

Wired

Camera make and model

Hikvision DS-2CD2347G2-LU - Tapo C210

Any other information that may be helpful

No response

Dougiebabe avatar Dec 13 '22 12:12 Dougiebabe

64MB for tmpfs is not enough. Any time you download a clip (HA does this when viewing too) it uses tmpfs to create the clip. Odds are the clip is too big and filling it

NickM-27 avatar Dec 13 '22 13:12 NickM-27

I thought I set it to 1gb, the df -h shows 954MB used?

version: "3.9"
services:
  frigate:
    container_name: frigate
    privileged: true # this may not be necessary for all setups
    restart: unless-stopped
    image: blakeblackshear/frigate:stable
    shm_size: "128mb" # update for your cameras based on calculation above
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - /opt/frigate/config.yml:/config/config.yml:ro
      - /opt/frigate/nasstorage:/media/frigate
      - /opt/frigate/storage:/db
      - type: tmpfs
        target: /tmp/cache
        tmpfs:
          size: 1000000000

Here is my docker compose file where I thought it was set 1gb as well

Dougiebabe avatar Dec 13 '22 14:12 Dougiebabe

Oh my bad, was on mobile and read the wrong one. This could still be due to downloading a large amount of clips in a short period of time, but does seem less likely.

Unfortunately, the only way to really understand what happened is to catch it after it happens and either get a shell in frigate or in the host run ls /tmp/cache/frigate

NickM-27 avatar Dec 13 '22 15:12 NickM-27

/opt/frigate# df -h
Filesystem                         Size  Used Avail Use% Mounted on
overlay                             36G   14G   21G  40% /
tmpfs                               64M     0   64M   0% /dev
shm                                128M  2.7M  126M   3% /dev/shm
/dev/mapper/ubuntu--vg-ubuntu--lv   36G   14G   21G  40% /db
//192.168.1.248/cctv               1.9T  1.7T  175G  91% /media/frigate
tmpfs                              954M   39M  916M   5% /tmp/cache

Here is the df -h now, this is after a reset and the /tmp/cache is showing 5% used, as it normally does

Dougiebabe avatar Dec 13 '22 15:12 Dougiebabe

Oh my bad, was on mobile and read the wrong one. This could still be due to downloading a large amount of clips in a short period of time, but does seem less likely.

Unfortunately, the only way to really understand what happened is to catch it after it happens and either get a shell in frigate or in the host run ls /tmp/cache/frigate

No worries, I don't often use github so didn't format the first df -h command, have fixed that now.

All of the commands run are via the shell in frigate via portainer. I did run the ls /tmp/cache earlier when issue was happening and it just looks like a load of videos from both cameras. From what I could tell the videos went back around 3 hours but there were more recent videos from the time (10am), I didn't take a screenshot or copy of the folder contents though.

When you say downloading a large amount of clips, could playing them back in the web interface cause this? Would it be worth increasing the size to 2gb?

Dougiebabe avatar Dec 13 '22 15:12 Dougiebabe

A screenshot or copy of the entire listing would be necessary to really understand what is going on

When you say downloading a large amount of clips, could playing them back in the web interface cause this? Would it be worth increasing the size to 2gb?

Playing back in frigate webUI uses HLS and does not put anything in /tmp/cache. However, Home assistant playback (whether media player or frigate card) does use the downloaded mp4

NickM-27 avatar Dec 13 '22 15:12 NickM-27

A screenshot or copy of the entire listing would be necessary to really understand what is going on

When you say downloading a large amount of clips, could playing them back in the web interface cause this? Would it be worth increasing the size to 2gb?

Playing back in frigate webUI uses HLS and does not put anything in /tmp/cache. However, Home assistant playback (whether media player or frigate card) does use the downloaded mp4

Ahhh, we have the crib camera as a picture(?) card on the front dashboard and as a widget on our phones and I remember watching that via HA this morning when the baby woke up, but that is for live viewing, not watching clips back.

Is live viewing classed as playback or is it just clips?

Dougiebabe avatar Dec 13 '22 15:12 Dougiebabe

live viewing just uses the camera directly, so that is not it either.

NickM-27 avatar Dec 13 '22 15:12 NickM-27

I'm having the exact same problem. Here's some info on my end, maybe it will help with troubleshooting.

This is the overall RAM usage spike (~98% of 4GB RAM total for the host) at the precise moment:

image

Here's (one of) the relevant frigate log excerpts:

[2022-12-13 12:53:47] ffmpeg.terrace_reolink.record_rtmp ERROR : av_interleaved_write_frame(): No space left on device [2022-12-13 12:53:47] ffmpeg.terrace_reolink.record_rtmp ERROR : [segment @ 0x5615f16e39c0] Failure occurred when ending segment '/tmp/cache/terrace_reolink-20221213125330.mp4' [2022-12-13 12:53:47] ffmpeg.terrace_reolink.record_rtmp ERROR : Error writing trailer of /tmp/cache/terrace_reolink-%Y%m%d%H%M%S.mp4: No space left on device [2022-12-13 12:53:47] ffmpeg.terrace_reolink.record_rtmp ERROR : [flv @ 0x5615f1d730c0] Failed to update header with correct duration. [2022-12-13 12:53:47] ffmpeg.terrace_reolink.record_rtmp ERROR : [flv @ 0x5615f1d730c0] Failed to update header with correct filesize. [2022-12-13 12:53:47] watchdog.terrace_reolink INFO : Terminating the existing ffmpeg process... [2022-12-13 12:53:47] watchdog.terrace_reolink INFO : Waiting for ffmpeg to exit gracefully...

And this is my tmpfs allocation:

image

dedepene avatar Dec 15 '22 07:12 dedepene

@dedepene looks like rtmp is crashing your record process. You should disable rtmp

rtmp:
  enabled: false

NickM-27 avatar Dec 15 '22 12:12 NickM-27

Just noticed it has happened again, webpage won't load with white screen and spinning wheel in the middle.

Have tried going back and looking at logs looking for the first time it complains about being out of space and looks like it is around 4:50am this morning. There are some errors in the logs that seem to repeat about one of my cameras (Back_Left) going offline and coming online but that seems to repeat often.

Below are: Around 50 mins of logs before it started to report no space left, after which the logs just repeat the same message about no space. df -h output ls /tmp/cache output

let me know if you need any more info as I will leave it in this state for now. Getting logs before 4am will take a while as I had to go back 22k lines to get there!

[2022-12-15 04:00:27] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:00:29] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:00:29] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:00:29] ffmpeg.Back_left.record        ERROR   : [segment @ 0x5587aacfe200] 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
[2022-12-15 04:00:29] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:00:29] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:00:29] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:00:39] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:00:39] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:00:39] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:00:39] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:00:39] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:00:39] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x560594a1a900] A decode call did not consume any data: expect more data at input (-10)
[2022-12-15 04:01:19] ffmpeg.Back_left.record        ERROR   : [segment @ 0x56383771dc00] 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
[2022-12-15 04:01:19] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:01:19] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:01:19] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:01:49] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:01:49] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:01:49] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:01:49] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:01:49] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:01:49] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:01:49] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:01:49] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:01:49] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:01:49] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:01:49] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:01:49] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:01:49] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:01:49] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55f86ecd52c0] A decode call did not consume any data: expect more data at input (-10)
[2022-12-15 04:01:49] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 2 times
[2022-12-15 04:02:09] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55806a699b40] 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
[2022-12-15 04:02:09] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:02:09] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:02:09] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:02:59] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:02:59] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:02:59] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:02:59] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:02:59] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:02:59] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:02:59] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:02:59] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:02:59] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x557a7b0a17c0] A decode call did not consume any data: expect more data at input (-10)
[2022-12-15 04:02:59] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 2 times
[2022-12-15 04:02:59] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55fbba74de00] DTS discontinuity in stream 1: packet 3 with DTS 80211692638714, packet 4 with DTS 80211692642052
[2022-12-15 04:02:59] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55fbba76b480] 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
[2022-12-15 04:02:59] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:02:59] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:02:59] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:03:49] ffmpeg.Back_left.record        ERROR   : [segment @ 0x5565b7dea900] 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
[2022-12-15 04:03:49] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:03:49] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:03:49] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:03:59] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:03:59] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:04:05] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:04:05] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:04:05] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:04:05] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:04:05] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:04:15] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:04:15] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:04:15] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:04:15] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 3 times
[2022-12-15 04:04:45] ffmpeg.Back_left.record        ERROR   : [segment @ 0x5619a2bc8dc0] 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
[2022-12-15 04:04:45] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:04:45] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:04:45] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:05:15] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:05:15] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:05:20] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:05:30] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:05:30] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:05:30] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:05:30] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:05:30] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55b0ae5a2b40] 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
[2022-12-15 04:05:30] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:05:30] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:05:30] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:06:20] ffmpeg.Back_left.record        ERROR   : [segment @ 0x5615f7388900] 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
[2022-12-15 04:06:20] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:06:20] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:06:20] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:06:40] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:06:40] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:06:42] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:06:42] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:06:42] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:06:52] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:06:52] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:06:52] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:06:52] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:06:52] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:06:52] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55cda7ee2240] A decode call did not consume any data: expect more data at input (-10)
[2022-12-15 04:07:12] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55bf11b44700] 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
[2022-12-15 04:07:12] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:07:12] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:07:12] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:07:52] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:07:52] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:07:58] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:07:58] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:08:08] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:08:08] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:08:08] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:08:08] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 3 times
[2022-12-15 04:08:08] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55d0cbf9cb40] 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
[2022-12-15 04:08:08] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:08:08] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:08:08] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:09:18] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:09:18] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:09:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:09:20] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:09:30] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:09:30] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:09:30] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:09:30] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 3 times
[2022-12-15 04:09:30] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55e5a87d9480] 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
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Undefined type (30)
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [NULL @ 0x55e5a87c1180] illegal POC type 5
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Error parsing AU headers
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   :     Last message repeated 1 times
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 26 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [NULL @ 0x55e5a87c1180] SEI type 221 size 1760 truncated at 968
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 29 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [NULL @ 0x55e5a87c1180] FMO is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] nal size exceeds length: 18388 1425
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Undefined type (30)
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Undefined type (31)
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Error parsing AU headers
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [NULL @ 0x55e5a87c1180] too many reference frames 32
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 29 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Undefined type (31)
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   :     Last message repeated 1 times
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] nal size exceeds length: 21178 1425
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Error parsing AU headers
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] nal size exceeds length: 58606 1425
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [NULL @ 0x55e5a87c1180] missing picture in access unit with size 1432
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 27 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [NULL @ 0x55e5a87c1180] illegal POC type 5
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [NULL @ 0x55e5a87c1180] missing picture in access unit with size 1432
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] nal size exceeds length: 13575 1425
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 29 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 29 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [NULL @ 0x55e5a87c1180] illegal memory management control operation 32
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [NULL @ 0x55e5a87c1180] non-existing PPS 4 referenced
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 26 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 25 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Undefined type (31)
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 26 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Undefined type (31)
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 27 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 29 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [NULL @ 0x55e5a87c1180] missing picture in access unit with size 2864
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 27 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 27 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 27 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Undefined type (31)
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   :     Last message repeated 1 times
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Undefined type (30)
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   :     Last message repeated 1 times
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 29 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [NULL @ 0x55e5a87c1180] non-existing PPS 2 referenced
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 26 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Missed some packets, discarding frame
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Undefined type (30)
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [NULL @ 0x55e5a87c1180] illegal aspect ratio
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Error parsing AU headers
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Undefined type (31)
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] RTP H.264 NAL unit type 29 is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] nal size exceeds length: 11895 1309
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e5a87bbe00] Error parsing AU headers
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : [NULL @ 0x55e5a87c1180] crop values invalid 1 8 0 14 / 16 240
[2022-12-15 04:13:50] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:13:50] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:13:50] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:14:00] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:14:00] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:14:05] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:14:05] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:14:15] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:14:15] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:14:15] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:14:15] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:14:35] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55f68e295480] 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
[2022-12-15 04:14:35] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:14:35] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:14:35] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:15:25] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:15:25] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:15:28] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:15:28] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55a451280bc0] 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
[2022-12-15 04:15:28] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:15:28] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:15:28] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:15:38] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:15:38] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:15:38] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:15:38] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:15:38] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:15:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a79673bb80] A decode call did not consume any data: expect more data at input (-10)
[2022-12-15 04:16:18] ffmpeg.Back_left.record        ERROR   : [segment @ 0x562fc0007040] 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
[2022-12-15 04:16:18] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:16:18] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:16:18] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:16:37] watchdog.Crib                  INFO    : No frames received from Crib in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:16:37] watchdog.Crib                  INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:16:37] frigate.video                  ERROR   : Crib: Unable to read frames from ffmpeg process.
[2022-12-15 04:16:37] frigate.video                  ERROR   : Crib: Unable to read frames from ffmpeg process.
[2022-12-15 04:16:37] frigate.video                  ERROR   : Crib: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:16:47] watchdog.Crib                  ERROR   : Ffmpeg process crashed unexpectedly for Crib.
[2022-12-15 04:16:47] watchdog.Crib                  ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x560370aa24c0] Error during QSV decoding.: device failed (-17)
[2022-12-15 04:16:47] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Input/output error
[2022-12-15 04:16:48] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:16:48] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:16:48] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:16:48] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:16:48] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:16:48] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:16:48] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:16:48] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x5645d15f0680] A decode call did not consume any data: expect more data at input (-10)
[2022-12-15 04:16:48] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 2 times
[2022-12-15 04:17:08] ffmpeg.Back_left.record        ERROR   : [segment @ 0x56237616edc0] 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
[2022-12-15 04:17:08] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:17:08] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:17:08] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:17:58] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:17:58] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:17:58] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:17:58] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:17:58] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:17:58] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:17:58] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:17:58] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:17:58] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:17:58] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:17:58] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:17:58] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:17:58] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x5620f2451240] A decode call did not consume any data: expect more data at input (-10)
[2022-12-15 04:17:58] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 2 times
[2022-12-15 04:17:58] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x5556543b2e00] DTS discontinuity in stream 1: packet 3 with DTS 80211735790498, packet 4 with DTS 80211735792889
[2022-12-15 04:17:58] ffmpeg.Back_left.record        ERROR   : [segment @ 0x5556543d2040] 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
[2022-12-15 04:17:58] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:17:58] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:17:58] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:28:27] watchdog.Crib                  INFO    : No frames received from Crib in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:28:27] watchdog.Crib                  INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:28:27] frigate.video                  ERROR   : Crib: Unable to read frames from ffmpeg process.
[2022-12-15 04:28:27] frigate.video                  ERROR   : Crib: Unable to read frames from ffmpeg process.
[2022-12-15 04:28:27] frigate.video                  ERROR   : Crib: Unable to read frames from ffmpeg process.
[2022-12-15 04:28:27] frigate.video                  ERROR   : Crib: Unable to read frames from ffmpeg process.
[2022-12-15 04:28:27] frigate.video                  ERROR   : Crib: Unable to read frames from ffmpeg process.
[2022-12-15 04:28:27] frigate.video                  ERROR   : Crib: Unable to read frames from ffmpeg process.
[2022-12-15 04:28:27] frigate.video                  ERROR   : Crib: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:28:28] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:28:28] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:28:28] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:28:28] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:28:37] watchdog.Crib                  ERROR   : Ffmpeg process crashed unexpectedly for Crib.
[2022-12-15 04:28:37] watchdog.Crib                  ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : [h264_qsv @ 0x5626bfb21240] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:37] ffmpeg.Crib.detect             ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:28:38] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a9da798fc0] Error during QSV decoding.: unknown error (-21)
[2022-12-15 04:28:38] ffmpeg.Back_left.detect        ERROR   : Error while decoding stream #0:0: Unknown error occurred
[2022-12-15 04:28:48] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55eaecae7dc0] 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
[2022-12-15 04:28:48] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:28:48] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:28:48] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:29:39] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:29:39] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:29:44] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:29:44] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x5567bac43e00] DTS discontinuity in stream 1: packet 5 with DTS 80211769400007, packet 6 with DTS 80211769404606
[2022-12-15 04:29:44] ffmpeg.Back_left.record        ERROR   : [segment @ 0x5567bac60b40] 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
[2022-12-15 04:29:44] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:29:44] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:29:44] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:29:54] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:29:54] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:29:54] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:29:54] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:30:34] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55ffc85e7e00] DTS discontinuity in stream 1: packet 5 with DTS 80211772049669, packet 6 with DTS 80211772052143
[2022-12-15 04:30:34] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55ffc8607040] 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
[2022-12-15 04:30:34] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:30:34] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:30:34] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:31:04] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:31:04] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:31:06] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:31:06] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:31:06] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:31:16] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:31:16] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:31:16] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:31:16] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 3 times
[2022-12-15 04:31:16] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:31:26] ffmpeg.Back_left.record        ERROR   : [segment @ 0x555b18d21040] 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
[2022-12-15 04:31:26] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:31:26] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:31:26] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:32:16] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:32:16] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:32:22] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:32:22] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:32:22] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:32:22] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:32:22] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:32:22] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:32:22] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:32:22] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:32:22] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:32:22] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:32:22] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:32:22] ffmpeg.Back_left.record        ERROR   : [segment @ 0x5591a2514700] 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
[2022-12-15 04:32:22] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:32:22] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:32:22] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:32:32] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:32:32] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:32:32] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:32:32] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 3 times
[2022-12-15 04:33:12] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55636da61700] 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
[2022-12-15 04:33:12] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:33:12] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:33:12] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:33:32] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:33:32] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:33:37] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:33:37] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:33:47] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:33:47] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:33:47] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:33:47] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:33:57] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x559a04b4de00] DTS discontinuity in stream 1: packet 6 with DTS 80211782030826, packet 7 with DTS 80211782034237
[2022-12-15 04:33:57] ffmpeg.Back_left.record        ERROR   : [segment @ 0x559a04ba72c0] 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
[2022-12-15 04:33:57] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:33:57] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:33:57] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:34:02] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:34:02] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:34:07] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:34:07] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:34:07] ffmpeg.Back_left.detect        ERROR   : corrupted double-linked list
[2022-12-15 04:34:47] ffmpeg.Back_left.record        ERROR   : [segment @ 0x559afb3f2700] 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
[2022-12-15 04:34:47] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:34:47] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:34:47] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:35:17] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:35:17] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:35:20] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:35:20] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:35:30] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:35:30] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:35:30] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:35:30] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:35:30] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:35:30] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55c3be10a680] A decode call did not consume any data: expect more data at input (-10)
[2022-12-15 04:35:40] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x5639e88bbe00] DTS discontinuity in stream 1: packet 4 with DTS 80211786598508, packet 5 with DTS 80211786601511
[2022-12-15 04:35:40] ffmpeg.Back_left.record        ERROR   : [segment @ 0x5639e88e2e40] 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
[2022-12-15 04:35:40] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:35:40] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:35:40] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:36:30] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55d07fe86f80] 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
[2022-12-15 04:36:30] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:36:30] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:36:30] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:36:39] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:36:39] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:36:39] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:36:40] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:36:40] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:36:40] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:36:40] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:36:40] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:36:40] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x5606d1dae240] A decode call did not consume any data: expect more data at input (-10)
[2022-12-15 04:36:40] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 2 times
[2022-12-15 04:37:20] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x558d57474e00] DTS discontinuity in stream 1: packet 5 with DTS 80211791531961, packet 6 with DTS 80211791534676
[2022-12-15 04:37:20] ffmpeg.Back_left.record        ERROR   : [segment @ 0x558d57492480] 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
[2022-12-15 04:37:20] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:37:20] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:37:20] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:37:49] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:37:49] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:37:49] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:37:50] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:37:50] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:37:50] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:37:50] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:37:50] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:37:50] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x555e04fbbac0] A decode call did not consume any data: expect more data at input (-10)
[2022-12-15 04:37:50] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 2 times
[2022-12-15 04:38:10] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x555eef772e00] DTS discontinuity in stream 1: packet 4 with DTS 80211793933996, packet 5 with DTS 80211793936785
[2022-12-15 04:38:10] ffmpeg.Back_left.record        ERROR   : [segment @ 0x555eef78f200] 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
[2022-12-15 04:38:10] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:38:10] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:38:10] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:39:00] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:39:00] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:39:02] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:39:02] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:39:02] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55f533ef4700] 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
[2022-12-15 04:39:02] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:39:02] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:39:02] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:39:12] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:39:12] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:39:12] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:39:12] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:39:12] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:39:12] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x564a94e50680] A decode call did not consume any data: expect more data at input (-10)
[2022-12-15 04:39:52] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x563a169cfe00] DTS discontinuity in stream 1: packet 7 with DTS 80211798866081, packet 8 with DTS 80211798870309
[2022-12-15 04:39:52] ffmpeg.Back_left.record        ERROR   : [segment @ 0x563a169ed480] 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
[2022-12-15 04:39:52] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:39:52] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:39:52] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:40:12] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:40:12] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:40:17] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:40:27] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:40:27] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:40:27] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:40:27] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 3 times
[2022-12-15 04:40:47] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55af1d88ae00] DTS discontinuity in stream 1: packet 5 with DTS 80211801265984, packet 6 with DTS 80211801270441
[2022-12-15 04:40:47] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55af1d8a7b40] 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
[2022-12-15 04:40:47] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:40:47] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:40:47] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:41:28] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:41:28] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:41:31] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:41:31] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:41:31] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:41:31] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:41:31] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:41:31] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:41:31] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:41:31] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:41:31] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x559fd87b1e00] DTS discontinuity in stream 1: packet 3 with DTS 80211803910101, packet 4 with DTS 80211803914038
[2022-12-15 04:41:31] ffmpeg.Back_left.record        ERROR   : [segment @ 0x559fd87ceb40] 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
[2022-12-15 04:41:31] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:41:31] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:41:31] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:41:41] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:41:41] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:41:41] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:41:41] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 3 times
[2022-12-15 04:41:41] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:42:21] ffmpeg.Back_left.record        ERROR   : [segment @ 0x561614d30480] 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
[2022-12-15 04:42:21] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:42:21] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:42:21] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:42:51] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:42:51] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:42:54] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:43:04] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:43:04] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:43:04] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:43:04] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 3 times
[2022-12-15 04:43:04] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:43:14] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55aeff826b40] 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
[2022-12-15 04:43:14] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:43:14] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:43:14] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:44:04] ffmpeg.Back_left.record        ERROR   : [segment @ 0x562a452c6700] 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
[2022-12-15 04:44:04] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:44:04] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:44:04] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:44:14] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:44:14] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:44:14] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:44:14] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:44:14] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:44:14] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:44:14] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:44:14] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55b6d5eb4f00] A decode call did not consume any data: expect more data at input (-10)
[2022-12-15 04:44:14] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 2 times
[2022-12-15 04:44:54] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x561ce99cde00] DTS discontinuity in stream 1: packet 5 with DTS 80211813343585, packet 6 with DTS 80211813347160
[2022-12-15 04:44:54] ffmpeg.Back_left.record        ERROR   : [segment @ 0x561ce99ec700] 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
[2022-12-15 04:44:54] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:44:54] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:44:54] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:45:24] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:45:24] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:45:24] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:45:24] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:45:24] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:45:24] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:45:24] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:45:24] ffmpeg.Back_left.detect        ERROR   : [h264_qsv @ 0x55a08e5b3680] A decode call did not consume any data: expect more data at input (-10)
[2022-12-15 04:45:24] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 2 times
[2022-12-15 04:45:44] ffmpeg.Back_left.record        ERROR   : [segment @ 0x5646a2825fc0] 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
[2022-12-15 04:45:44] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:45:44] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:45:44] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:46:24] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:46:24] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:46:29] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:46:29] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:46:29] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:46:29] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:46:29] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:46:29] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:46:29] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:46:29] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:46:29] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:46:39] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:46:39] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:46:39] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:46:39] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 3 times
[2022-12-15 04:46:39] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55a542408480] 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
[2022-12-15 04:46:39] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:46:39] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:46:39] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:47:29] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55b2b763eb40] 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
[2022-12-15 04:47:29] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:47:29] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:47:29] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:47:39] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:47:39] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:47:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:47:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:47:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:47:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:47:44] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:47:44] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:47:54] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:47:54] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:47:54] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:47:54] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 4 times
[2022-12-15 04:48:14] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55bf0b03f040] 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
[2022-12-15 04:48:14] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:48:14] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:48:14] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:48:54] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:48:54] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:48:58] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:48:58] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:48:58] ffmpeg.Back_left.record        ERROR   : [rtsp @ 0x55e8d5ee1e00] DTS discontinuity in stream 1: packet 3 with DTS 80211825358217, packet 4 with DTS 80211825362323
[2022-12-15 04:48:58] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55e8d5f00700] 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
[2022-12-15 04:48:58] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:48:58] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:48:58] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:49:08] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:49:08] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:49:08] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:49:08] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 3 times
[2022-12-15 04:49:08] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection reset by peer
[2022-12-15 04:49:48] ffmpeg.Back_left.record        ERROR   : [segment @ 0x5622204c7f00] 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
[2022-12-15 04:49:48] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:49:48] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:49:48] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:50:08] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:50:08] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:50:13] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:50:13] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:50:13] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:50:23] watchdog.Back_left             ERROR   : Ffmpeg process crashed unexpectedly for Back_left.
[2022-12-15 04:50:23] watchdog.Back_left             ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-12-15 04:50:23] ffmpeg.Back_left.detect        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/103/: Connection timed out
[2022-12-15 04:50:23] ffmpeg.Back_left.detect        ERROR   :     Last message repeated 3 times
[2022-12-15 04:50:43] ffmpeg.Back_left.record        ERROR   : [segment @ 0x55c90e3bf480] 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
[2022-12-15 04:50:43] ffmpeg.Back_left.record        ERROR   : rtsp://REDACTED.80.51:554/Streaming/Channels/101/: Connection timed out
[2022-12-15 04:50:43] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:50:43] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:51:13] ffmpeg.Back_left.record        ERROR   : [segment @ 0x559bb3c6fb40] 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
[2022-12-15 04:51:13] ffmpeg.Back_left.record        ERROR   : [segment @ 0x559bb3c6fb40] Non-monotonous DTS in output stream 0:1; previous: 6281, current: 6279; changing to 6282. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:13] ffmpeg.Back_left.record        ERROR   : av_interleaved_write_frame(): No space left on device
[2022-12-15 04:51:13] ffmpeg.Back_left.record        ERROR   : [segment @ 0x559bb3c6fb40] Failure occurred when ending segment '/tmp/cache/Back_left-20221215045104.mp4'
[2022-12-15 04:51:13] ffmpeg.Back_left.record        ERROR   : Error writing trailer of /tmp/cache/Back_left-%Y%m%d%H%M%S.mp4: No space left on device
[2022-12-15 04:51:13] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:51:13] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] 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
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 0, current: 0; changing to 1. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 635878, current: 635878; changing to 635879. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 635879, current: 635879; changing to 635880. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 2469025, current: 2469025; changing to 2469026. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 18047323, current: 18047323; changing to 18047324. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 20669079, current: 20669079; changing to 20669080. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 20669080, current: 20669080; changing to 20669081. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 24781477, current: 24781477; changing to 24781478. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 27357676, current: 27357676; changing to 27357677. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 27357677, current: 27357677; changing to 27357678. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 37721467, current: 37721467; changing to 37721468. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 41724520, current: 41724520; changing to 41724521. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 42654865, current: 42654865; changing to 42654866. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 46552813, current: 46552813; changing to 46552814. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 58520596, current: 58520596; changing to 58520597. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 67636244, current: 67636244; changing to 67636245. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 67636245, current: 67636244; changing to 67636246. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 67636247, current: 67636247; changing to 67636248. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 72150115, current: 72150115; changing to 72150116. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 72193586, current: 72193586; changing to 72193587. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 79287463, current: 79287463; changing to 79287464. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 85627683, current: 85627683; changing to 85627684. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 85627684, current: 85627684; changing to 85627685. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 86450671, current: 86450671; changing to 86450672. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 86450672, current: 86450671; changing to 86450673. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Non-monotonous DTS in output stream 0:0; previous: 90972874, current: 90972874; changing to 90972875. This may result in incorrect timestamps in the output file.
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : av_interleaved_write_frame(): No space left on device
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : [segment @ 0x55d52bdf1b00] Failure occurred when ending segment '/tmp/cache/Crib-20221215045104.mp4'
[2022-12-15 04:51:17] ffmpeg.Crib.record             ERROR   : Error writing trailer of /tmp/cache/Crib-%Y%m%d%H%M%S.mp4: No space left on device
[2022-12-15 04:51:17] watchdog.Crib                  INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:51:17] watchdog.Crib                  INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:51:23] watchdog.Back_left             INFO    : No frames received from Back_left in 20 seconds. Exiting ffmpeg...
[2022-12-15 04:51:23] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:51:27] ffmpeg.Crib.record             ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): No space left on device
[2022-12-15 04:51:27] ffmpeg.Crib.record             ERROR   : Error initializing output stream 0:0 -- 
[2022-12-15 04:51:27] ffmpeg.Crib.record             ERROR   : 
[2022-12-15 04:51:27] watchdog.Crib                  INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:51:27] watchdog.Crib                  INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:51:29] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:51:29] frigate.video                  ERROR   : Back_left: Unable to read frames from ffmpeg process.
[2022-12-15 04:51:29] frigate.video                  ERROR   : Back_left: ffmpeg process is not running. exiting capture thread...
[2022-12-15 04:51:29] ffmpeg.Back_left.record        ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): No space left on device
[2022-12-15 04:51:29] ffmpeg.Back_left.record        ERROR   : Error initializing output stream 0:1 -- 
[2022-12-15 04:51:29] ffmpeg.Back_left.record        ERROR   : 
[2022-12-15 04:51:29] watchdog.Back_left             INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:51:29] watchdog.Back_left             INFO    : Waiting for ffmpeg to exit gracefully...
[2022-12-15 04:51:37] ffmpeg.Crib.record             ERROR   : Could not write header for output file #0 (incorrect codec parameters ?): No space left on device
[2022-12-15 04:51:37] ffmpeg.Crib.record             ERROR   : Error initializing output stream 0:0 -- 
[2022-12-15 04:51:37] ffmpeg.Crib.record             ERROR   : 
[2022-12-15 04:51:37] watchdog.Crib                  INFO    : Terminating the existing ffmpeg process...
[2022-12-15 04:51:37] watchdog.Crib                  INFO    : Waiting for ffmpeg to exit grace
/tmp/cache# df -h
Filesystem                         Size  Used Avail Use% Mounted on
overlay                             36G   14G   20G  42% /
tmpfs                               64M     0   64M   0% /dev
shm                                128M  5.0M  124M   4% /dev/shm
/dev/mapper/ubuntu--vg-ubuntu--lv   36G   14G   20G  42% /db
//192.168.1.248/cctv               1.9T  1.8T  107G  95% /media/frigate
tmpfs                              954M  954M     0 100% /tmp/cache
/tmp/cache# ls
Back_left-20221215042059.mp4  Crib-20221215051221.mp4  Crib-20221215063233.mp4  Crib-20221215075246.mp4  Crib-20221215091258.mp4  Crib-20221215103311.mp4  Crib-20221215115324.mp4  Crib-20221215131337.mp4  Crib-20221215143349.mp4
Back_left-20221215042111.mp4  Crib-20221215051231.mp4  Crib-20221215063243.mp4  Crib-20221215075256.mp4  Crib-20221215091308.mp4  Crib-20221215103321.mp4  Crib-20221215115334.mp4  Crib-20221215131347.mp4  Crib-20221215143359.mp4
Back_left-20221215042121.mp4  Crib-20221215051241.mp4  Crib-20221215063253.mp4  Crib-20221215075306.mp4  Crib-20221215091318.mp4  Crib-20221215103331.mp4  Crib-20221215115344.mp4  Crib-20221215131357.mp4  Crib-20221215143409.mp4
Back_left-20221215042129.mp4  Crib-20221215051251.mp4  Crib-20221215063303.mp4  Crib-20221215075316.mp4  Crib-20221215091328.mp4  Crib-20221215103341.mp4  Crib-20221215115354.mp4  Crib-20221215131407.mp4  Crib-20221215143419.mp4
Back_left-20221215042141.mp4  Crib-20221215051301.mp4  Crib-20221215063313.mp4  Crib-20221215075326.mp4  Crib-20221215091338.mp4  Crib-20221215103351.mp4  Crib-20221215115404.mp4  Crib-20221215131417.mp4  Crib-20221215143429.mp4
Back_left-20221215042149.mp4  Crib-20221215051311.mp4  Crib-20221215063323.mp4  Crib-20221215075336.mp4  Crib-20221215091348.mp4  Crib-20221215103401.mp4  Crib-20221215115414.mp4  Crib-20221215131427.mp4  Crib-20221215143439.mp4
Back_left-20221215042201.mp4  Crib-20221215051321.mp4  Crib-20221215063333.mp4  Crib-20221215075346.mp4  Crib-20221215091358.mp4  Crib-20221215103411.mp4  Crib-20221215115424.mp4  Crib-20221215131437.mp4  Crib-20221215143449.mp4
Back_left-20221215042209.mp4  Crib-20221215051331.mp4  Crib-20221215063343.mp4  Crib-20221215075356.mp4  Crib-20221215091408.mp4  Crib-20221215103421.mp4  Crib-20221215115434.mp4  Crib-20221215131447.mp4  Crib-20221215143459.mp4
Back_left-20221215042219.mp4  Crib-20221215051341.mp4  Crib-20221215063353.mp4  Crib-20221215075406.mp4  Crib-20221215091419.mp4  Crib-20221215103431.mp4  Crib-20221215115444.mp4  Crib-20221215131457.mp4  Crib-20221215143509.mp4
Back_left-20221215042231.mp4  Crib-20221215051351.mp4  Crib-20221215063403.mp4  Crib-20221215075416.mp4  Crib-20221215091429.mp4  Crib-20221215103441.mp4  Crib-20221215115454.mp4  Crib-20221215131506.mp4  Crib-20221215143519.mp4
Back_left-20221215042239.mp4  Crib-20221215051401.mp4  Crib-20221215063413.mp4  Crib-20221215075426.mp4  Crib-20221215091438.mp4  Crib-20221215103451.mp4  Crib-20221215115504.mp4  Crib-20221215131517.mp4  Crib-20221215143529.mp4
Back_left-20221215042249.mp4  Crib-20221215051411.mp4  Crib-20221215063423.mp4  Crib-20221215075436.mp4  Crib-20221215091448.mp4  Crib-20221215103501.mp4  Crib-20221215115514.mp4  Crib-20221215131527.mp4  Crib-20221215143539.mp4
Back_left-20221215042259.mp4  Crib-20221215051421.mp4  Crib-20221215063433.mp4  Crib-20221215075446.mp4  Crib-20221215091459.mp4  Crib-20221215103511.mp4  Crib-20221215115524.mp4  Crib-20221215131537.mp4  Crib-20221215143549.mp4
Back_left-20221215042309.mp4  Crib-20221215051431.mp4  Crib-20221215063443.mp4  Crib-20221215075456.mp4  Crib-20221215091509.mp4  Crib-20221215103521.mp4  Crib-20221215115534.mp4  Crib-20221215131547.mp4  Crib-20221215143559.mp4
Back_left-20221215042319.mp4  Crib-20221215051441.mp4  Crib-20221215063453.mp4  Crib-20221215075506.mp4  Crib-20221215091518.mp4  Crib-20221215103531.mp4  Crib-20221215115544.mp4  Crib-20221215131557.mp4  Crib-20221215143610.mp4
Back_left-20221215042329.mp4  Crib-20221215051451.mp4  Crib-20221215063503.mp4  Crib-20221215075516.mp4  Crib-20221215091529.mp4  Crib-20221215103541.mp4  Crib-20221215115554.mp4  Crib-20221215131607.mp4  Crib-20221215143619.mp4
Back_left-20221215042339.mp4  Crib-20221215051501.mp4  Crib-20221215063513.mp4  Crib-20221215075526.mp4  Crib-20221215091539.mp4  Crib-20221215103551.mp4  Crib-20221215115604.mp4  Crib-20221215131617.mp4  Crib-20221215143629.mp4
Back_left-20221215042348.mp4  Crib-20221215051511.mp4  Crib-20221215063523.mp4  Crib-20221215075536.mp4  Crib-20221215091548.mp4  Crib-20221215103601.mp4  Crib-20221215115614.mp4  Crib-20221215131627.mp4  Crib-20221215143639.mp4
Back_left-20221215042359.mp4  Crib-20221215051521.mp4  Crib-20221215063533.mp4  Crib-20221215075546.mp4  Crib-20221215091558.mp4  Crib-20221215103611.mp4  Crib-20221215115624.mp4  Crib-20221215131636.mp4  Crib-20221215143649.mp4
Back_left-20221215042409.mp4  Crib-20221215051531.mp4  Crib-20221215063543.mp4  Crib-20221215075556.mp4  Crib-20221215091608.mp4  Crib-20221215103621.mp4  Crib-20221215115634.mp4  Crib-20221215131647.mp4  Crib-20221215143659.mp4
Back_left-20221215042419.mp4  Crib-20221215051541.mp4  Crib-20221215063553.mp4  Crib-20221215075606.mp4  Crib-20221215091618.mp4  Crib-20221215103631.mp4  Crib-20221215115644.mp4  Crib-20221215131657.mp4  Crib-20221215143709.mp4
Back_left-20221215042429.mp4  Crib-20221215051551.mp4  Crib-20221215063603.mp4  Crib-20221215075616.mp4  Crib-20221215091629.mp4  Crib-20221215103641.mp4  Crib-20221215115654.mp4  Crib-20221215131707.mp4  Crib-20221215143719.mp4
Back_left-20221215042439.mp4  Crib-20221215051601.mp4  Crib-20221215063613.mp4  Crib-20221215075626.mp4  Crib-20221215091639.mp4  Crib-20221215103651.mp4  Crib-20221215115704.mp4  Crib-20221215131717.mp4  Crib-20221215143729.mp4
Back_left-20221215042449.mp4  Crib-20221215051611.mp4  Crib-20221215063623.mp4  Crib-20221215075636.mp4  Crib-20221215091649.mp4  Crib-20221215103701.mp4  Crib-20221215115714.mp4  Crib-20221215131727.mp4  Crib-20221215143739.mp4
Back_left-20221215042459.mp4  Crib-20221215051621.mp4  Crib-20221215063633.mp4  Crib-20221215075646.mp4  Crib-20221215091659.mp4  Crib-20221215103711.mp4  Crib-20221215115724.mp4  Crib-20221215131737.mp4  Crib-20221215143749.mp4
Back_left-20221215042511.mp4  Crib-20221215051631.mp4  Crib-20221215063643.mp4  Crib-20221215075656.mp4  Crib-20221215091709.mp4  Crib-20221215103721.mp4  Crib-20221215115734.mp4  Crib-20221215131747.mp4  Crib-20221215143759.mp4
Back_left-20221215042519.mp4  Crib-20221215051641.mp4  Crib-20221215063653.mp4  Crib-20221215075706.mp4  Crib-20221215091719.mp4  Crib-20221215103731.mp4  Crib-20221215115744.mp4  Crib-20221215131757.mp4  Crib-20221215143809.mp4
Back_left-20221215042529.mp4  Crib-20221215051651.mp4  Crib-20221215063703.mp4  Crib-20221215075716.mp4  Crib-20221215091729.mp4  Crib-20221215103741.mp4  Crib-20221215115754.mp4  Crib-20221215131807.mp4  Crib-20221215143819.mp4
Back_left-20221215042539.mp4  Crib-20221215051701.mp4  Crib-20221215063713.mp4  Crib-20221215075726.mp4  Crib-20221215091739.mp4  Crib-20221215103751.mp4  Crib-20221215115804.mp4  Crib-20221215131817.mp4  Crib-20221215143829.mp4
Back_left-20221215042551.mp4  Crib-20221215051711.mp4  Crib-20221215063723.mp4  Crib-20221215075736.mp4  Crib-20221215091749.mp4  Crib-20221215103801.mp4  Crib-20221215115814.mp4  Crib-20221215131827.mp4  Crib-20221215143839.mp4
Back_left-20221215042558.mp4  Crib-20221215051721.mp4  Crib-20221215063733.mp4  Crib-20221215075746.mp4  Crib-20221215091759.mp4  Crib-20221215103811.mp4  Crib-20221215115824.mp4  Crib-20221215131837.mp4  Crib-20221215143849.mp4
Back_left-20221215042611.mp4  Crib-20221215051731.mp4  Crib-20221215063743.mp4  Crib-20221215075756.mp4  Crib-20221215091809.mp4  Crib-20221215103821.mp4  Crib-20221215115834.mp4  Crib-20221215131847.mp4  Crib-20221215143859.mp4
Back_left-20221215042620.mp4  Crib-20221215051741.mp4  Crib-20221215063753.mp4  Crib-20221215075806.mp4  Crib-20221215091820.mp4  Crib-20221215103831.mp4  Crib-20221215115844.mp4  Crib-20221215131857.mp4  Crib-20221215143909.mp4
Back_left-20221215042629.mp4  Crib-20221215051751.mp4  Crib-20221215063803.mp4  Crib-20221215075816.mp4  Crib-20221215091829.mp4  Crib-20221215103841.mp4  Crib-20221215115854.mp4  Crib-20221215131907.mp4  Crib-20221215143919.mp4
Back_left-20221215042638.mp4  Crib-20221215051801.mp4  Crib-20221215063813.mp4  Crib-20221215075826.mp4  Crib-20221215091839.mp4  Crib-20221215103851.mp4  Crib-20221215115904.mp4  Crib-20221215131917.mp4  Crib-20221215143929.mp4
Back_left-20221215042652.mp4  Crib-20221215051811.mp4  Crib-20221215063823.mp4  Crib-20221215075836.mp4  Crib-20221215091849.mp4  Crib-20221215103901.mp4  Crib-20221215115914.mp4  Crib-20221215131927.mp4  Crib-20221215143939.mp4
Back_left-20221215042659.mp4  Crib-20221215051821.mp4  Crib-20221215063833.mp4  Crib-20221215075846.mp4  Crib-20221215091859.mp4  Crib-20221215103911.mp4  Crib-20221215115924.mp4  Crib-20221215131937.mp4  Crib-20221215143949.mp4
Back_left-20221215042709.mp4  Crib-20221215051831.mp4  Crib-20221215063843.mp4  Crib-20221215075856.mp4  Crib-20221215091909.mp4  Crib-20221215103921.mp4  Crib-20221215115934.mp4  Crib-20221215131947.mp4  Crib-20221215143959.mp4
Back_left-20221215042718.mp4  Crib-20221215051841.mp4  Crib-20221215063853.mp4  Crib-20221215075907.mp4  Crib-20221215091919.mp4  Crib-20221215103931.mp4  Crib-20221215115944.mp4  Crib-20221215131957.mp4  Crib-20221215144009.mp4
Back_left-20221215042729.mp4  Crib-20221215051851.mp4  Crib-20221215063903.mp4  Crib-20221215075916.mp4  Crib-20221215091929.mp4  Crib-20221215103941.mp4  Crib-20221215115954.mp4  Crib-20221215132007.mp4  Crib-20221215144019.mp4
Back_left-20221215042739.mp4  Crib-20221215051901.mp4  Crib-20221215063913.mp4  Crib-20221215075926.mp4  Crib-20221215091939.mp4  Crib-20221215103951.mp4  Crib-20221215120004.mp4  Crib-20221215132017.mp4  Crib-20221215144029.mp4
Back_left-20221215042751.mp4  Crib-20221215051911.mp4  Crib-20221215063923.mp4  Crib-20221215075936.mp4  Crib-20221215091949.mp4  Crib-20221215104001.mp4  Crib-20221215120014.mp4  Crib-20221215132027.mp4  Crib-20221215144039.mp4
Back_left-20221215042759.mp4  Crib-20221215051921.mp4  Crib-20221215063933.mp4  Crib-20221215075946.mp4  Crib-20221215091959.mp4  Crib-20221215104011.mp4  Crib-20221215120024.mp4  Crib-20221215132037.mp4  Crib-20221215144049.mp4
Back_left-20221215042809.mp4  Crib-20221215051931.mp4  Crib-20221215063943.mp4  Crib-20221215075956.mp4  Crib-20221215092009.mp4  Crib-20221215104021.mp4  Crib-20221215120034.mp4  Crib-20221215132047.mp4  Crib-20221215144059.mp4
Back_left-20221215042821.mp4  Crib-20221215051941.mp4  Crib-20221215063953.mp4  Crib-20221215080006.mp4  Crib-20221215092019.mp4  Crib-20221215104031.mp4  Crib-20221215120044.mp4  Crib-20221215132057.mp4  Crib-20221215144109.mp4
Back_left-20221215042831.mp4  Crib-20221215051951.mp4  Crib-20221215064003.mp4  Crib-20221215080016.mp4  Crib-20221215092029.mp4  Crib-20221215104041.mp4  Crib-20221215120054.mp4  Crib-20221215132107.mp4  Crib-20221215144119.mp4
Back_left-20221215042850.mp4  Crib-20221215052001.mp4  Crib-20221215064013.mp4  Crib-20221215080026.mp4  Crib-20221215092039.mp4  Crib-20221215104051.mp4  Crib-20221215120104.mp4  Crib-20221215132117.mp4  Crib-20221215144129.mp4
Back_left-20221215042859.mp4  Crib-20221215052011.mp4  Crib-20221215064023.mp4  Crib-20221215080036.mp4  Crib-20221215092049.mp4  Crib-20221215104101.mp4  Crib-20221215120114.mp4  Crib-20221215132127.mp4  Crib-20221215144139.mp4
Back_left-20221215042909.mp4  Crib-20221215052021.mp4  Crib-20221215064033.mp4  Crib-20221215080046.mp4  Crib-20221215092059.mp4  Crib-20221215104111.mp4  Crib-20221215120124.mp4  Crib-20221215132137.mp4  Crib-20221215144149.mp4
Back_left-20221215042919.mp4  Crib-20221215052031.mp4  Crib-20221215064043.mp4  Crib-20221215080056.mp4  Crib-20221215092109.mp4  Crib-20221215104121.mp4  Crib-20221215120134.mp4  Crib-20221215132147.mp4  Crib-20221215144159.mp4
Back_left-20221215042945.mp4  Crib-20221215052041.mp4  Crib-20221215064053.mp4  Crib-20221215080106.mp4  Crib-20221215092119.mp4  Crib-20221215104131.mp4  Crib-20221215120144.mp4  Crib-20221215132157.mp4  Crib-20221215144210.mp4
Back_left-20221215042956.mp4  Crib-20221215052051.mp4  Crib-20221215064103.mp4  Crib-20221215080116.mp4  Crib-20221215092129.mp4  Crib-20221215104141.mp4  Crib-20221215120154.mp4  Crib-20221215132207.mp4  Crib-20221215144219.mp4
Back_left-20221215043006.mp4  Crib-20221215052101.mp4  Crib-20221215064113.mp4  Crib-20221215080126.mp4  Crib-20221215092139.mp4  Crib-20221215104151.mp4  Crib-20221215120204.mp4  Crib-20221215132217.mp4  Crib-20221215144229.mp4
Back_left-20221215043016.mp4  Crib-20221215052111.mp4  Crib-20221215064124.mp4  Crib-20221215080136.mp4  Crib-20221215092149.mp4  Crib-20221215104202.mp4  Crib-20221215120214.mp4  Crib-20221215132227.mp4  Crib-20221215144240.mp4
Back_left-20221215043035.mp4  Crib-20221215052121.mp4  Crib-20221215064134.mp4  Crib-20221215080146.mp4  Crib-20221215092159.mp4  Crib-20221215104211.mp4  Crib-20221215120224.mp4  Crib-20221215132237.mp4  Crib-20221215144249.mp4
Back_left-20221215043046.mp4  Crib-20221215052131.mp4  Crib-20221215064143.mp4  Crib-20221215080156.mp4  Crib-20221215092209.mp4  Crib-20221215104221.mp4  Crib-20221215120234.mp4  Crib-20221215132247.mp4  Crib-20221215144300.mp4
Back_left-20221215043056.mp4  Crib-20221215052141.mp4  Crib-20221215064153.mp4  Crib-20221215080206.mp4  Crib-20221215092219.mp4  Crib-20221215104232.mp4  Crib-20221215120244.mp4  Crib-20221215132257.mp4  Crib-20221215144311.mp4
Back_left-20221215043106.mp4  Crib-20221215052151.mp4  Crib-20221215064203.mp4  Crib-20221215080216.mp4  Crib-20221215092229.mp4  Crib-20221215104241.mp4  Crib-20221215120254.mp4  Crib-20221215132307.mp4  Crib-20221215144320.mp4
Back_left-20221215043128.mp4  Crib-20221215052201.mp4  Crib-20221215064213.mp4  Crib-20221215080226.mp4  Crib-20221215092239.mp4  Crib-20221215104251.mp4  Crib-20221215120304.mp4  Crib-20221215132317.mp4  Crib-20221215144330.mp4
Back_left-20221215043137.mp4  Crib-20221215052211.mp4  Crib-20221215064223.mp4  Crib-20221215080236.mp4  Crib-20221215092249.mp4  Crib-20221215104301.mp4  Crib-20221215120314.mp4  Crib-20221215132327.mp4  Crib-20221215144341.mp4
Back_left-20221215043147.mp4  Crib-20221215052221.mp4  Crib-20221215064233.mp4  Crib-20221215080246.mp4  Crib-20221215092259.mp4  Crib-20221215104311.mp4  Crib-20221215120324.mp4  Crib-20221215132337.mp4  Crib-20221215144349.mp4
Back_left-20221215043157.mp4  Crib-20221215052231.mp4  Crib-20221215064243.mp4  Crib-20221215080256.mp4  Crib-20221215092309.mp4  Crib-20221215104321.mp4  Crib-20221215120334.mp4  Crib-20221215132347.mp4  Crib-20221215144400.mp4
Back_left-20221215043223.mp4  Crib-20221215052241.mp4  Crib-20221215064253.mp4  Crib-20221215080306.mp4  Crib-20221215092319.mp4  Crib-20221215104332.mp4  Crib-20221215120344.mp4  Crib-20221215132357.mp4  Crib-20221215144410.mp4
Back_left-20221215043232.mp4  Crib-20221215052251.mp4  Crib-20221215064303.mp4  Crib-20221215080316.mp4  Crib-20221215092329.mp4  Crib-20221215104342.mp4  Crib-20221215120354.mp4  Crib-20221215132407.mp4  Crib-20221215144420.mp4
Back_left-20221215043242.mp4  Crib-20221215052301.mp4  Crib-20221215064313.mp4  Crib-20221215080326.mp4  Crib-20221215092339.mp4  Crib-20221215104352.mp4  Crib-20221215120404.mp4  Crib-20221215132417.mp4  Crib-20221215144430.mp4
Back_left-20221215043252.mp4  Crib-20221215052311.mp4  Crib-20221215064324.mp4  Crib-20221215080336.mp4  Crib-20221215092349.mp4  Crib-20221215104402.mp4  Crib-20221215120414.mp4  Crib-20221215132427.mp4  Crib-20221215144439.mp4
Back_left-20221215043313.mp4  Crib-20221215052321.mp4  Crib-20221215064334.mp4  Crib-20221215080347.mp4  Crib-20221215092359.mp4  Crib-20221215104412.mp4  Crib-20221215120424.mp4  Crib-20221215132437.mp4  Crib-20221215144450.mp4
Back_left-20221215043322.mp4  Crib-20221215052331.mp4  Crib-20221215064344.mp4  Crib-20221215080356.mp4  Crib-20221215092409.mp4  Crib-20221215104422.mp4  Crib-20221215120434.mp4  Crib-20221215132447.mp4  Crib-20221215144500.mp4
Back_left-20221215043334.mp4  Crib-20221215052341.mp4  Crib-20221215064354.mp4  Crib-20221215080406.mp4  Crib-20221215092419.mp4  Crib-20221215104432.mp4  Crib-20221215120444.mp4  Crib-20221215132457.mp4  Crib-20221215144510.mp4
Back_left-20221215043342.mp4  Crib-20221215052351.mp4  Crib-20221215064403.mp4  Crib-20221215080416.mp4  Crib-20221215092429.mp4  Crib-20221215104441.mp4  Crib-20221215120454.mp4  Crib-20221215132507.mp4  Crib-20221215144520.mp4
Back_left-20221215043358.mp4  Crib-20221215052401.mp4  Crib-20221215064414.mp4  Crib-20221215080426.mp4  Crib-20221215092439.mp4  Crib-20221215104451.mp4  Crib-20221215120504.mp4  Crib-20221215132517.mp4  Crib-20221215144530.mp4
Back_left-20221215043407.mp4  Crib-20221215052411.mp4  Crib-20221215064424.mp4  Crib-20221215080436.mp4  Crib-20221215092449.mp4  Crib-20221215104501.mp4  Crib-20221215120514.mp4  Crib-20221215132527.mp4  Crib-20221215144540.mp4
Back_left-20221215043419.mp4  Crib-20221215052421.mp4  Crib-20221215064433.mp4  Crib-20221215080446.mp4  Crib-20221215092459.mp4  Crib-20221215104512.mp4  Crib-20221215120524.mp4  Crib-20221215132537.mp4  Crib-20221215144550.mp4
Back_left-20221215043427.mp4  Crib-20221215052431.mp4  Crib-20221215064443.mp4  Crib-20221215080456.mp4  Crib-20221215092509.mp4  Crib-20221215104522.mp4  Crib-20221215120534.mp4  Crib-20221215132547.mp4  Crib-20221215144600.mp4
Back_left-20221215043448.mp4  Crib-20221215052441.mp4  Crib-20221215064454.mp4  Crib-20221215080506.mp4  Crib-20221215092519.mp4  Crib-20221215104532.mp4  Crib-20221215120544.mp4  Crib-20221215132557.mp4  Crib-20221215144610.mp4
Back_left-20221215043457.mp4  Crib-20221215052451.mp4  Crib-20221215064504.mp4  Crib-20221215080516.mp4  Crib-20221215092529.mp4  Crib-20221215104542.mp4  Crib-20221215120554.mp4  Crib-20221215132607.mp4  Crib-20221215144620.mp4
Back_left-20221215043507.mp4  Crib-20221215052501.mp4  Crib-20221215064514.mp4  Crib-20221215080526.mp4  Crib-20221215092539.mp4  Crib-20221215104552.mp4  Crib-20221215120604.mp4  Crib-20221215132617.mp4  Crib-20221215144630.mp4
Back_left-20221215043517.mp4  Crib-20221215052511.mp4  Crib-20221215064524.mp4  Crib-20221215080537.mp4  Crib-20221215092549.mp4  Crib-20221215104602.mp4  Crib-20221215120614.mp4  Crib-20221215132627.mp4  Crib-20221215144640.mp4
Back_left-20221215043541.mp4  Crib-20221215052521.mp4  Crib-20221215064534.mp4  Crib-20221215080546.mp4  Crib-20221215092559.mp4  Crib-20221215104612.mp4  Crib-20221215120624.mp4  Crib-20221215132637.mp4  Crib-20221215144650.mp4
Back_left-20221215043550.mp4  Crib-20221215052531.mp4  Crib-20221215064544.mp4  Crib-20221215080556.mp4  Crib-20221215092609.mp4  Crib-20221215104622.mp4  Crib-20221215120634.mp4  Crib-20221215132647.mp4  Crib-20221215144700.mp4
Back_left-20221215043600.mp4  Crib-20221215052541.mp4  Crib-20221215064554.mp4  Crib-20221215080606.mp4  Crib-20221215092619.mp4  Crib-20221215104632.mp4  Crib-20221215120644.mp4  Crib-20221215132657.mp4  Crib-20221215144710.mp4
Back_left-20221215043610.mp4  Crib-20221215052551.mp4  Crib-20221215064604.mp4  Crib-20221215080616.mp4  Crib-20221215092629.mp4  Crib-20221215104642.mp4  Crib-20221215120654.mp4  Crib-20221215132707.mp4  Crib-20221215144720.mp4
Back_left-20221215043631.mp4  Crib-20221215052601.mp4  Crib-20221215064614.mp4  Crib-20221215080626.mp4  Crib-20221215092639.mp4  Crib-20221215104652.mp4  Crib-20221215120704.mp4  Crib-20221215132717.mp4  Crib-20221215144729.mp4
Back_left-20221215043640.mp4  Crib-20221215052611.mp4  Crib-20221215064624.mp4  Crib-20221215080636.mp4  Crib-20221215092649.mp4  Crib-20221215104702.mp4  Crib-20221215120714.mp4  Crib-20221215132727.mp4  Crib-20221215144739.mp4
Back_left-20221215043650.mp4  Crib-20221215052621.mp4  Crib-20221215064634.mp4  Crib-20221215080646.mp4  Crib-20221215092659.mp4  Crib-20221215104712.mp4  Crib-20221215120724.mp4  Crib-20221215132737.mp4  Crib-20221215144750.mp4
Back_left-20221215043700.mp4  Crib-20221215052631.mp4  Crib-20221215064644.mp4  Crib-20221215080656.mp4  Crib-20221215092709.mp4  Crib-20221215104722.mp4  Crib-20221215120734.mp4  Crib-20221215132747.mp4  Crib-20221215144800.mp4
Back_left-20221215043721.mp4  Crib-20221215052641.mp4  Crib-20221215064654.mp4  Crib-20221215080706.mp4  Crib-20221215092719.mp4  Crib-20221215104732.mp4  Crib-20221215120744.mp4  Crib-20221215132757.mp4  Crib-20221215144810.mp4
Back_left-20221215043732.mp4  Crib-20221215052651.mp4  Crib-20221215064704.mp4  Crib-20221215080716.mp4  Crib-20221215092729.mp4  Crib-20221215104742.mp4  Crib-20221215120754.mp4  Crib-20221215132807.mp4  Crib-20221215144820.mp4
Back_left-20221215043742.mp4  Crib-20221215052701.mp4  Crib-20221215064714.mp4  Crib-20221215080726.mp4  Crib-20221215092739.mp4  Crib-20221215104752.mp4  Crib-20221215120804.mp4  Crib-20221215132817.mp4  Crib-20221215144830.mp4
Back_left-20221215043752.mp4  Crib-20221215052711.mp4  Crib-20221215064724.mp4  Crib-20221215080736.mp4  Crib-20221215092749.mp4  Crib-20221215104802.mp4  Crib-20221215120814.mp4  Crib-20221215132827.mp4  Crib-20221215144840.mp4
Back_left-20221215043811.mp4  Crib-20221215052721.mp4  Crib-20221215064734.mp4  Crib-20221215080746.mp4  Crib-20221215092759.mp4  Crib-20221215104812.mp4  Crib-20221215120824.mp4  Crib-20221215132837.mp4  Crib-20221215144851.mp4
Back_left-20221215043820.mp4  Crib-20221215052731.mp4  Crib-20221215064744.mp4  Crib-20221215080756.mp4  Crib-20221215092809.mp4  Crib-20221215104822.mp4  Crib-20221215120834.mp4  Crib-20221215132847.mp4  Crib-20221215144859.mp4
Back_left-20221215043830.mp4  Crib-20221215052741.mp4  Crib-20221215064754.mp4  Crib-20221215080806.mp4  Crib-20221215092819.mp4  Crib-20221215104832.mp4  Crib-20221215120844.mp4  Crib-20221215132857.mp4  Crib-20221215144910.mp4
Back_left-20221215043840.mp4  Crib-20221215052751.mp4  Crib-20221215064804.mp4  Crib-20221215080817.mp4  Crib-20221215092829.mp4  Crib-20221215104842.mp4  Crib-20221215120854.mp4  Crib-20221215132907.mp4  Crib-20221215144920.mp4
Back_left-20221215043904.mp4  Crib-20221215052801.mp4  Crib-20221215064814.mp4  Crib-20221215080826.mp4  Crib-20221215092839.mp4  Crib-20221215104852.mp4  Crib-20221215120904.mp4  Crib-20221215132917.mp4  Crib-20221215144930.mp4
Back_left-20221215043913.mp4  Crib-20221215052811.mp4  Crib-20221215064824.mp4  Crib-20221215080836.mp4  Crib-20221215092849.mp4  Crib-20221215104902.mp4  Crib-20221215120914.mp4  Crib-20221215132927.mp4  Crib-20221215144940.mp4
Back_left-20221215043925.mp4  Crib-20221215052821.mp4  Crib-20221215064834.mp4  Crib-20221215080846.mp4  Crib-20221215092859.mp4  Crib-20221215104912.mp4  Crib-20221215120924.mp4  Crib-20221215132937.mp4  Crib-20221215144950.mp4
Back_left-20221215043935.mp4  Crib-20221215052831.mp4  Crib-20221215064844.mp4  Crib-20221215080856.mp4  Crib-20221215092909.mp4  Crib-20221215104922.mp4  Crib-20221215120934.mp4  Crib-20221215132947.mp4  Crib-20221215145000.mp4
Back_left-20221215043954.mp4  Crib-20221215052841.mp4  Crib-20221215064854.mp4  Crib-20221215080906.mp4  Crib-20221215092919.mp4  Crib-20221215104932.mp4  Crib-20221215120944.mp4  Crib-20221215132957.mp4  Crib-20221215145010.mp4
Back_left-20221215044003.mp4  Crib-20221215052851.mp4  Crib-20221215064904.mp4  Crib-20221215080916.mp4  Crib-20221215092929.mp4  Crib-20221215104942.mp4  Crib-20221215120954.mp4  Crib-20221215133007.mp4  Crib-20221215145020.mp4
Back_left-20221215044013.mp4  Crib-20221215052901.mp4  Crib-20221215064914.mp4  Crib-20221215080926.mp4  Crib-20221215092939.mp4  Crib-20221215104952.mp4  Crib-20221215121004.mp4  Crib-20221215133017.mp4  Crib-20221215145030.mp4
Back_left-20221215044023.mp4  Crib-20221215052911.mp4  Crib-20221215064924.mp4  Crib-20221215080936.mp4  Crib-20221215092949.mp4  Crib-20221215105002.mp4  Crib-20221215121014.mp4  Crib-20221215133027.mp4  Crib-20221215145042.mp4
Back_left-20221215044049.mp4  Crib-20221215052921.mp4  Crib-20221215064934.mp4  Crib-20221215080946.mp4  Crib-20221215092959.mp4  Crib-20221215105012.mp4  Crib-20221215121024.mp4  Crib-20221215133037.mp4  Crib-20221215145050.mp4
Back_left-20221215044058.mp4  Crib-20221215052931.mp4  Crib-20221215064944.mp4  Crib-20221215080956.mp4  Crib-20221215093009.mp4  Crib-20221215105022.mp4  Crib-20221215121034.mp4  Crib-20221215133047.mp4  Crib-20221215145101.mp4
Back_left-20221215044108.mp4  Crib-20221215052941.mp4  Crib-20221215064954.mp4  Crib-20221215081007.mp4  Crib-20221215093019.mp4  Crib-20221215105032.mp4  Crib-20221215121044.mp4  Crib-20221215133057.mp4  Crib-20221215145111.mp4
Back_left-20221215044118.mp4  Crib-20221215052951.mp4  Crib-20221215065004.mp4  Crib-20221215081016.mp4  Crib-20221215093029.mp4  Crib-20221215105042.mp4  Crib-20221215121054.mp4  Crib-20221215133107.mp4  Crib-20221215145121.mp4
Back_left-20221215044133.mp4  Crib-20221215053001.mp4  Crib-20221215065014.mp4  Crib-20221215081026.mp4  Crib-20221215093039.mp4  Crib-20221215105052.mp4  Crib-20221215121104.mp4  Crib-20221215133117.mp4  Crib-20221215145130.mp4
Back_left-20221215044141.mp4  Crib-20221215053011.mp4  Crib-20221215065024.mp4  Crib-20221215081036.mp4  Crib-20221215093049.mp4  Crib-20221215105102.mp4  Crib-20221215121114.mp4  Crib-20221215133127.mp4  Crib-20221215145141.mp4
Back_left-20221215044151.mp4  Crib-20221215053021.mp4  Crib-20221215065034.mp4  Crib-20221215081046.mp4  Crib-20221215093059.mp4  Crib-20221215105112.mp4  Crib-20221215121124.mp4  Crib-20221215133137.mp4  Crib-20221215145151.mp4
Back_left-20221215044203.mp4  Crib-20221215053031.mp4  Crib-20221215065044.mp4  Crib-20221215081056.mp4  Crib-20221215093109.mp4  Crib-20221215105122.mp4  Crib-20221215121135.mp4  Crib-20221215133147.mp4  Crib-20221215145200.mp4
Back_left-20221215044223.mp4  Crib-20221215053041.mp4  Crib-20221215065054.mp4  Crib-20221215081106.mp4  Crib-20221215093119.mp4  Crib-20221215105132.mp4  Crib-20221215121144.mp4  Crib-20221215133157.mp4  Crib-20221215145210.mp4
Back_left-20221215044231.mp4  Crib-20221215053051.mp4  Crib-20221215065104.mp4  Crib-20221215081116.mp4  Crib-20221215093129.mp4  Crib-20221215105142.mp4  Crib-20221215121154.mp4  Crib-20221215133207.mp4  Crib-20221215145220.mp4
Back_left-20221215044241.mp4  Crib-20221215053101.mp4  Crib-20221215065114.mp4  Crib-20221215081126.mp4  Crib-20221215093139.mp4  Crib-20221215105152.mp4  Crib-20221215121204.mp4  Crib-20221215133217.mp4  Crib-20221215145230.mp4
Back_left-20221215044251.mp4  Crib-20221215053111.mp4  Crib-20221215065124.mp4  Crib-20221215081136.mp4  Crib-20221215093149.mp4  Crib-20221215105202.mp4  Crib-20221215121215.mp4  Crib-20221215133227.mp4  Crib-20221215145240.mp4
Back_left-20221215044315.mp4  Crib-20221215053121.mp4  Crib-20221215065134.mp4  Crib-20221215081146.mp4  Crib-20221215093159.mp4  Crib-20221215105212.mp4  Crib-20221215121224.mp4  Crib-20221215133237.mp4  Crib-20221215145250.mp4
Back_left-20221215044324.mp4  Crib-20221215053131.mp4  Crib-20221215065144.mp4  Crib-20221215081156.mp4  Crib-20221215093209.mp4  Crib-20221215105222.mp4  Crib-20221215121234.mp4  Crib-20221215133247.mp4  Crib-20221215145300.mp4
Back_left-20221215044334.mp4  Crib-20221215053141.mp4  Crib-20221215065154.mp4  Crib-20221215081206.mp4  Crib-20221215093219.mp4  Crib-20221215105232.mp4  Crib-20221215121244.mp4  Crib-20221215133257.mp4  Crib-20221215145310.mp4
Back_left-20221215044344.mp4  Crib-20221215053151.mp4  Crib-20221215065204.mp4  Crib-20221215081216.mp4  Crib-20221215093229.mp4  Crib-20221215105242.mp4  Crib-20221215121254.mp4  Crib-20221215133307.mp4  Crib-20221215145320.mp4
Back_left-20221215044406.mp4  Crib-20221215053201.mp4  Crib-20221215065214.mp4  Crib-20221215081226.mp4  Crib-20221215093239.mp4  Crib-20221215105252.mp4  Crib-20221215121304.mp4  Crib-20221215133317.mp4  Crib-20221215145330.mp4
Back_left-20221215044414.mp4  Crib-20221215053211.mp4  Crib-20221215065224.mp4  Crib-20221215081236.mp4  Crib-20221215093249.mp4  Crib-20221215105302.mp4  Crib-20221215121314.mp4  Crib-20221215133327.mp4  Crib-20221215145340.mp4
Back_left-20221215044424.mp4  Crib-20221215053221.mp4  Crib-20221215065234.mp4  Crib-20221215081246.mp4  Crib-20221215093259.mp4  Crib-20221215105312.mp4  Crib-20221215121324.mp4  Crib-20221215133337.mp4  Crib-20221215145350.mp4
Back_left-20221215044434.mp4  Crib-20221215053231.mp4  Crib-20221215065244.mp4  Crib-20221215081257.mp4  Crib-20221215093309.mp4  Crib-20221215105322.mp4  Crib-20221215121334.mp4  Crib-20221215133347.mp4  Crib-20221215145400.mp4
Back_left-20221215044456.mp4  Crib-20221215053241.mp4  Crib-20221215065254.mp4  Crib-20221215081306.mp4  Crib-20221215093319.mp4  Crib-20221215105332.mp4  Crib-20221215121344.mp4  Crib-20221215133357.mp4  Crib-20221215145410.mp4
Back_left-20221215044506.mp4  Crib-20221215053251.mp4  Crib-20221215065304.mp4  Crib-20221215081317.mp4  Crib-20221215093329.mp4  Crib-20221215105342.mp4  Crib-20221215121355.mp4  Crib-20221215133407.mp4  Crib-20221215145420.mp4
Back_left-20221215044516.mp4  Crib-20221215053301.mp4  Crib-20221215065314.mp4  Crib-20221215081327.mp4  Crib-20221215093339.mp4  Crib-20221215105352.mp4  Crib-20221215121404.mp4  Crib-20221215133417.mp4  Crib-20221215145430.mp4
Back_left-20221215044524.mp4  Crib-20221215053311.mp4  Crib-20221215065324.mp4  Crib-20221215081337.mp4  Crib-20221215093349.mp4  Crib-20221215105402.mp4  Crib-20221215121414.mp4  Crib-20221215133427.mp4  Crib-20221215145440.mp4
Back_left-20221215044546.mp4  Crib-20221215053321.mp4  Crib-20221215065334.mp4  Crib-20221215081347.mp4  Crib-20221215093359.mp4  Crib-20221215105412.mp4  Crib-20221215121425.mp4  Crib-20221215133437.mp4  Crib-20221215145450.mp4
Back_left-20221215044554.mp4  Crib-20221215053331.mp4  Crib-20221215065344.mp4  Crib-20221215081357.mp4  Crib-20221215093409.mp4  Crib-20221215105422.mp4  Crib-20221215121435.mp4  Crib-20221215133447.mp4  Crib-20221215145500.mp4
Back_left-20221215044604.mp4  Crib-20221215053341.mp4  Crib-20221215065354.mp4  Crib-20221215081407.mp4  Crib-20221215093419.mp4  Crib-20221215105432.mp4  Crib-20221215121445.mp4  Crib-20221215133457.mp4  Crib-20221215145510.mp4
Back_left-20221215044614.mp4  Crib-20221215053351.mp4  Crib-20221215065404.mp4  Crib-20221215081416.mp4  Crib-20221215093429.mp4  Crib-20221215105442.mp4  Crib-20221215121455.mp4  Crib-20221215133507.mp4  Crib-20221215145520.mp4
Back_left-20221215044641.mp4  Crib-20221215053401.mp4  Crib-20221215065414.mp4  Crib-20221215081427.mp4  Crib-20221215093439.mp4  Crib-20221215105452.mp4  Crib-20221215121505.mp4  Crib-20221215133517.mp4  Crib-20221215145530.mp4
Back_left-20221215044651.mp4  Crib-20221215053411.mp4  Crib-20221215065424.mp4  Crib-20221215081437.mp4  Crib-20221215093449.mp4  Crib-20221215105502.mp4  Crib-20221215121515.mp4  Crib-20221215133527.mp4  Crib-20221215145540.mp4
Back_left-20221215044701.mp4  Crib-20221215053421.mp4  Crib-20221215065434.mp4  Crib-20221215081446.mp4  Crib-20221215093459.mp4  Crib-20221215105512.mp4  Crib-20221215121525.mp4  Crib-20221215133537.mp4  Crib-20221215145550.mp4
Back_left-20221215044711.mp4  Crib-20221215053431.mp4  Crib-20221215065444.mp4  Crib-20221215081457.mp4  Crib-20221215093509.mp4  Crib-20221215105522.mp4  Crib-20221215121535.mp4  Crib-20221215133547.mp4  Crib-20221215145600.mp4
Back_left-20221215044731.mp4  Crib-20221215053441.mp4  Crib-20221215065454.mp4  Crib-20221215081507.mp4  Crib-20221215093519.mp4  Crib-20221215105532.mp4  Crib-20221215121545.mp4  Crib-20221215133557.mp4  Crib-20221215145610.mp4
Back_left-20221215044741.mp4  Crib-20221215053451.mp4  Crib-20221215065504.mp4  Crib-20221215081517.mp4  Crib-20221215093529.mp4  Crib-20221215105542.mp4  Crib-20221215121555.mp4  Crib-20221215133607.mp4  Crib-20221215145620.mp4
Back_left-20221215044751.mp4  Crib-20221215053501.mp4  Crib-20221215065514.mp4  Crib-20221215081527.mp4  Crib-20221215093539.mp4  Crib-20221215105552.mp4  Crib-20221215121605.mp4  Crib-20221215133617.mp4  Crib-20221215145630.mp4
Back_left-20221215044801.mp4  Crib-20221215053511.mp4  Crib-20221215065524.mp4  Crib-20221215081537.mp4  Crib-20221215093549.mp4  Crib-20221215105602.mp4  Crib-20221215121615.mp4  Crib-20221215133627.mp4  Crib-20221215145640.mp4
Back_left-20221215044816.mp4  Crib-20221215053521.mp4  Crib-20221215065534.mp4  Crib-20221215081547.mp4  Crib-20221215093559.mp4  Crib-20221215105612.mp4  Crib-20221215121625.mp4  Crib-20221215133638.mp4  Crib-20221215145650.mp4
Back_left-20221215044824.mp4  Crib-20221215053531.mp4  Crib-20221215065544.mp4  Crib-20221215081557.mp4  Crib-20221215093609.mp4  Crib-20221215105622.mp4  Crib-20221215121635.mp4  Crib-20221215133647.mp4  Crib-20221215145700.mp4
Back_left-20221215044836.mp4  Crib-20221215053541.mp4  Crib-20221215065554.mp4  Crib-20221215081607.mp4  Crib-20221215093619.mp4  Crib-20221215105632.mp4  Crib-20221215121645.mp4  Crib-20221215133657.mp4  Crib-20221215145710.mp4
Back_left-20221215044900.mp4  Crib-20221215053551.mp4  Crib-20221215065604.mp4  Crib-20221215081617.mp4  Crib-20221215093629.mp4  Crib-20221215105642.mp4  Crib-20221215121655.mp4  Crib-20221215133707.mp4  Crib-20221215145720.mp4
Back_left-20221215044910.mp4  Crib-20221215053601.mp4  Crib-20221215065614.mp4  Crib-20221215081627.mp4  Crib-20221215093639.mp4  Crib-20221215105652.mp4  Crib-20221215121705.mp4  Crib-20221215133717.mp4  Crib-20221215145730.mp4
Back_left-20221215044918.mp4  Crib-20221215053611.mp4  Crib-20221215065624.mp4  Crib-20221215081637.mp4  Crib-20221215093649.mp4  Crib-20221215105702.mp4  Crib-20221215121715.mp4  Crib-20221215133727.mp4  Crib-20221215145740.mp4
Back_left-20221215044930.mp4  Crib-20221215053621.mp4  Crib-20221215065634.mp4  Crib-20221215081647.mp4  Crib-20221215093659.mp4  Crib-20221215105712.mp4  Crib-20221215121725.mp4  Crib-20221215133737.mp4  Crib-20221215145750.mp4
Back_left-20221215044950.mp4  Crib-20221215053631.mp4  Crib-20221215065644.mp4  Crib-20221215081657.mp4  Crib-20221215093709.mp4  Crib-20221215105722.mp4  Crib-20221215121735.mp4  Crib-20221215133747.mp4  Crib-20221215145800.mp4
Back_left-20221215045000.mp4  Crib-20221215053641.mp4  Crib-20221215065654.mp4  Crib-20221215081707.mp4  Crib-20221215093719.mp4  Crib-20221215105732.mp4  Crib-20221215121745.mp4  Crib-20221215133757.mp4  Crib-20221215145810.mp4
Back_left-20221215045010.mp4  Crib-20221215053651.mp4  Crib-20221215065704.mp4  Crib-20221215081717.mp4  Crib-20221215093729.mp4  Crib-20221215105742.mp4  Crib-20221215121755.mp4  Crib-20221215133807.mp4  Crib-20221215145820.mp4
Back_left-20221215045020.mp4  Crib-20221215053701.mp4  Crib-20221215065714.mp4  Crib-20221215081727.mp4  Crib-20221215093739.mp4  Crib-20221215105752.mp4  Crib-20221215121805.mp4  Crib-20221215133817.mp4  Crib-20221215145830.mp4
Back_left-20221215045045.mp4  Crib-20221215053711.mp4  Crib-20221215065724.mp4  Crib-20221215081737.mp4  Crib-20221215093749.mp4  Crib-20221215105802.mp4  Crib-20221215121815.mp4  Crib-20221215133827.mp4  Crib-20221215145840.mp4
Back_left-20221215045054.mp4  Crib-20221215053721.mp4  Crib-20221215065734.mp4  Crib-20221215081747.mp4  Crib-20221215093759.mp4  Crib-20221215105812.mp4  Crib-20221215121825.mp4  Crib-20221215133837.mp4  Crib-20221215145850.mp4
Back_left-20221215045104.mp4  Crib-20221215053731.mp4  Crib-20221215065744.mp4  Crib-20221215081757.mp4  Crib-20221215093809.mp4  Crib-20221215105822.mp4  Crib-20221215121835.mp4  Crib-20221215133847.mp4  Crib-20221215145900.mp4
Back_left-20221215045115.mp4  Crib-20221215053741.mp4  Crib-20221215065754.mp4  Crib-20221215081807.mp4  Crib-20221215093819.mp4  Crib-20221215105832.mp4  Crib-20221215121845.mp4  Crib-20221215133857.mp4  Crib-20221215145910.mp4
Back_left-20221215045130.mp4  Crib-20221215053751.mp4  Crib-20221215065804.mp4  Crib-20221215081817.mp4  Crib-20221215093829.mp4  Crib-20221215105842.mp4  Crib-20221215121855.mp4  Crib-20221215133907.mp4  Crib-20221215145920.mp4
Back_left-20221215045140.mp4  Crib-20221215053801.mp4  Crib-20221215065814.mp4  Crib-20221215081827.mp4  Crib-20221215093839.mp4  Crib-20221215105852.mp4  Crib-20221215121905.mp4  Crib-20221215133917.mp4  Crib-20221215145930.mp4
Back_left-20221215045150.mp4  Crib-20221215053811.mp4  Crib-20221215065824.mp4  Crib-20221215081837.mp4  Crib-20221215093849.mp4  Crib-20221215105902.mp4  Crib-20221215121915.mp4  Crib-20221215133927.mp4  Crib-20221215145940.mp4
Back_left-20221215045200.mp4  Crib-20221215053821.mp4  Crib-20221215065834.mp4  Crib-20221215081847.mp4  Crib-20221215093859.mp4  Crib-20221215105912.mp4  Crib-20221215121925.mp4  Crib-20221215133937.mp4  Crib-20221215145950.mp4
Back_left-20221215045210.mp4  Crib-20221215053831.mp4  Crib-20221215065844.mp4  Crib-20221215081857.mp4  Crib-20221215093909.mp4  Crib-20221215105922.mp4  Crib-20221215121935.mp4  Crib-20221215133947.mp4  Crib-20221215150000.mp4
Back_left-20221215045220.mp4  Crib-20221215053841.mp4  Crib-20221215065854.mp4  Crib-20221215081907.mp4  Crib-20221215093919.mp4  Crib-20221215105932.mp4  Crib-20221215121945.mp4  Crib-20221215133957.mp4  Crib-20221215150010.mp4
Back_left-20221215045230.mp4  Crib-20221215053851.mp4  Crib-20221215065904.mp4  Crib-20221215081917.mp4  Crib-20221215093930.mp4  Crib-20221215105942.mp4  Crib-20221215121955.mp4  Crib-20221215134007.mp4  Crib-20221215150020.mp4
Back_left-20221215045240.mp4  Crib-20221215053901.mp4  Crib-20221215065914.mp4  Crib-20221215081927.mp4  Crib-20221215093939.mp4  Crib-20221215105952.mp4  Crib-20221215122005.mp4  Crib-20221215134017.mp4  Crib-20221215150030.mp4
Back_left-20221215045250.mp4  Crib-20221215053911.mp4  Crib-20221215065924.mp4  Crib-20221215081937.mp4  Crib-20221215093949.mp4  Crib-20221215110002.mp4  Crib-20221215122015.mp4  Crib-20221215134027.mp4  Crib-20221215150040.mp4
Back_left-20221215045300.mp4  Crib-20221215053921.mp4  Crib-20221215065934.mp4  Crib-20221215081947.mp4  Crib-20221215093959.mp4  Crib-20221215110012.mp4  Crib-20221215122025.mp4  Crib-20221215134037.mp4  Crib-20221215150050.mp4
Back_left-20221215045310.mp4  Crib-20221215053931.mp4  Crib-20221215065944.mp4  Crib-20221215081957.mp4  Crib-20221215094009.mp4  Crib-20221215110022.mp4  Crib-20221215122035.mp4  Crib-20221215134047.mp4  Crib-20221215150100.mp4
Back_left-20221215045320.mp4  Crib-20221215053941.mp4  Crib-20221215065954.mp4  Crib-20221215082007.mp4  Crib-20221215094019.mp4  Crib-20221215110032.mp4  Crib-20221215122045.mp4  Crib-20221215134057.mp4  Crib-20221215150110.mp4
Back_left-20221215045330.mp4  Crib-20221215053951.mp4  Crib-20221215070004.mp4  Crib-20221215082017.mp4  Crib-20221215094029.mp4  Crib-20221215110042.mp4  Crib-20221215122055.mp4  Crib-20221215134107.mp4  Crib-20221215150120.mp4
Back_left-20221215045340.mp4  Crib-20221215054001.mp4  Crib-20221215070014.mp4  Crib-20221215082027.mp4  Crib-20221215094039.mp4  Crib-20221215110052.mp4  Crib-20221215122105.mp4  Crib-20221215134117.mp4  Crib-20221215150130.mp4
Back_left-20221215045350.mp4  Crib-20221215054011.mp4  Crib-20221215070024.mp4  Crib-20221215082037.mp4  Crib-20221215094049.mp4  Crib-20221215110102.mp4  Crib-20221215122115.mp4  Crib-20221215134127.mp4  Crib-20221215150140.mp4
Back_left-20221215045400.mp4  Crib-20221215054021.mp4  Crib-20221215070034.mp4  Crib-20221215082047.mp4  Crib-20221215094059.mp4  Crib-20221215110112.mp4  Crib-20221215122125.mp4  Crib-20221215134137.mp4  Crib-20221215150150.mp4
Back_left-20221215045410.mp4  Crib-20221215054031.mp4  Crib-20221215070044.mp4  Crib-20221215082057.mp4  Crib-20221215094109.mp4  Crib-20221215110122.mp4  Crib-20221215122135.mp4  Crib-20221215134147.mp4  Crib-20221215150200.mp4
Back_left-20221215045420.mp4  Crib-20221215054041.mp4  Crib-20221215070054.mp4  Crib-20221215082107.mp4  Crib-20221215094119.mp4  Crib-20221215110132.mp4  Crib-20221215122145.mp4  Crib-20221215134157.mp4  Crib-20221215150210.mp4
Back_left-20221215045430.mp4  Crib-20221215054051.mp4  Crib-20221215070104.mp4  Crib-20221215082117.mp4  Crib-20221215094129.mp4  Crib-20221215110142.mp4  Crib-20221215122155.mp4  Crib-20221215134207.mp4  Crib-20221215150220.mp4
Back_left-20221215045440.mp4  Crib-20221215054101.mp4  Crib-20221215070114.mp4  Crib-20221215082127.mp4  Crib-20221215094139.mp4  Crib-20221215110152.mp4  Crib-20221215122205.mp4  Crib-20221215134217.mp4  Crib-20221215150230.mp4
Back_left-20221215045450.mp4  Crib-20221215054111.mp4  Crib-20221215070124.mp4  Crib-20221215082137.mp4  Crib-20221215094149.mp4  Crib-20221215110202.mp4  Crib-20221215122215.mp4  Crib-20221215134227.mp4  Crib-20221215150240.mp4
Back_left-20221215045500.mp4  Crib-20221215054121.mp4  Crib-20221215070134.mp4  Crib-20221215082147.mp4  Crib-20221215094159.mp4  Crib-20221215110212.mp4  Crib-20221215122225.mp4  Crib-20221215134237.mp4  Crib-20221215150250.mp4
Back_left-20221215045513.mp4  Crib-20221215054131.mp4  Crib-20221215070144.mp4  Crib-20221215082157.mp4  Crib-20221215094209.mp4  Crib-20221215110222.mp4  Crib-20221215122235.mp4  Crib-20221215134247.mp4  Crib-20221215150300.mp4
Back_left-20221215045523.mp4  Crib-20221215054141.mp4  Crib-20221215070154.mp4  Crib-20221215082207.mp4  Crib-20221215094219.mp4  Crib-20221215110232.mp4  Crib-20221215122245.mp4  Crib-20221215134257.mp4  Crib-20221215150310.mp4
Back_left-20221215045533.mp4  Crib-20221215054151.mp4  Crib-20221215070204.mp4  Crib-20221215082217.mp4  Crib-20221215094229.mp4  Crib-20221215110242.mp4  Crib-20221215122255.mp4  Crib-20221215134307.mp4  Crib-20221215150320.mp4
Crib-20221215042143.mp4       Crib-20221215054201.mp4  Crib-20221215070214.mp4  Crib-20221215082227.mp4  Crib-20221215094239.mp4  Crib-20221215110252.mp4  Crib-20221215122305.mp4  Crib-20221215134317.mp4  Crib-20221215150330.mp4
Crib-20221215042153.mp4       Crib-20221215054211.mp4  Crib-20221215070224.mp4  Crib-20221215082237.mp4  Crib-20221215094249.mp4  Crib-20221215110302.mp4  Crib-20221215122315.mp4  Crib-20221215134328.mp4  Crib-20221215150340.mp4
Crib-20221215042203.mp4       Crib-20221215054221.mp4  Crib-20221215070234.mp4  Crib-20221215082247.mp4  Crib-20221215094300.mp4  Crib-20221215110312.mp4  Crib-20221215122325.mp4  Crib-20221215134338.mp4  Crib-20221215150350.mp4
Crib-20221215042213.mp4       Crib-20221215054231.mp4  Crib-20221215070244.mp4  Crib-20221215082257.mp4  Crib-20221215094309.mp4  Crib-20221215110322.mp4  Crib-20221215122335.mp4  Crib-20221215134347.mp4  Crib-20221215150400.mp4
Crib-20221215042223.mp4       Crib-20221215054242.mp4  Crib-20221215070254.mp4  Crib-20221215082307.mp4  Crib-20221215094319.mp4  Crib-20221215110332.mp4  Crib-20221215122345.mp4  Crib-20221215134358.mp4  Crib-20221215150410.mp4
Crib-20221215042233.mp4       Crib-20221215054252.mp4  Crib-20221215070304.mp4  Crib-20221215082317.mp4  Crib-20221215094329.mp4  Crib-20221215110342.mp4  Crib-20221215122355.mp4  Crib-20221215134408.mp4  Crib-20221215150420.mp4
Crib-20221215042243.mp4       Crib-20221215054301.mp4  Crib-20221215070314.mp4  Crib-20221215082327.mp4  Crib-20221215094339.mp4  Crib-20221215110352.mp4  Crib-20221215122405.mp4  Crib-20221215134418.mp4  Crib-20221215150430.mp4
Crib-20221215042253.mp4       Crib-20221215054312.mp4  Crib-20221215070324.mp4  Crib-20221215082337.mp4  Crib-20221215094349.mp4  Crib-20221215110402.mp4  Crib-20221215122415.mp4  Crib-20221215134428.mp4  Crib-20221215150440.mp4
Crib-20221215042303.mp4       Crib-20221215054322.mp4  Crib-20221215070334.mp4  Crib-20221215082347.mp4  Crib-20221215094359.mp4  Crib-20221215110412.mp4  Crib-20221215122425.mp4  Crib-20221215134438.mp4  Crib-20221215150450.mp4
Crib-20221215042313.mp4       Crib-20221215054331.mp4  Crib-20221215070344.mp4  Crib-20221215082357.mp4  Crib-20221215094409.mp4  Crib-20221215110422.mp4  Crib-20221215122435.mp4  Crib-20221215134448.mp4  Crib-20221215150500.mp4
Crib-20221215042323.mp4       Crib-20221215054342.mp4  Crib-20221215070354.mp4  Crib-20221215082407.mp4  Crib-20221215094419.mp4  Crib-20221215110432.mp4  Crib-20221215122445.mp4  Crib-20221215134458.mp4  Crib-20221215150510.mp4
Crib-20221215042333.mp4       Crib-20221215054352.mp4  Crib-20221215070404.mp4  Crib-20221215082417.mp4  Crib-20221215094429.mp4  Crib-20221215110442.mp4  Crib-20221215122455.mp4  Crib-20221215134508.mp4  Crib-20221215150520.mp4
Crib-20221215042343.mp4       Crib-20221215054401.mp4  Crib-20221215070414.mp4  Crib-20221215082427.mp4  Crib-20221215094440.mp4  Crib-20221215110452.mp4  Crib-20221215122505.mp4  Crib-20221215134518.mp4  Crib-20221215150530.mp4
Crib-20221215042353.mp4       Crib-20221215054411.mp4  Crib-20221215070424.mp4  Crib-20221215082437.mp4  Crib-20221215094450.mp4  Crib-20221215110502.mp4  Crib-20221215122515.mp4  Crib-20221215134528.mp4  Crib-20221215150540.mp4
Crib-20221215042403.mp4       Crib-20221215054421.mp4  Crib-20221215070434.mp4  Crib-20221215082447.mp4  Crib-20221215094500.mp4  Crib-20221215110512.mp4  Crib-20221215122525.mp4  Crib-20221215134538.mp4  Crib-20221215150550.mp4
Crib-20221215042413.mp4       Crib-20221215054432.mp4  Crib-20221215070444.mp4  Crib-20221215082457.mp4  Crib-20221215094509.mp4  Crib-20221215110522.mp4  Crib-20221215122535.mp4  Crib-20221215134548.mp4  Crib-20221215150600.mp4
Crib-20221215042423.mp4       Crib-20221215054442.mp4  Crib-20221215070454.mp4  Crib-20221215082507.mp4  Crib-20221215094519.mp4  Crib-20221215110532.mp4  Crib-20221215122545.mp4  Crib-20221215134558.mp4  Crib-20221215150610.mp4
Crib-20221215042433.mp4       Crib-20221215054452.mp4  Crib-20221215070504.mp4  Crib-20221215082517.mp4  Crib-20221215094530.mp4  Crib-20221215110542.mp4  Crib-20221215122555.mp4  Crib-20221215134608.mp4  Crib-20221215150620.mp4
Crib-20221215042443.mp4       Crib-20221215054502.mp4  Crib-20221215070514.mp4  Crib-20221215082527.mp4  Crib-20221215094539.mp4  Crib-20221215110552.mp4  Crib-20221215122605.mp4  Crib-20221215134618.mp4  Crib-20221215150630.mp4
Crib-20221215042453.mp4       Crib-20221215054512.mp4  Crib-20221215070524.mp4  Crib-20221215082537.mp4  Crib-20221215094549.mp4  Crib-20221215110602.mp4  Crib-20221215122615.mp4  Crib-20221215134628.mp4  Crib-20221215150640.mp4
Crib-20221215042503.mp4       Crib-20221215054522.mp4  Crib-20221215070534.mp4  Crib-20221215082547.mp4  Crib-20221215094600.mp4  Crib-20221215110612.mp4  Crib-20221215122625.mp4  Crib-20221215134638.mp4  Crib-20221215150650.mp4
Crib-20221215042513.mp4       Crib-20221215054532.mp4  Crib-20221215070544.mp4  Crib-20221215082557.mp4  Crib-20221215094610.mp4  Crib-20221215110622.mp4  Crib-20221215122635.mp4  Crib-20221215134648.mp4  Crib-20221215150700.mp4
Crib-20221215042523.mp4       Crib-20221215054542.mp4  Crib-20221215070554.mp4  Crib-20221215082607.mp4  Crib-20221215094620.mp4  Crib-20221215110632.mp4  Crib-20221215122645.mp4  Crib-20221215134658.mp4  Crib-20221215150710.mp4
Crib-20221215042533.mp4       Crib-20221215054552.mp4  Crib-20221215070604.mp4  Crib-20221215082617.mp4  Crib-20221215094630.mp4  Crib-20221215110642.mp4  Crib-20221215122655.mp4  Crib-20221215134708.mp4  Crib-20221215150720.mp4
Crib-20221215042543.mp4       Crib-20221215054602.mp4  Crib-20221215070614.mp4  Crib-20221215082627.mp4  Crib-20221215094639.mp4  Crib-20221215110652.mp4  Crib-20221215122705.mp4  Crib-20221215134718.mp4  Crib-20221215150730.mp4
Crib-20221215042553.mp4       Crib-20221215054612.mp4  Crib-20221215070624.mp4  Crib-20221215082637.mp4  Crib-20221215094650.mp4  Crib-20221215110702.mp4  Crib-20221215122715.mp4  Crib-20221215134728.mp4  Crib-20221215150740.mp4
Crib-20221215042603.mp4       Crib-20221215054622.mp4  Crib-20221215070634.mp4  Crib-20221215082647.mp4  Crib-20221215094700.mp4  Crib-20221215110712.mp4  Crib-20221215122725.mp4  Crib-20221215134738.mp4  Crib-20221215150750.mp4
Crib-20221215042613.mp4       Crib-20221215054632.mp4  Crib-20221215070644.mp4  Crib-20221215082657.mp4  Crib-20221215094710.mp4  Crib-20221215110722.mp4  Crib-20221215122735.mp4  Crib-20221215134748.mp4  Crib-20221215150800.mp4
Crib-20221215042623.mp4       Crib-20221215054642.mp4  Crib-20221215070654.mp4  Crib-20221215082707.mp4  Crib-20221215094720.mp4  Crib-20221215110732.mp4  Crib-20221215122745.mp4  Crib-20221215134758.mp4  Crib-20221215150810.mp4
Crib-20221215042633.mp4       Crib-20221215054652.mp4  Crib-20221215070704.mp4  Crib-20221215082717.mp4  Crib-20221215094730.mp4  Crib-20221215110742.mp4  Crib-20221215122755.mp4  Crib-20221215134808.mp4  Crib-20221215150820.mp4
Crib-20221215042643.mp4       Crib-20221215054702.mp4  Crib-20221215070714.mp4  Crib-20221215082727.mp4  Crib-20221215094740.mp4  Crib-20221215110752.mp4  Crib-20221215122805.mp4  Crib-20221215134818.mp4  Crib-20221215150830.mp4
Crib-20221215042653.mp4       Crib-20221215054712.mp4  Crib-20221215070724.mp4  Crib-20221215082737.mp4  Crib-20221215094750.mp4  Crib-20221215110802.mp4  Crib-20221215122815.mp4  Crib-20221215134828.mp4  Crib-20221215150840.mp4
Crib-20221215042703.mp4       Crib-20221215054722.mp4  Crib-20221215070734.mp4  Crib-20221215082747.mp4  Crib-20221215094800.mp4  Crib-20221215110812.mp4  Crib-20221215122825.mp4  Crib-20221215134838.mp4  Crib-20221215150850.mp4
Crib-20221215042713.mp4       Crib-20221215054732.mp4  Crib-20221215070744.mp4  Crib-20221215082757.mp4  Crib-20221215094810.mp4  Crib-20221215110822.mp4  Crib-20221215122835.mp4  Crib-20221215134848.mp4  Crib-20221215150900.mp4
Crib-20221215042723.mp4       Crib-20221215054742.mp4  Crib-20221215070754.mp4  Crib-20221215082807.mp4  Crib-20221215094820.mp4  Crib-20221215110832.mp4  Crib-20221215122845.mp4  Crib-20221215134858.mp4  Crib-20221215150910.mp4
Crib-20221215042733.mp4       Crib-20221215054752.mp4  Crib-20221215070804.mp4  Crib-20221215082817.mp4  Crib-20221215094830.mp4  Crib-20221215110842.mp4  Crib-20221215122855.mp4  Crib-20221215134908.mp4  Crib-20221215150920.mp4
Crib-20221215042743.mp4       Crib-20221215054802.mp4  Crib-20221215070814.mp4  Crib-20221215082827.mp4  Crib-20221215094840.mp4  Crib-20221215110852.mp4  Crib-20221215122905.mp4  Crib-20221215134918.mp4  Crib-20221215150930.mp4
Crib-20221215042753.mp4       Crib-20221215054812.mp4  Crib-20221215070824.mp4  Crib-20221215082837.mp4  Crib-20221215094850.mp4  Crib-20221215110902.mp4  Crib-20221215122915.mp4  Crib-20221215134928.mp4  Crib-20221215150940.mp4
Crib-20221215042803.mp4       Crib-20221215054822.mp4  Crib-20221215070834.mp4  Crib-20221215082847.mp4  Crib-20221215094900.mp4  Crib-20221215110912.mp4  Crib-20221215122925.mp4  Crib-20221215134938.mp4  Crib-20221215150950.mp4
Crib-20221215042813.mp4       Crib-20221215054832.mp4  Crib-20221215070844.mp4  Crib-20221215082857.mp4  Crib-20221215094910.mp4  Crib-20221215110922.mp4  Crib-20221215122935.mp4  Crib-20221215134948.mp4  Crib-20221215151000.mp4
Crib-20221215042823.mp4       Crib-20221215054842.mp4  Crib-20221215070854.mp4  Crib-20221215082907.mp4  Crib-20221215094920.mp4  Crib-20221215110932.mp4  Crib-20221215122945.mp4  Crib-20221215134958.mp4  Crib-20221215151010.mp4
Crib-20221215042833.mp4       Crib-20221215054852.mp4  Crib-20221215070904.mp4  Crib-20221215082917.mp4  Crib-20221215094930.mp4  Crib-20221215110942.mp4  Crib-20221215122955.mp4  Crib-20221215135008.mp4  Crib-20221215151020.mp4
Crib-20221215042843.mp4       Crib-20221215054902.mp4  Crib-20221215070914.mp4  Crib-20221215082927.mp4  Crib-20221215094940.mp4  Crib-20221215110952.mp4  Crib-20221215123005.mp4  Crib-20221215135018.mp4  Crib-20221215151030.mp4
Crib-20221215042853.mp4       Crib-20221215054912.mp4  Crib-20221215070924.mp4  Crib-20221215082937.mp4  Crib-20221215094950.mp4  Crib-20221215111002.mp4  Crib-20221215123015.mp4  Crib-20221215135028.mp4  Crib-20221215151040.mp4
Crib-20221215042903.mp4       Crib-20221215054922.mp4  Crib-20221215070934.mp4  Crib-20221215082947.mp4  Crib-20221215095000.mp4  Crib-20221215111012.mp4  Crib-20221215123025.mp4  Crib-20221215135038.mp4  Crib-20221215151050.mp4
Crib-20221215042913.mp4       Crib-20221215054932.mp4  Crib-20221215070944.mp4  Crib-20221215082957.mp4  Crib-20221215095010.mp4  Crib-20221215111022.mp4  Crib-20221215123035.mp4  Crib-20221215135048.mp4  Crib-20221215151100.mp4
Crib-20221215042923.mp4       Crib-20221215054942.mp4  Crib-20221215070954.mp4  Crib-20221215083007.mp4  Crib-20221215095020.mp4  Crib-20221215111032.mp4  Crib-20221215123045.mp4  Crib-20221215135058.mp4  Crib-20221215151110.mp4
Crib-20221215042933.mp4       Crib-20221215054952.mp4  Crib-20221215071004.mp4  Crib-20221215083017.mp4  Crib-20221215095030.mp4  Crib-20221215111042.mp4  Crib-20221215123055.mp4  Crib-20221215135108.mp4  Crib-20221215151120.mp4
Crib-20221215042943.mp4       Crib-20221215055002.mp4  Crib-20221215071014.mp4  Crib-20221215083027.mp4  Crib-20221215095040.mp4  Crib-20221215111052.mp4  Crib-20221215123105.mp4  Crib-20221215135118.mp4  Crib-20221215151130.mp4
Crib-20221215042953.mp4       Crib-20221215055012.mp4  Crib-20221215071024.mp4  Crib-20221215083037.mp4  Crib-20221215095050.mp4  Crib-20221215111102.mp4  Crib-20221215123115.mp4  Crib-20221215135128.mp4  Crib-20221215151140.mp4
Crib-20221215043003.mp4       Crib-20221215055022.mp4  Crib-20221215071034.mp4  Crib-20221215083047.mp4  Crib-20221215095100.mp4  Crib-20221215111112.mp4  Crib-20221215123125.mp4  Crib-20221215135138.mp4  Crib-20221215151150.mp4
Crib-20221215043013.mp4       Crib-20221215055032.mp4  Crib-20221215071044.mp4  Crib-20221215083057.mp4  Crib-20221215095110.mp4  Crib-20221215111122.mp4  Crib-20221215123135.mp4  Crib-20221215135148.mp4  Crib-20221215151200.mp4
Crib-20221215043023.mp4       Crib-20221215055042.mp4  Crib-20221215071055.mp4  Crib-20221215083107.mp4  Crib-20221215095120.mp4  Crib-20221215111132.mp4  Crib-20221215123145.mp4  Crib-20221215135158.mp4  Crib-20221215151211.mp4
Crib-20221215043033.mp4       Crib-20221215055052.mp4  Crib-20221215071104.mp4  Crib-20221215083117.mp4  Crib-20221215095130.mp4  Crib-20221215111142.mp4  Crib-20221215123155.mp4  Crib-20221215135208.mp4  Crib-20221215151220.mp4
Crib-20221215043043.mp4       Crib-20221215055102.mp4  Crib-20221215071114.mp4  Crib-20221215083127.mp4  Crib-20221215095140.mp4  Crib-20221215111152.mp4  Crib-20221215123205.mp4  Crib-20221215135218.mp4  Crib-20221215151230.mp4
Crib-20221215043053.mp4       Crib-20221215055112.mp4  Crib-20221215071124.mp4  Crib-20221215083137.mp4  Crib-20221215095150.mp4  Crib-20221215111202.mp4  Crib-20221215123215.mp4  Crib-20221215135228.mp4  Crib-20221215151240.mp4
Crib-20221215043103.mp4       Crib-20221215055122.mp4  Crib-20221215071134.mp4  Crib-20221215083147.mp4  Crib-20221215095200.mp4  Crib-20221215111213.mp4  Crib-20221215123225.mp4  Crib-20221215135238.mp4  Crib-20221215151250.mp4
Crib-20221215043113.mp4       Crib-20221215055132.mp4  Crib-20221215071144.mp4  Crib-20221215083157.mp4  Crib-20221215095210.mp4  Crib-20221215111222.mp4  Crib-20221215123235.mp4  Crib-20221215135248.mp4  Crib-20221215151300.mp4
Crib-20221215043123.mp4       Crib-20221215055142.mp4  Crib-20221215071154.mp4  Crib-20221215083207.mp4  Crib-20221215095220.mp4  Crib-20221215111232.mp4  Crib-20221215123245.mp4  Crib-20221215135258.mp4  Crib-20221215151310.mp4
Crib-20221215043133.mp4       Crib-20221215055152.mp4  Crib-20221215071204.mp4  Crib-20221215083217.mp4  Crib-20221215095230.mp4  Crib-20221215111242.mp4  Crib-20221215123255.mp4  Crib-20221215135308.mp4  Crib-20221215151320.mp4
Crib-20221215043143.mp4       Crib-20221215055202.mp4  Crib-20221215071214.mp4  Crib-20221215083227.mp4  Crib-20221215095240.mp4  Crib-20221215111252.mp4  Crib-20221215123305.mp4  Crib-20221215135318.mp4  Crib-20221215151330.mp4
Crib-20221215043153.mp4       Crib-20221215055212.mp4  Crib-20221215071224.mp4  Crib-20221215083237.mp4  Crib-20221215095250.mp4  Crib-20221215111302.mp4  Crib-20221215123315.mp4  Crib-20221215135328.mp4  Crib-20221215151340.mp4
Crib-20221215043203.mp4       Crib-20221215055222.mp4  Crib-20221215071236.mp4  Crib-20221215083247.mp4  Crib-20221215095300.mp4  Crib-20221215111313.mp4  Crib-20221215123325.mp4  Crib-20221215135338.mp4  Crib-20221215151350.mp4
Crib-20221215043213.mp4       Crib-20221215055232.mp4  Crib-20221215071245.mp4  Crib-20221215083257.mp4  Crib-20221215095310.mp4  Crib-20221215111323.mp4  Crib-20221215123335.mp4  Crib-20221215135348.mp4  Crib-20221215151400.mp4
Crib-20221215043223.mp4       Crib-20221215055242.mp4  Crib-20221215071254.mp4  Crib-20221215083307.mp4  Crib-20221215095320.mp4  Crib-20221215111333.mp4  Crib-20221215123345.mp4  Crib-20221215135358.mp4  Crib-20221215151410.mp4
Crib-20221215043233.mp4       Crib-20221215055252.mp4  Crib-20221215071305.mp4  Crib-20221215083317.mp4  Crib-20221215095330.mp4  Crib-20221215111342.mp4  Crib-20221215123355.mp4  Crib-20221215135408.mp4  Crib-20221215151420.mp4
Crib-20221215043243.mp4       Crib-20221215055302.mp4  Crib-20221215071315.mp4  Crib-20221215083327.mp4  Crib-20221215095340.mp4  Crib-20221215111353.mp4  Crib-20221215123405.mp4  Crib-20221215135418.mp4  Crib-20221215151430.mp4
Crib-20221215043253.mp4       Crib-20221215055312.mp4  Crib-20221215071325.mp4  Crib-20221215083337.mp4  Crib-20221215095350.mp4  Crib-20221215111402.mp4  Crib-20221215123415.mp4  Crib-20221215135428.mp4  Crib-20221215151440.mp4
Crib-20221215043303.mp4       Crib-20221215055322.mp4  Crib-20221215071335.mp4  Crib-20221215083347.mp4  Crib-20221215095400.mp4  Crib-20221215111413.mp4  Crib-20221215123425.mp4  Crib-20221215135438.mp4  Crib-20221215151451.mp4
Crib-20221215043313.mp4       Crib-20221215055332.mp4  Crib-20221215071344.mp4  Crib-20221215083357.mp4  Crib-20221215095410.mp4  Crib-20221215111423.mp4  Crib-20221215123435.mp4  Crib-20221215135448.mp4  Crib-20221215151501.mp4
Crib-20221215043323.mp4       Crib-20221215055342.mp4  Crib-20221215071355.mp4  Crib-20221215083407.mp4  Crib-20221215095420.mp4  Crib-20221215111433.mp4  Crib-20221215123445.mp4  Crib-20221215135458.mp4  Crib-20221215151510.mp4
Crib-20221215043333.mp4       Crib-20221215055352.mp4  Crib-20221215071405.mp4  Crib-20221215083417.mp4  Crib-20221215095430.mp4  Crib-20221215111442.mp4  Crib-20221215123455.mp4  Crib-20221215135508.mp4  Crib-20221215151521.mp4
Crib-20221215043343.mp4       Crib-20221215055402.mp4  Crib-20221215071415.mp4  Crib-20221215083427.mp4  Crib-20221215095440.mp4  Crib-20221215111453.mp4  Crib-20221215123505.mp4  Crib-20221215135518.mp4  Crib-20221215151531.mp4
Crib-20221215043353.mp4       Crib-20221215055412.mp4  Crib-20221215071424.mp4  Crib-20221215083437.mp4  Crib-20221215095450.mp4  Crib-20221215111502.mp4  Crib-20221215123515.mp4  Crib-20221215135528.mp4  Crib-20221215151541.mp4
Crib-20221215043403.mp4       Crib-20221215055422.mp4  Crib-20221215071435.mp4  Crib-20221215083447.mp4  Crib-20221215095500.mp4  Crib-20221215111512.mp4  Crib-20221215123525.mp4  Crib-20221215135538.mp4  Crib-20221215151551.mp4
Crib-20221215043413.mp4       Crib-20221215055432.mp4  Crib-20221215071445.mp4  Crib-20221215083457.mp4  Crib-20221215095510.mp4  Crib-20221215111522.mp4  Crib-20221215123535.mp4  Crib-20221215135548.mp4  Crib-20221215151601.mp4
Crib-20221215043423.mp4       Crib-20221215055442.mp4  Crib-20221215071455.mp4  Crib-20221215083507.mp4  Crib-20221215095520.mp4  Crib-20221215111533.mp4  Crib-20221215123545.mp4  Crib-20221215135558.mp4  Crib-20221215151611.mp4
Crib-20221215043433.mp4       Crib-20221215055452.mp4  Crib-20221215071505.mp4  Crib-20221215083517.mp4  Crib-20221215095530.mp4  Crib-20221215111543.mp4  Crib-20221215123555.mp4  Crib-20221215135608.mp4  Crib-20221215151621.mp4
Crib-20221215043443.mp4       Crib-20221215055502.mp4  Crib-20221215071515.mp4  Crib-20221215083527.mp4  Crib-20221215095540.mp4  Crib-20221215111553.mp4  Crib-20221215123605.mp4  Crib-20221215135618.mp4  Crib-20221215151631.mp4
Crib-20221215043453.mp4       Crib-20221215055512.mp4  Crib-20221215071525.mp4  Crib-20221215083537.mp4  Crib-20221215095550.mp4  Crib-20221215111603.mp4  Crib-20221215123615.mp4  Crib-20221215135628.mp4  Crib-20221215151640.mp4
Crib-20221215043503.mp4       Crib-20221215055522.mp4  Crib-20221215071535.mp4  Crib-20221215083547.mp4  Crib-20221215095600.mp4  Crib-20221215111613.mp4  Crib-20221215123625.mp4  Crib-20221215135638.mp4  Crib-20221215151651.mp4
Crib-20221215043513.mp4       Crib-20221215055532.mp4  Crib-20221215071545.mp4  Crib-20221215083557.mp4  Crib-20221215095610.mp4  Crib-20221215111623.mp4  Crib-20221215123635.mp4  Crib-20221215135648.mp4  Crib-20221215151701.mp4
Crib-20221215043523.mp4       Crib-20221215055542.mp4  Crib-20221215071555.mp4  Crib-20221215083607.mp4  Crib-20221215095620.mp4  Crib-20221215111633.mp4  Crib-20221215123645.mp4  Crib-20221215135658.mp4  Crib-20221215151711.mp4
Crib-20221215043533.mp4       Crib-20221215055552.mp4  Crib-20221215071605.mp4  Crib-20221215083617.mp4  Crib-20221215095630.mp4  Crib-20221215111643.mp4  Crib-20221215123655.mp4  Crib-20221215135708.mp4  Crib-20221215151721.mp4
Crib-20221215043543.mp4       Crib-20221215055602.mp4  Crib-20221215071615.mp4  Crib-20221215083627.mp4  Crib-20221215095640.mp4  Crib-20221215111653.mp4  Crib-20221215123705.mp4  Crib-20221215135718.mp4  Crib-20221215151731.mp4
Crib-20221215043553.mp4       Crib-20221215055612.mp4  Crib-20221215071625.mp4  Crib-20221215083637.mp4  Crib-20221215095650.mp4  Crib-20221215111703.mp4  Crib-20221215123715.mp4  Crib-20221215135728.mp4  Crib-20221215151741.mp4
Crib-20221215043603.mp4       Crib-20221215055622.mp4  Crib-20221215071635.mp4  Crib-20221215083647.mp4  Crib-20221215095700.mp4  Crib-20221215111713.mp4  Crib-20221215123725.mp4  Crib-20221215135738.mp4  Crib-20221215151751.mp4
Crib-20221215043613.mp4       Crib-20221215055632.mp4  Crib-20221215071645.mp4  Crib-20221215083657.mp4  Crib-20221215095710.mp4  Crib-20221215111723.mp4  Crib-20221215123735.mp4  Crib-20221215135748.mp4  Crib-20221215151801.mp4
Crib-20221215043623.mp4       Crib-20221215055642.mp4  Crib-20221215071655.mp4  Crib-20221215083707.mp4  Crib-20221215095720.mp4  Crib-20221215111733.mp4  Crib-20221215123745.mp4  Crib-20221215135758.mp4  Crib-20221215151811.mp4
Crib-20221215043633.mp4       Crib-20221215055652.mp4  Crib-20221215071705.mp4  Crib-20221215083717.mp4  Crib-20221215095730.mp4  Crib-20221215111743.mp4  Crib-20221215123755.mp4  Crib-20221215135808.mp4  Crib-20221215151821.mp4
Crib-20221215043643.mp4       Crib-20221215055702.mp4  Crib-20221215071715.mp4  Crib-20221215083727.mp4  Crib-20221215095740.mp4  Crib-20221215111753.mp4  Crib-20221215123805.mp4  Crib-20221215135818.mp4  Crib-20221215151831.mp4
Crib-20221215043653.mp4       Crib-20221215055712.mp4  Crib-20221215071725.mp4  Crib-20221215083737.mp4  Crib-20221215095750.mp4  Crib-20221215111803.mp4  Crib-20221215123815.mp4  Crib-20221215135828.mp4  Crib-20221215151841.mp4
Crib-20221215043703.mp4       Crib-20221215055722.mp4  Crib-20221215071735.mp4  Crib-20221215083747.mp4  Crib-20221215095800.mp4  Crib-20221215111813.mp4  Crib-20221215123825.mp4  Crib-20221215135838.mp4  Crib-20221215151851.mp4
Crib-20221215043713.mp4       Crib-20221215055732.mp4  Crib-20221215071745.mp4  Crib-20221215083757.mp4  Crib-20221215095810.mp4  Crib-20221215111823.mp4  Crib-20221215123835.mp4  Crib-20221215135848.mp4  Crib-20221215151901.mp4
Crib-20221215043723.mp4       Crib-20221215055742.mp4  Crib-20221215071755.mp4  Crib-20221215083807.mp4  Crib-20221215095820.mp4  Crib-20221215111833.mp4  Crib-20221215123845.mp4  Crib-20221215135858.mp4  Crib-20221215151911.mp4
Crib-20221215043733.mp4       Crib-20221215055752.mp4  Crib-20221215071805.mp4  Crib-20221215083817.mp4  Crib-20221215095830.mp4  Crib-20221215111843.mp4  Crib-20221215123855.mp4  Crib-20221215135908.mp4  Crib-20221215151921.mp4
Crib-20221215043743.mp4       Crib-20221215055802.mp4  Crib-20221215071815.mp4  Crib-20221215083827.mp4  Crib-20221215095840.mp4  Crib-20221215111853.mp4  Crib-20221215123905.mp4  Crib-20221215135918.mp4  Crib-20221215151931.mp4
Crib-20221215043753.mp4       Crib-20221215055812.mp4  Crib-20221215071825.mp4  Crib-20221215083837.mp4  Crib-20221215095850.mp4  Crib-20221215111903.mp4  Crib-20221215123915.mp4  Crib-20221215135928.mp4  Crib-20221215151941.mp4
Crib-20221215043803.mp4       Crib-20221215055822.mp4  Crib-20221215071835.mp4  Crib-20221215083847.mp4  Crib-20221215095900.mp4  Crib-20221215111913.mp4  Crib-20221215123925.mp4  Crib-20221215135938.mp4  Crib-20221215151951.mp4
Crib-20221215043813.mp4       Crib-20221215055832.mp4  Crib-20221215071845.mp4  Crib-20221215083857.mp4  Crib-20221215095910.mp4  Crib-20221215111923.mp4  Crib-20221215123935.mp4  Crib-20221215135948.mp4  Crib-20221215152001.mp4
Crib-20221215043823.mp4       Crib-20221215055842.mp4  Crib-20221215071855.mp4  Crib-20221215083907.mp4  Crib-20221215095920.mp4  Crib-20221215111933.mp4  Crib-20221215123945.mp4  Crib-20221215135958.mp4  Crib-20221215152011.mp4
Crib-20221215043833.mp4       Crib-20221215055852.mp4  Crib-20221215071905.mp4  Crib-20221215083917.mp4  Crib-20221215095930.mp4  Crib-20221215111943.mp4  Crib-20221215123955.mp4  Crib-20221215140008.mp4  Crib-20221215152021.mp4
Crib-20221215043843.mp4       Crib-20221215055902.mp4  Crib-20221215071915.mp4  Crib-20221215083927.mp4  Crib-20221215095940.mp4  Crib-20221215111953.mp4  Crib-20221215124005.mp4  Crib-20221215140018.mp4  Crib-20221215152031.mp4
Crib-20221215043853.mp4       Crib-20221215055912.mp4  Crib-20221215071925.mp4  Crib-20221215083937.mp4  Crib-20221215095950.mp4  Crib-20221215112003.mp4  Crib-20221215124015.mp4  Crib-20221215140028.mp4  Crib-20221215152041.mp4
Crib-20221215043903.mp4       Crib-20221215055922.mp4  Crib-20221215071935.mp4  Crib-20221215083947.mp4  Crib-20221215100000.mp4  Crib-20221215112013.mp4  Crib-20221215124025.mp4  Crib-20221215140038.mp4  Crib-20221215152051.mp4
Crib-20221215043913.mp4       Crib-20221215055932.mp4  Crib-20221215071945.mp4  Crib-20221215083957.mp4  Crib-20221215100010.mp4  Crib-20221215112023.mp4  Crib-20221215124035.mp4  Crib-20221215140048.mp4  Crib-20221215152101.mp4
Crib-20221215043923.mp4       Crib-20221215055942.mp4  Crib-20221215071955.mp4  Crib-20221215084007.mp4  Crib-20221215100020.mp4  Crib-20221215112033.mp4  Crib-20221215124045.mp4  Crib-20221215140058.mp4  Crib-20221215152111.mp4
Crib-20221215043933.mp4       Crib-20221215055952.mp4  Crib-20221215072005.mp4  Crib-20221215084018.mp4  Crib-20221215100030.mp4  Crib-20221215112043.mp4  Crib-20221215124055.mp4  Crib-20221215140108.mp4  Crib-20221215152121.mp4
Crib-20221215043943.mp4       Crib-20221215060002.mp4  Crib-20221215072015.mp4  Crib-20221215084028.mp4  Crib-20221215100040.mp4  Crib-20221215112053.mp4  Crib-20221215124105.mp4  Crib-20221215140118.mp4  Crib-20221215152131.mp4
Crib-20221215043953.mp4       Crib-20221215060012.mp4  Crib-20221215072025.mp4  Crib-20221215084037.mp4  Crib-20221215100050.mp4  Crib-20221215112103.mp4  Crib-20221215124115.mp4  Crib-20221215140128.mp4  Crib-20221215152141.mp4
Crib-20221215044003.mp4       Crib-20221215060022.mp4  Crib-20221215072035.mp4  Crib-20221215084047.mp4  Crib-20221215100100.mp4  Crib-20221215112113.mp4  Crib-20221215124125.mp4  Crib-20221215140138.mp4  Crib-20221215152151.mp4
Crib-20221215044013.mp4       Crib-20221215060032.mp4  Crib-20221215072045.mp4  Crib-20221215084057.mp4  Crib-20221215100110.mp4  Crib-20221215112123.mp4  Crib-20221215124135.mp4  Crib-20221215140148.mp4  Crib-20221215152201.mp4
Crib-20221215044023.mp4       Crib-20221215060042.mp4  Crib-20221215072055.mp4  Crib-20221215084107.mp4  Crib-20221215100120.mp4  Crib-20221215112133.mp4  Crib-20221215124145.mp4  Crib-20221215140158.mp4  Crib-20221215152211.mp4
Crib-20221215044033.mp4       Crib-20221215060052.mp4  Crib-20221215072105.mp4  Crib-20221215084117.mp4  Crib-20221215100130.mp4  Crib-20221215112143.mp4  Crib-20221215124155.mp4  Crib-20221215140208.mp4  Crib-20221215152221.mp4
Crib-20221215044043.mp4       Crib-20221215060102.mp4  Crib-20221215072115.mp4  Crib-20221215084127.mp4  Crib-20221215100140.mp4  Crib-20221215112153.mp4  Crib-20221215124205.mp4  Crib-20221215140218.mp4  Crib-20221215152231.mp4
Crib-20221215044053.mp4       Crib-20221215060112.mp4  Crib-20221215072125.mp4  Crib-20221215084137.mp4  Crib-20221215100150.mp4  Crib-20221215112203.mp4  Crib-20221215124215.mp4  Crib-20221215140228.mp4  Crib-20221215152241.mp4
Crib-20221215044103.mp4       Crib-20221215060122.mp4  Crib-20221215072135.mp4  Crib-20221215084147.mp4  Crib-20221215100200.mp4  Crib-20221215112213.mp4  Crib-20221215124225.mp4  Crib-20221215140238.mp4  Crib-20221215152251.mp4
Crib-20221215044113.mp4       Crib-20221215060132.mp4  Crib-20221215072145.mp4  Crib-20221215084157.mp4  Crib-20221215100210.mp4  Crib-20221215112223.mp4  Crib-20221215124235.mp4  Crib-20221215140248.mp4  Crib-20221215152301.mp4
Crib-20221215044123.mp4       Crib-20221215060142.mp4  Crib-20221215072155.mp4  Crib-20221215084207.mp4  Crib-20221215100220.mp4  Crib-20221215112233.mp4  Crib-20221215124245.mp4  Crib-20221215140258.mp4  Crib-20221215152311.mp4
Crib-20221215044133.mp4       Crib-20221215060152.mp4  Crib-20221215072205.mp4  Crib-20221215084217.mp4  Crib-20221215100230.mp4  Crib-20221215112243.mp4  Crib-20221215124255.mp4  Crib-20221215140308.mp4  Crib-20221215152321.mp4
Crib-20221215044143.mp4       Crib-20221215060202.mp4  Crib-20221215072215.mp4  Crib-20221215084227.mp4  Crib-20221215100240.mp4  Crib-20221215112253.mp4  Crib-20221215124305.mp4  Crib-20221215140318.mp4  Crib-20221215152331.mp4
Crib-20221215044153.mp4       Crib-20221215060212.mp4  Crib-20221215072225.mp4  Crib-20221215084237.mp4  Crib-20221215100250.mp4  Crib-20221215112303.mp4  Crib-20221215124315.mp4  Crib-20221215140328.mp4  Crib-20221215152341.mp4
Crib-20221215044203.mp4       Crib-20221215060222.mp4  Crib-20221215072235.mp4  Crib-20221215084247.mp4  Crib-20221215100300.mp4  Crib-20221215112313.mp4  Crib-20221215124325.mp4  Crib-20221215140338.mp4  Crib-20221215152351.mp4
Crib-20221215044213.mp4       Crib-20221215060232.mp4  Crib-20221215072245.mp4  Crib-20221215084258.mp4  Crib-20221215100310.mp4  Crib-20221215112323.mp4  Crib-20221215124336.mp4  Crib-20221215140348.mp4  Crib-20221215152401.mp4
Crib-20221215044223.mp4       Crib-20221215060242.mp4  Crib-20221215072255.mp4  Crib-20221215084308.mp4  Crib-20221215100320.mp4  Crib-20221215112333.mp4  Crib-20221215124346.mp4  Crib-20221215140358.mp4  Crib-20221215152411.mp4
Crib-20221215044233.mp4       Crib-20221215060252.mp4  Crib-20221215072305.mp4  Crib-20221215084318.mp4  Crib-20221215100330.mp4  Crib-20221215112343.mp4  Crib-20221215124355.mp4  Crib-20221215140408.mp4  Crib-20221215152421.mp4
Crib-20221215044243.mp4       Crib-20221215060302.mp4  Crib-20221215072315.mp4  Crib-20221215084327.mp4  Crib-20221215100340.mp4  Crib-20221215112353.mp4  Crib-20221215124405.mp4  Crib-20221215140418.mp4  Crib-20221215152431.mp4
Crib-20221215044253.mp4       Crib-20221215060312.mp4  Crib-20221215072325.mp4  Crib-20221215084337.mp4  Crib-20221215100350.mp4  Crib-20221215112403.mp4  Crib-20221215124416.mp4  Crib-20221215140428.mp4  Crib-20221215152441.mp4
Crib-20221215044303.mp4       Crib-20221215060322.mp4  Crib-20221215072335.mp4  Crib-20221215084348.mp4  Crib-20221215100400.mp4  Crib-20221215112413.mp4  Crib-20221215124426.mp4  Crib-20221215140438.mp4  Crib-20221215152451.mp4
Crib-20221215044313.mp4       Crib-20221215060332.mp4  Crib-20221215072345.mp4  Crib-20221215084358.mp4  Crib-20221215100410.mp4  Crib-20221215112423.mp4  Crib-20221215124435.mp4  Crib-20221215140448.mp4  Crib-20221215152501.mp4
Crib-20221215044323.mp4       Crib-20221215060342.mp4  Crib-20221215072355.mp4  Crib-20221215084407.mp4  Crib-20221215100420.mp4  Crib-20221215112433.mp4  Crib-20221215124445.mp4  Crib-20221215140458.mp4  Crib-20221215152511.mp4
Crib-20221215044333.mp4       Crib-20221215060352.mp4  Crib-20221215072405.mp4  Crib-20221215084417.mp4  Crib-20221215100430.mp4  Crib-20221215112443.mp4  Crib-20221215124456.mp4  Crib-20221215140508.mp4  Crib-20221215152521.mp4
Crib-20221215044343.mp4       Crib-20221215060402.mp4  Crib-20221215072415.mp4  Crib-20221215084427.mp4  Crib-20221215100440.mp4  Crib-20221215112453.mp4  Crib-20221215124506.mp4  Crib-20221215140518.mp4  Crib-20221215152531.mp4
Crib-20221215044353.mp4       Crib-20221215060412.mp4  Crib-20221215072425.mp4  Crib-20221215084438.mp4  Crib-20221215100450.mp4  Crib-20221215112503.mp4  Crib-20221215124516.mp4  Crib-20221215140528.mp4  Crib-20221215152541.mp4
Crib-20221215044403.mp4       Crib-20221215060422.mp4  Crib-20221215072435.mp4  Crib-20221215084448.mp4  Crib-20221215100500.mp4  Crib-20221215112513.mp4  Crib-20221215124526.mp4  Crib-20221215140538.mp4  Crib-20221215152551.mp4
Crib-20221215044413.mp4       Crib-20221215060432.mp4  Crib-20221215072445.mp4  Crib-20221215084457.mp4  Crib-20221215100510.mp4  Crib-20221215112523.mp4  Crib-20221215124536.mp4  Crib-20221215140548.mp4  Crib-20221215152601.mp4
Crib-20221215044423.mp4       Crib-20221215060442.mp4  Crib-20221215072455.mp4  Crib-20221215084508.mp4  Crib-20221215100520.mp4  Crib-20221215112533.mp4  Crib-20221215124546.mp4  Crib-20221215140558.mp4  Crib-20221215152611.mp4
Crib-20221215044433.mp4       Crib-20221215060452.mp4  Crib-20221215072505.mp4  Crib-20221215084517.mp4  Crib-20221215100530.mp4  Crib-20221215112543.mp4  Crib-20221215124556.mp4  Crib-20221215140608.mp4  Crib-20221215152621.mp4
Crib-20221215044443.mp4       Crib-20221215060502.mp4  Crib-20221215072515.mp4  Crib-20221215084528.mp4  Crib-20221215100540.mp4  Crib-20221215112553.mp4  Crib-20221215124606.mp4  Crib-20221215140618.mp4  Crib-20221215152631.mp4
Crib-20221215044453.mp4       Crib-20221215060512.mp4  Crib-20221215072525.mp4  Crib-20221215084538.mp4  Crib-20221215100550.mp4  Crib-20221215112603.mp4  Crib-20221215124616.mp4  Crib-20221215140628.mp4  Crib-20221215152641.mp4
Crib-20221215044503.mp4       Crib-20221215060522.mp4  Crib-20221215072535.mp4  Crib-20221215084548.mp4  Crib-20221215100600.mp4  Crib-20221215112613.mp4  Crib-20221215124626.mp4  Crib-20221215140638.mp4  Crib-20221215152651.mp4
Crib-20221215044513.mp4       Crib-20221215060532.mp4  Crib-20221215072545.mp4  Crib-20221215084558.mp4  Crib-20221215100610.mp4  Crib-20221215112623.mp4  Crib-20221215124636.mp4  Crib-20221215140648.mp4  Crib-20221215152701.mp4
Crib-20221215044523.mp4       Crib-20221215060542.mp4  Crib-20221215072555.mp4  Crib-20221215084608.mp4  Crib-20221215100620.mp4  Crib-20221215112633.mp4  Crib-20221215124646.mp4  Crib-20221215140658.mp4  Crib-20221215152711.mp4
Crib-20221215044533.mp4       Crib-20221215060552.mp4  Crib-20221215072605.mp4  Crib-20221215084618.mp4  Crib-20221215100630.mp4  Crib-20221215112643.mp4  Crib-20221215124656.mp4  Crib-20221215140708.mp4  Crib-20221215152721.mp4
Crib-20221215044543.mp4       Crib-20221215060602.mp4  Crib-20221215072615.mp4  Crib-20221215084628.mp4  Crib-20221215100640.mp4  Crib-20221215112653.mp4  Crib-20221215124706.mp4  Crib-20221215140718.mp4  Crib-20221215152731.mp4
Crib-20221215044553.mp4       Crib-20221215060612.mp4  Crib-20221215072625.mp4  Crib-20221215084638.mp4  Crib-20221215100650.mp4  Crib-20221215112703.mp4  Crib-20221215124716.mp4  Crib-20221215140728.mp4  Crib-20221215152741.mp4
Crib-20221215044603.mp4       Crib-20221215060622.mp4  Crib-20221215072635.mp4  Crib-20221215084648.mp4  Crib-20221215100700.mp4  Crib-20221215112713.mp4  Crib-20221215124726.mp4  Crib-20221215140738.mp4  Crib-20221215152751.mp4
Crib-20221215044614.mp4       Crib-20221215060632.mp4  Crib-20221215072645.mp4  Crib-20221215084658.mp4  Crib-20221215100710.mp4  Crib-20221215112723.mp4  Crib-20221215124736.mp4  Crib-20221215140748.mp4  Crib-20221215152801.mp4
Crib-20221215044624.mp4       Crib-20221215060642.mp4  Crib-20221215072655.mp4  Crib-20221215084708.mp4  Crib-20221215100720.mp4  Crib-20221215112733.mp4  Crib-20221215124746.mp4  Crib-20221215140758.mp4  Crib-20221215152811.mp4
Crib-20221215044634.mp4       Crib-20221215060652.mp4  Crib-20221215072705.mp4  Crib-20221215084718.mp4  Crib-20221215100730.mp4  Crib-20221215112743.mp4  Crib-20221215124756.mp4  Crib-20221215140808.mp4  Crib-20221215152821.mp4
Crib-20221215044644.mp4       Crib-20221215060702.mp4  Crib-20221215072715.mp4  Crib-20221215084728.mp4  Crib-20221215100740.mp4  Crib-20221215112753.mp4  Crib-20221215124806.mp4  Crib-20221215140818.mp4  Crib-20221215152831.mp4
Crib-20221215044654.mp4       Crib-20221215060712.mp4  Crib-20221215072725.mp4  Crib-20221215084738.mp4  Crib-20221215100750.mp4  Crib-20221215112803.mp4  Crib-20221215124816.mp4  Crib-20221215140828.mp4  Crib-20221215152841.mp4
Crib-20221215044704.mp4       Crib-20221215060722.mp4  Crib-20221215072735.mp4  Crib-20221215084748.mp4  Crib-20221215100800.mp4  Crib-20221215112813.mp4  Crib-20221215124826.mp4  Crib-20221215140838.mp4  Crib-20221215152851.mp4
Crib-20221215044714.mp4       Crib-20221215060732.mp4  Crib-20221215072745.mp4  Crib-20221215084758.mp4  Crib-20221215100810.mp4  Crib-20221215112823.mp4  Crib-20221215124836.mp4  Crib-20221215140848.mp4  Crib-20221215152901.mp4
Crib-20221215044724.mp4       Crib-20221215060742.mp4  Crib-20221215072755.mp4  Crib-20221215084808.mp4  Crib-20221215100820.mp4  Crib-20221215112833.mp4  Crib-20221215124846.mp4  Crib-20221215140858.mp4  Crib-20221215152911.mp4
Crib-20221215044734.mp4       Crib-20221215060752.mp4  Crib-20221215072805.mp4  Crib-20221215084818.mp4  Crib-20221215100830.mp4  Crib-20221215112843.mp4  Crib-20221215124856.mp4  Crib-20221215140908.mp4  Crib-20221215152921.mp4
Crib-20221215044744.mp4       Crib-20221215060802.mp4  Crib-20221215072815.mp4  Crib-20221215084828.mp4  Crib-20221215100840.mp4  Crib-20221215112853.mp4  Crib-20221215124906.mp4  Crib-20221215140918.mp4  Crib-20221215152931.mp4
Crib-20221215044754.mp4       Crib-20221215060812.mp4  Crib-20221215072825.mp4  Crib-20221215084838.mp4  Crib-20221215100850.mp4  Crib-20221215112903.mp4  Crib-20221215124916.mp4  Crib-20221215140928.mp4  Crib-20221215152941.mp4
Crib-20221215044804.mp4       Crib-20221215060822.mp4  Crib-20221215072835.mp4  Crib-20221215084848.mp4  Crib-20221215100900.mp4  Crib-20221215112913.mp4  Crib-20221215124926.mp4  Crib-20221215140938.mp4  Crib-20221215152951.mp4
Crib-20221215044814.mp4       Crib-20221215060832.mp4  Crib-20221215072845.mp4  Crib-20221215084858.mp4  Crib-20221215100910.mp4  Crib-20221215112923.mp4  Crib-20221215124936.mp4  Crib-20221215140948.mp4  Crib-20221215153001.mp4
Crib-20221215044824.mp4       Crib-20221215060842.mp4  Crib-20221215072855.mp4  Crib-20221215084908.mp4  Crib-20221215100920.mp4  Crib-20221215112933.mp4  Crib-20221215124946.mp4  Crib-20221215140958.mp4  Crib-20221215153011.mp4
Crib-20221215044834.mp4       Crib-20221215060852.mp4  Crib-20221215072905.mp4  Crib-20221215084918.mp4  Crib-20221215100930.mp4  Crib-20221215112943.mp4  Crib-20221215124956.mp4  Crib-20221215141008.mp4  Crib-20221215153021.mp4
Crib-20221215044844.mp4       Crib-20221215060902.mp4  Crib-20221215072915.mp4  Crib-20221215084928.mp4  Crib-20221215100940.mp4  Crib-20221215112953.mp4  Crib-20221215125006.mp4  Crib-20221215141018.mp4  Crib-20221215153031.mp4
Crib-20221215044854.mp4       Crib-20221215060912.mp4  Crib-20221215072925.mp4  Crib-20221215084938.mp4  Crib-20221215100950.mp4  Crib-20221215113003.mp4  Crib-20221215125016.mp4  Crib-20221215141028.mp4  Crib-20221215153041.mp4
Crib-20221215044904.mp4       Crib-20221215060922.mp4  Crib-20221215072935.mp4  Crib-20221215084948.mp4  Crib-20221215101000.mp4  Crib-20221215113013.mp4  Crib-20221215125026.mp4  Crib-20221215141038.mp4  Crib-20221215153051.mp4
Crib-20221215044914.mp4       Crib-20221215060933.mp4  Crib-20221215072945.mp4  Crib-20221215084958.mp4  Crib-20221215101010.mp4  Crib-20221215113023.mp4  Crib-20221215125036.mp4  Crib-20221215141048.mp4  Crib-20221215153101.mp4
Crib-20221215044924.mp4       Crib-20221215060942.mp4  Crib-20221215072955.mp4  Crib-20221215085008.mp4  Crib-20221215101020.mp4  Crib-20221215113033.mp4  Crib-20221215125046.mp4  Crib-20221215141058.mp4  Crib-20221215153111.mp4
Crib-20221215044934.mp4       Crib-20221215060952.mp4  Crib-20221215073005.mp4  Crib-20221215085018.mp4  Crib-20221215101030.mp4  Crib-20221215113043.mp4  Crib-20221215125056.mp4  Crib-20221215141108.mp4  Crib-20221215153121.mp4
Crib-20221215044944.mp4       Crib-20221215061002.mp4  Crib-20221215073015.mp4  Crib-20221215085028.mp4  Crib-20221215101040.mp4  Crib-20221215113053.mp4  Crib-20221215125106.mp4  Crib-20221215141118.mp4  Crib-20221215153131.mp4
Crib-20221215044954.mp4       Crib-20221215061012.mp4  Crib-20221215073025.mp4  Crib-20221215085038.mp4  Crib-20221215101050.mp4  Crib-20221215113103.mp4  Crib-20221215125116.mp4  Crib-20221215141129.mp4  Crib-20221215153141.mp4
Crib-20221215045004.mp4       Crib-20221215061022.mp4  Crib-20221215073035.mp4  Crib-20221215085048.mp4  Crib-20221215101100.mp4  Crib-20221215113113.mp4  Crib-20221215125126.mp4  Crib-20221215141138.mp4  Crib-20221215153151.mp4
Crib-20221215045014.mp4       Crib-20221215061032.mp4  Crib-20221215073045.mp4  Crib-20221215085058.mp4  Crib-20221215101110.mp4  Crib-20221215113123.mp4  Crib-20221215125136.mp4  Crib-20221215141148.mp4  Crib-20221215153201.mp4
Crib-20221215045024.mp4       Crib-20221215061042.mp4  Crib-20221215073055.mp4  Crib-20221215085108.mp4  Crib-20221215101120.mp4  Crib-20221215113133.mp4  Crib-20221215125146.mp4  Crib-20221215141158.mp4  Crib-20221215153211.mp4
Crib-20221215045034.mp4       Crib-20221215061052.mp4  Crib-20221215073105.mp4  Crib-20221215085118.mp4  Crib-20221215101130.mp4  Crib-20221215113143.mp4  Crib-20221215125156.mp4  Crib-20221215141208.mp4  Crib-20221215153221.mp4
Crib-20221215045044.mp4       Crib-20221215061102.mp4  Crib-20221215073115.mp4  Crib-20221215085128.mp4  Crib-20221215101140.mp4  Crib-20221215113153.mp4  Crib-20221215125206.mp4  Crib-20221215141218.mp4  Crib-20221215153231.mp4
Crib-20221215045054.mp4       Crib-20221215061112.mp4  Crib-20221215073125.mp4  Crib-20221215085138.mp4  Crib-20221215101150.mp4  Crib-20221215113203.mp4  Crib-20221215125216.mp4  Crib-20221215141228.mp4  Crib-20221215153241.mp4
Crib-20221215045104.mp4       Crib-20221215061122.mp4  Crib-20221215073135.mp4  Crib-20221215085148.mp4  Crib-20221215101200.mp4  Crib-20221215113213.mp4  Crib-20221215125226.mp4  Crib-20221215141238.mp4  Crib-20221215153251.mp4
Crib-20221215045120.mp4       Crib-20221215061133.mp4  Crib-20221215073145.mp4  Crib-20221215085158.mp4  Crib-20221215101210.mp4  Crib-20221215113223.mp4  Crib-20221215125236.mp4  Crib-20221215141249.mp4  Crib-20221215153301.mp4
Crib-20221215045130.mp4       Crib-20221215061142.mp4  Crib-20221215073155.mp4  Crib-20221215085208.mp4  Crib-20221215101220.mp4  Crib-20221215113233.mp4  Crib-20221215125246.mp4  Crib-20221215141258.mp4  Crib-20221215153311.mp4
Crib-20221215045140.mp4       Crib-20221215061153.mp4  Crib-20221215073205.mp4  Crib-20221215085218.mp4  Crib-20221215101230.mp4  Crib-20221215113243.mp4  Crib-20221215125256.mp4  Crib-20221215141308.mp4  Crib-20221215153321.mp4
Crib-20221215045150.mp4       Crib-20221215061203.mp4  Crib-20221215073215.mp4  Crib-20221215085228.mp4  Crib-20221215101240.mp4  Crib-20221215113253.mp4  Crib-20221215125306.mp4  Crib-20221215141318.mp4  Crib-20221215153331.mp4
Crib-20221215045200.mp4       Crib-20221215061212.mp4  Crib-20221215073225.mp4  Crib-20221215085238.mp4  Crib-20221215101250.mp4  Crib-20221215113303.mp4  Crib-20221215125316.mp4  Crib-20221215141328.mp4  Crib-20221215153341.mp4
Crib-20221215045210.mp4       Crib-20221215061222.mp4  Crib-20221215073235.mp4  Crib-20221215085248.mp4  Crib-20221215101300.mp4  Crib-20221215113313.mp4  Crib-20221215125326.mp4  Crib-20221215141338.mp4  Crib-20221215153351.mp4
Crib-20221215045220.mp4       Crib-20221215061232.mp4  Crib-20221215073245.mp4  Crib-20221215085258.mp4  Crib-20221215101310.mp4  Crib-20221215113323.mp4  Crib-20221215125336.mp4  Crib-20221215141348.mp4  Crib-20221215153401.mp4
Crib-20221215045230.mp4       Crib-20221215061242.mp4  Crib-20221215073255.mp4  Crib-20221215085308.mp4  Crib-20221215101320.mp4  Crib-20221215113333.mp4  Crib-20221215125346.mp4  Crib-20221215141358.mp4  Crib-20221215153411.mp4
Crib-20221215045240.mp4       Crib-20221215061253.mp4  Crib-20221215073305.mp4  Crib-20221215085318.mp4  Crib-20221215101331.mp4  Crib-20221215113343.mp4  Crib-20221215125356.mp4  Crib-20221215141408.mp4  Crib-20221215153421.mp4
Crib-20221215045250.mp4       Crib-20221215061303.mp4  Crib-20221215073315.mp4  Crib-20221215085328.mp4  Crib-20221215101340.mp4  Crib-20221215113353.mp4  Crib-20221215125406.mp4  Crib-20221215141419.mp4  Crib-20221215153431.mp4
Crib-20221215045300.mp4       Crib-20221215061313.mp4  Crib-20221215073325.mp4  Crib-20221215085338.mp4  Crib-20221215101350.mp4  Crib-20221215113403.mp4  Crib-20221215125416.mp4  Crib-20221215141429.mp4  Crib-20221215153441.mp4
Crib-20221215045310.mp4       Crib-20221215061323.mp4  Crib-20221215073335.mp4  Crib-20221215085348.mp4  Crib-20221215101400.mp4  Crib-20221215113413.mp4  Crib-20221215125426.mp4  Crib-20221215141439.mp4  Crib-20221215153451.mp4
Crib-20221215045320.mp4       Crib-20221215061333.mp4  Crib-20221215073345.mp4  Crib-20221215085358.mp4  Crib-20221215101411.mp4  Crib-20221215113423.mp4  Crib-20221215125436.mp4  Crib-20221215141449.mp4  Crib-20221215153501.mp4
Crib-20221215045330.mp4       Crib-20221215061343.mp4  Crib-20221215073355.mp4  Crib-20221215085409.mp4  Crib-20221215101421.mp4  Crib-20221215113433.mp4  Crib-20221215125446.mp4  Crib-20221215141459.mp4  Crib-20221215153511.mp4
Crib-20221215045340.mp4       Crib-20221215061353.mp4  Crib-20221215073405.mp4  Crib-20221215085418.mp4  Crib-20221215101430.mp4  Crib-20221215113443.mp4  Crib-20221215125456.mp4  Crib-20221215141509.mp4  Crib-20221215153521.mp4
Crib-20221215045350.mp4       Crib-20221215061403.mp4  Crib-20221215073415.mp4  Crib-20221215085428.mp4  Crib-20221215101440.mp4  Crib-20221215113453.mp4  Crib-20221215125506.mp4  Crib-20221215141519.mp4  Crib-20221215153531.mp4
Crib-20221215045400.mp4       Crib-20221215061413.mp4  Crib-20221215073425.mp4  Crib-20221215085438.mp4  Crib-20221215101451.mp4  Crib-20221215113503.mp4  Crib-20221215125516.mp4  Crib-20221215141528.mp4  Crib-20221215153541.mp4
Crib-20221215045410.mp4       Crib-20221215061423.mp4  Crib-20221215073435.mp4  Crib-20221215085449.mp4  Crib-20221215101500.mp4  Crib-20221215113513.mp4  Crib-20221215125526.mp4  Crib-20221215141539.mp4  Crib-20221215153551.mp4
Crib-20221215045420.mp4       Crib-20221215061433.mp4  Crib-20221215073445.mp4  Crib-20221215085458.mp4  Crib-20221215101511.mp4  Crib-20221215113523.mp4  Crib-20221215125536.mp4  Crib-20221215141549.mp4  Crib-20221215153601.mp4
Crib-20221215045430.mp4       Crib-20221215061443.mp4  Crib-20221215073455.mp4  Crib-20221215085508.mp4  Crib-20221215101521.mp4  Crib-20221215113533.mp4  Crib-20221215125546.mp4  Crib-20221215141559.mp4  Crib-20221215153611.mp4
Crib-20221215045440.mp4       Crib-20221215061453.mp4  Crib-20221215073505.mp4  Crib-20221215085518.mp4  Crib-20221215101530.mp4  Crib-20221215113543.mp4  Crib-20221215125556.mp4  Crib-20221215141609.mp4  Crib-20221215153621.mp4
Crib-20221215045450.mp4       Crib-20221215061503.mp4  Crib-20221215073515.mp4  Crib-20221215085528.mp4  Crib-20221215101540.mp4  Crib-20221215113553.mp4  Crib-20221215125606.mp4  Crib-20221215141619.mp4  Crib-20221215153631.mp4
Crib-20221215045500.mp4       Crib-20221215061513.mp4  Crib-20221215073525.mp4  Crib-20221215085538.mp4  Crib-20221215101551.mp4  Crib-20221215113603.mp4  Crib-20221215125616.mp4  Crib-20221215141629.mp4  Crib-20221215153641.mp4
Crib-20221215045510.mp4       Crib-20221215061523.mp4  Crib-20221215073535.mp4  Crib-20221215085548.mp4  Crib-20221215101601.mp4  Crib-20221215113613.mp4  Crib-20221215125626.mp4  Crib-20221215141639.mp4  Crib-20221215153651.mp4
Crib-20221215045520.mp4       Crib-20221215061533.mp4  Crib-20221215073545.mp4  Crib-20221215085558.mp4  Crib-20221215101611.mp4  Crib-20221215113623.mp4  Crib-20221215125636.mp4  Crib-20221215141649.mp4  Crib-20221215153701.mp4
Crib-20221215045530.mp4       Crib-20221215061543.mp4  Crib-20221215073555.mp4  Crib-20221215085608.mp4  Crib-20221215101621.mp4  Crib-20221215113633.mp4  Crib-20221215125646.mp4  Crib-20221215141659.mp4  Crib-20221215153711.mp4
Crib-20221215045540.mp4       Crib-20221215061553.mp4  Crib-20221215073605.mp4  Crib-20221215085618.mp4  Crib-20221215101631.mp4  Crib-20221215113643.mp4  Crib-20221215125656.mp4  Crib-20221215141709.mp4  Crib-20221215153721.mp4
Crib-20221215045550.mp4       Crib-20221215061603.mp4  Crib-20221215073615.mp4  Crib-20221215085628.mp4  Crib-20221215101641.mp4  Crib-20221215113653.mp4  Crib-20221215125706.mp4  Crib-20221215141719.mp4  Crib-20221215153731.mp4
Crib-20221215045600.mp4       Crib-20221215061613.mp4  Crib-20221215073625.mp4  Crib-20221215085638.mp4  Crib-20221215101651.mp4  Crib-20221215113703.mp4  Crib-20221215125716.mp4  Crib-20221215141729.mp4  Crib-20221215153741.mp4
Crib-20221215045610.mp4       Crib-20221215061623.mp4  Crib-20221215073635.mp4  Crib-20221215085648.mp4  Crib-20221215101701.mp4  Crib-20221215113713.mp4  Crib-20221215125726.mp4  Crib-20221215141739.mp4  Crib-20221215153751.mp4
Crib-20221215045620.mp4       Crib-20221215061633.mp4  Crib-20221215073645.mp4  Crib-20221215085658.mp4  Crib-20221215101711.mp4  Crib-20221215113723.mp4  Crib-20221215125736.mp4  Crib-20221215141749.mp4  Crib-20221215153801.mp4
Crib-20221215045630.mp4       Crib-20221215061643.mp4  Crib-20221215073655.mp4  Crib-20221215085708.mp4  Crib-20221215101721.mp4  Crib-20221215113733.mp4  Crib-20221215125746.mp4  Crib-20221215141759.mp4  Crib-20221215153811.mp4
Crib-20221215045640.mp4       Crib-20221215061653.mp4  Crib-20221215073705.mp4  Crib-20221215085718.mp4  Crib-20221215101731.mp4  Crib-20221215113743.mp4  Crib-20221215125756.mp4  Crib-20221215141809.mp4  Crib-20221215153821.mp4
Crib-20221215045650.mp4       Crib-20221215061703.mp4  Crib-20221215073715.mp4  Crib-20221215085728.mp4  Crib-20221215101741.mp4  Crib-20221215113753.mp4  Crib-20221215125806.mp4  Crib-20221215141819.mp4  Crib-20221215153831.mp4
Crib-20221215045700.mp4       Crib-20221215061713.mp4  Crib-20221215073725.mp4  Crib-20221215085738.mp4  Crib-20221215101751.mp4  Crib-20221215113803.mp4  Crib-20221215125816.mp4  Crib-20221215141829.mp4  Crib-20221215153841.mp4
Crib-20221215045710.mp4       Crib-20221215061723.mp4  Crib-20221215073735.mp4  Crib-20221215085748.mp4  Crib-20221215101801.mp4  Crib-20221215113813.mp4  Crib-20221215125826.mp4  Crib-20221215141839.mp4  Crib-20221215153851.mp4
Crib-20221215045720.mp4       Crib-20221215061733.mp4  Crib-20221215073745.mp4  Crib-20221215085758.mp4  Crib-20221215101811.mp4  Crib-20221215113823.mp4  Crib-20221215125836.mp4  Crib-20221215141849.mp4  Crib-20221215153901.mp4
Crib-20221215045730.mp4       Crib-20221215061743.mp4  Crib-20221215073755.mp4  Crib-20221215085808.mp4  Crib-20221215101821.mp4  Crib-20221215113833.mp4  Crib-20221215125846.mp4  Crib-20221215141859.mp4  Crib-20221215153911.mp4
Crib-20221215045740.mp4       Crib-20221215061753.mp4  Crib-20221215073805.mp4  Crib-20221215085818.mp4  Crib-20221215101831.mp4  Crib-20221215113843.mp4  Crib-20221215125856.mp4  Crib-20221215141909.mp4  Crib-20221215153921.mp4
Crib-20221215045750.mp4       Crib-20221215061803.mp4  Crib-20221215073815.mp4  Crib-20221215085828.mp4  Crib-20221215101841.mp4  Crib-20221215113853.mp4  Crib-20221215125906.mp4  Crib-20221215141919.mp4  Crib-20221215153931.mp4
Crib-20221215045800.mp4       Crib-20221215061813.mp4  Crib-20221215073825.mp4  Crib-20221215085838.mp4  Crib-20221215101851.mp4  Crib-20221215113903.mp4  Crib-20221215125916.mp4  Crib-20221215141929.mp4  Crib-20221215153941.mp4
Crib-20221215045810.mp4       Crib-20221215061823.mp4  Crib-20221215073835.mp4  Crib-20221215085848.mp4  Crib-20221215101901.mp4  Crib-20221215113913.mp4  Crib-20221215125926.mp4  Crib-20221215141939.mp4  Crib-20221215153951.mp4
Crib-20221215045820.mp4       Crib-20221215061833.mp4  Crib-20221215073845.mp4  Crib-20221215085858.mp4  Crib-20221215101911.mp4  Crib-20221215113923.mp4  Crib-20221215125936.mp4  Crib-20221215141949.mp4  Crib-20221215154001.mp4
Crib-20221215045830.mp4       Crib-20221215061843.mp4  Crib-20221215073855.mp4  Crib-20221215085908.mp4  Crib-20221215101921.mp4  Crib-20221215113933.mp4  Crib-20221215125946.mp4  Crib-20221215141959.mp4  Crib-20221215154011.mp4
Crib-20221215045840.mp4       Crib-20221215061853.mp4  Crib-20221215073905.mp4  Crib-20221215085918.mp4  Crib-20221215101931.mp4  Crib-20221215113943.mp4  Crib-20221215125956.mp4  Crib-20221215142009.mp4  Crib-20221215154021.mp4
Crib-20221215045850.mp4       Crib-20221215061903.mp4  Crib-20221215073916.mp4  Crib-20221215085928.mp4  Crib-20221215101941.mp4  Crib-20221215113953.mp4  Crib-20221215130006.mp4  Crib-20221215142019.mp4  Crib-20221215154031.mp4
Crib-20221215045900.mp4       Crib-20221215061913.mp4  Crib-20221215073925.mp4  Crib-20221215085938.mp4  Crib-20221215101951.mp4  Crib-20221215114003.mp4  Crib-20221215130016.mp4  Crib-20221215142029.mp4  Crib-20221215154041.mp4
Crib-20221215045910.mp4       Crib-20221215061923.mp4  Crib-20221215073935.mp4  Crib-20221215085948.mp4  Crib-20221215102001.mp4  Crib-20221215114014.mp4  Crib-20221215130026.mp4  Crib-20221215142039.mp4  Crib-20221215154051.mp4
Crib-20221215045920.mp4       Crib-20221215061933.mp4  Crib-20221215073945.mp4  Crib-20221215085958.mp4  Crib-20221215102011.mp4  Crib-20221215114023.mp4  Crib-20221215130036.mp4  Crib-20221215142049.mp4  Crib-20221215154101.mp4
Crib-20221215045930.mp4       Crib-20221215061943.mp4  Crib-20221215073956.mp4  Crib-20221215090008.mp4  Crib-20221215102021.mp4  Crib-20221215114033.mp4  Crib-20221215130046.mp4  Crib-20221215142059.mp4  Crib-20221215154111.mp4
Crib-20221215045940.mp4       Crib-20221215061953.mp4  Crib-20221215074006.mp4  Crib-20221215090018.mp4  Crib-20221215102031.mp4  Crib-20221215114043.mp4  Crib-20221215130056.mp4  Crib-20221215142109.mp4  Crib-20221215154121.mp4
Crib-20221215045950.mp4       Crib-20221215062003.mp4  Crib-20221215074015.mp4  Crib-20221215090028.mp4  Crib-20221215102041.mp4  Crib-20221215114053.mp4  Crib-20221215130106.mp4  Crib-20221215142119.mp4  Crib-20221215154132.mp4
Crib-20221215050000.mp4       Crib-20221215062013.mp4  Crib-20221215074025.mp4  Crib-20221215090038.mp4  Crib-20221215102051.mp4  Crib-20221215114103.mp4  Crib-20221215130116.mp4  Crib-20221215142129.mp4  Crib-20221215154141.mp4
Crib-20221215050010.mp4       Crib-20221215062023.mp4  Crib-20221215074035.mp4  Crib-20221215090048.mp4  Crib-20221215102101.mp4  Crib-20221215114113.mp4  Crib-20221215130126.mp4  Crib-20221215142139.mp4  Crib-20221215154151.mp4
Crib-20221215050020.mp4       Crib-20221215062033.mp4  Crib-20221215074045.mp4  Crib-20221215090058.mp4  Crib-20221215102111.mp4  Crib-20221215114123.mp4  Crib-20221215130136.mp4  Crib-20221215142149.mp4  Crib-20221215154201.mp4
Crib-20221215050030.mp4       Crib-20221215062043.mp4  Crib-20221215074055.mp4  Crib-20221215090108.mp4  Crib-20221215102121.mp4  Crib-20221215114133.mp4  Crib-20221215130146.mp4  Crib-20221215142159.mp4  Crib-20221215154211.mp4
Crib-20221215050040.mp4       Crib-20221215062053.mp4  Crib-20221215074105.mp4  Crib-20221215090118.mp4  Crib-20221215102131.mp4  Crib-20221215114143.mp4  Crib-20221215130156.mp4  Crib-20221215142209.mp4  Crib-20221215154221.mp4
Crib-20221215050050.mp4       Crib-20221215062103.mp4  Crib-20221215074115.mp4  Crib-20221215090128.mp4  Crib-20221215102141.mp4  Crib-20221215114153.mp4  Crib-20221215130206.mp4  Crib-20221215142219.mp4  Crib-20221215154232.mp4
Crib-20221215050100.mp4       Crib-20221215062113.mp4  Crib-20221215074125.mp4  Crib-20221215090138.mp4  Crib-20221215102151.mp4  Crib-20221215114203.mp4  Crib-20221215130216.mp4  Crib-20221215142229.mp4  Crib-20221215154241.mp4
Crib-20221215050110.mp4       Crib-20221215062123.mp4  Crib-20221215074136.mp4  Crib-20221215090148.mp4  Crib-20221215102201.mp4  Crib-20221215114213.mp4  Crib-20221215130226.mp4  Crib-20221215142239.mp4  Crib-20221215154251.mp4
Crib-20221215050120.mp4       Crib-20221215062133.mp4  Crib-20221215074145.mp4  Crib-20221215090158.mp4  Crib-20221215102211.mp4  Crib-20221215114223.mp4  Crib-20221215130236.mp4  Crib-20221215142249.mp4  Crib-20221215154301.mp4
Crib-20221215050130.mp4       Crib-20221215062143.mp4  Crib-20221215074155.mp4  Crib-20221215090208.mp4  Crib-20221215102221.mp4  Crib-20221215114234.mp4  Crib-20221215130246.mp4  Crib-20221215142259.mp4  Crib-20221215154312.mp4
Crib-20221215050140.mp4       Crib-20221215062153.mp4  Crib-20221215074205.mp4  Crib-20221215090218.mp4  Crib-20221215102231.mp4  Crib-20221215114243.mp4  Crib-20221215130256.mp4  Crib-20221215142309.mp4  Crib-20221215154322.mp4
Crib-20221215050150.mp4       Crib-20221215062203.mp4  Crib-20221215074215.mp4  Crib-20221215090228.mp4  Crib-20221215102241.mp4  Crib-20221215114254.mp4  Crib-20221215130306.mp4  Crib-20221215142319.mp4  Crib-20221215154332.mp4
Crib-20221215050200.mp4       Crib-20221215062213.mp4  Crib-20221215074225.mp4  Crib-20221215090238.mp4  Crib-20221215102251.mp4  Crib-20221215114304.mp4  Crib-20221215130316.mp4  Crib-20221215142329.mp4  Crib-20221215154342.mp4
Crib-20221215050210.mp4       Crib-20221215062223.mp4  Crib-20221215074235.mp4  Crib-20221215090248.mp4  Crib-20221215102301.mp4  Crib-20221215114314.mp4  Crib-20221215130326.mp4  Crib-20221215142339.mp4  Crib-20221215154352.mp4
Crib-20221215050220.mp4       Crib-20221215062233.mp4  Crib-20221215074245.mp4  Crib-20221215090258.mp4  Crib-20221215102311.mp4  Crib-20221215114323.mp4  Crib-20221215130336.mp4  Crib-20221215142349.mp4  Crib-20221215154402.mp4
Crib-20221215050230.mp4       Crib-20221215062243.mp4  Crib-20221215074255.mp4  Crib-20221215090308.mp4  Crib-20221215102321.mp4  Crib-20221215114334.mp4  Crib-20221215130346.mp4  Crib-20221215142359.mp4  Crib-20221215154412.mp4
Crib-20221215050240.mp4       Crib-20221215062253.mp4  Crib-20221215074305.mp4  Crib-20221215090318.mp4  Crib-20221215102331.mp4  Crib-20221215114344.mp4  Crib-20221215130356.mp4  Crib-20221215142409.mp4  Crib-20221215154422.mp4
Crib-20221215050250.mp4       Crib-20221215062303.mp4  Crib-20221215074315.mp4  Crib-20221215090328.mp4  Crib-20221215102341.mp4  Crib-20221215114353.mp4  Crib-20221215130406.mp4  Crib-20221215142419.mp4  Crib-20221215154432.mp4
Crib-20221215050300.mp4       Crib-20221215062313.mp4  Crib-20221215074325.mp4  Crib-20221215090338.mp4  Crib-20221215102351.mp4  Crib-20221215114403.mp4  Crib-20221215130416.mp4  Crib-20221215142429.mp4  Crib-20221215154442.mp4
Crib-20221215050310.mp4       Crib-20221215062323.mp4  Crib-20221215074335.mp4  Crib-20221215090348.mp4  Crib-20221215102401.mp4  Crib-20221215114414.mp4  Crib-20221215130426.mp4  Crib-20221215142439.mp4  Crib-20221215154452.mp4
Crib-20221215050320.mp4       Crib-20221215062333.mp4  Crib-20221215074345.mp4  Crib-20221215090358.mp4  Crib-20221215102411.mp4  Crib-20221215114424.mp4  Crib-20221215130436.mp4  Crib-20221215142449.mp4  Crib-20221215154502.mp4
Crib-20221215050330.mp4       Crib-20221215062343.mp4  Crib-20221215074356.mp4  Crib-20221215090408.mp4  Crib-20221215102421.mp4  Crib-20221215114434.mp4  Crib-20221215130446.mp4  Crib-20221215142459.mp4  Crib-20221215154512.mp4
Crib-20221215050340.mp4       Crib-20221215062353.mp4  Crib-20221215074406.mp4  Crib-20221215090418.mp4  Crib-20221215102431.mp4  Crib-20221215114443.mp4  Crib-20221215130456.mp4  Crib-20221215142509.mp4  Crib-20221215154521.mp4
Crib-20221215050350.mp4       Crib-20221215062403.mp4  Crib-20221215074416.mp4  Crib-20221215090428.mp4  Crib-20221215102441.mp4  Crib-20221215114454.mp4  Crib-20221215130506.mp4  Crib-20221215142519.mp4  Crib-20221215154532.mp4
Crib-20221215050400.mp4       Crib-20221215062413.mp4  Crib-20221215074426.mp4  Crib-20221215090438.mp4  Crib-20221215102451.mp4  Crib-20221215114504.mp4  Crib-20221215130516.mp4  Crib-20221215142529.mp4  Crib-20221215154542.mp4
Crib-20221215050410.mp4       Crib-20221215062423.mp4  Crib-20221215074436.mp4  Crib-20221215090448.mp4  Crib-20221215102501.mp4  Crib-20221215114514.mp4  Crib-20221215130526.mp4  Crib-20221215142539.mp4  Crib-20221215154552.mp4
Crib-20221215050420.mp4       Crib-20221215062433.mp4  Crib-20221215074446.mp4  Crib-20221215090458.mp4  Crib-20221215102511.mp4  Crib-20221215114524.mp4  Crib-20221215130536.mp4  Crib-20221215142549.mp4  Crib-20221215154602.mp4
Crib-20221215050430.mp4       Crib-20221215062443.mp4  Crib-20221215074456.mp4  Crib-20221215090508.mp4  Crib-20221215102521.mp4  Crib-20221215114534.mp4  Crib-20221215130546.mp4  Crib-20221215142559.mp4  Crib-20221215154612.mp4
Crib-20221215050440.mp4       Crib-20221215062453.mp4  Crib-20221215074506.mp4  Crib-20221215090518.mp4  Crib-20221215102531.mp4  Crib-20221215114544.mp4  Crib-20221215130556.mp4  Crib-20221215142609.mp4  Crib-20221215154622.mp4
Crib-20221215050450.mp4       Crib-20221215062503.mp4  Crib-20221215074516.mp4  Crib-20221215090528.mp4  Crib-20221215102541.mp4  Crib-20221215114554.mp4  Crib-20221215130606.mp4  Crib-20221215142619.mp4  Crib-20221215154632.mp4
Crib-20221215050500.mp4       Crib-20221215062513.mp4  Crib-20221215074526.mp4  Crib-20221215090538.mp4  Crib-20221215102551.mp4  Crib-20221215114604.mp4  Crib-20221215130616.mp4  Crib-20221215142629.mp4  Crib-20221215154642.mp4
Crib-20221215050510.mp4       Crib-20221215062523.mp4  Crib-20221215074536.mp4  Crib-20221215090548.mp4  Crib-20221215102601.mp4  Crib-20221215114614.mp4  Crib-20221215130626.mp4  Crib-20221215142639.mp4  Crib-20221215154652.mp4
Crib-20221215050520.mp4       Crib-20221215062533.mp4  Crib-20221215074546.mp4  Crib-20221215090558.mp4  Crib-20221215102611.mp4  Crib-20221215114624.mp4  Crib-20221215130636.mp4  Crib-20221215142649.mp4  Crib-20221215154702.mp4
Crib-20221215050530.mp4       Crib-20221215062543.mp4  Crib-20221215074556.mp4  Crib-20221215090608.mp4  Crib-20221215102621.mp4  Crib-20221215114634.mp4  Crib-20221215130646.mp4  Crib-20221215142659.mp4  Crib-20221215154712.mp4
Crib-20221215050540.mp4       Crib-20221215062553.mp4  Crib-20221215074605.mp4  Crib-20221215090618.mp4  Crib-20221215102631.mp4  Crib-20221215114644.mp4  Crib-20221215130656.mp4  Crib-20221215142709.mp4  Crib-20221215154722.mp4
Crib-20221215050550.mp4       Crib-20221215062603.mp4  Crib-20221215074616.mp4  Crib-20221215090628.mp4  Crib-20221215102641.mp4  Crib-20221215114654.mp4  Crib-20221215130706.mp4  Crib-20221215142719.mp4  Crib-20221215154732.mp4
Crib-20221215050600.mp4       Crib-20221215062613.mp4  Crib-20221215074626.mp4  Crib-20221215090638.mp4  Crib-20221215102651.mp4  Crib-20221215114704.mp4  Crib-20221215130716.mp4  Crib-20221215142729.mp4  Crib-20221215154742.mp4
Crib-20221215050610.mp4       Crib-20221215062623.mp4  Crib-20221215074636.mp4  Crib-20221215090648.mp4  Crib-20221215102701.mp4  Crib-20221215114714.mp4  Crib-20221215130726.mp4  Crib-20221215142739.mp4  Crib-20221215154752.mp4
Crib-20221215050620.mp4       Crib-20221215062633.mp4  Crib-20221215074646.mp4  Crib-20221215090658.mp4  Crib-20221215102711.mp4  Crib-20221215114724.mp4  Crib-20221215130736.mp4  Crib-20221215142749.mp4  Crib-20221215154802.mp4
Crib-20221215050630.mp4       Crib-20221215062643.mp4  Crib-20221215074656.mp4  Crib-20221215090708.mp4  Crib-20221215102721.mp4  Crib-20221215114734.mp4  Crib-20221215130746.mp4  Crib-20221215142759.mp4  Crib-20221215154812.mp4
Crib-20221215050640.mp4       Crib-20221215062653.mp4  Crib-20221215074706.mp4  Crib-20221215090718.mp4  Crib-20221215102731.mp4  Crib-20221215114744.mp4  Crib-20221215130756.mp4  Crib-20221215142809.mp4  Crib-20221215154822.mp4
Crib-20221215050650.mp4       Crib-20221215062703.mp4  Crib-20221215074716.mp4  Crib-20221215090728.mp4  Crib-20221215102741.mp4  Crib-20221215114754.mp4  Crib-20221215130806.mp4  Crib-20221215142819.mp4  Crib-20221215154832.mp4
Crib-20221215050700.mp4       Crib-20221215062713.mp4  Crib-20221215074726.mp4  Crib-20221215090738.mp4  Crib-20221215102751.mp4  Crib-20221215114804.mp4  Crib-20221215130816.mp4  Crib-20221215142829.mp4  Crib-20221215154842.mp4
Crib-20221215050710.mp4       Crib-20221215062723.mp4  Crib-20221215074736.mp4  Crib-20221215090748.mp4  Crib-20221215102801.mp4  Crib-20221215114814.mp4  Crib-20221215130826.mp4  Crib-20221215142839.mp4  Crib-20221215154852.mp4
Crib-20221215050720.mp4       Crib-20221215062733.mp4  Crib-20221215074746.mp4  Crib-20221215090758.mp4  Crib-20221215102811.mp4  Crib-20221215114824.mp4  Crib-20221215130836.mp4  Crib-20221215142849.mp4  Crib-20221215154902.mp4
Crib-20221215050730.mp4       Crib-20221215062743.mp4  Crib-20221215074756.mp4  Crib-20221215090808.mp4  Crib-20221215102821.mp4  Crib-20221215114834.mp4  Crib-20221215130846.mp4  Crib-20221215142859.mp4  Crib-20221215154912.mp4
Crib-20221215050740.mp4       Crib-20221215062753.mp4  Crib-20221215074806.mp4  Crib-20221215090818.mp4  Crib-20221215102831.mp4  Crib-20221215114844.mp4  Crib-20221215130856.mp4  Crib-20221215142909.mp4  Crib-20221215154922.mp4
Crib-20221215050750.mp4       Crib-20221215062803.mp4  Crib-20221215074816.mp4  Crib-20221215090828.mp4  Crib-20221215102841.mp4  Crib-20221215114854.mp4  Crib-20221215130906.mp4  Crib-20221215142919.mp4  Crib-20221215154932.mp4
Crib-20221215050800.mp4       Crib-20221215062813.mp4  Crib-20221215074826.mp4  Crib-20221215090838.mp4  Crib-20221215102851.mp4  Crib-20221215114904.mp4  Crib-20221215130916.mp4  Crib-20221215142929.mp4  Crib-20221215154943.mp4
Crib-20221215050811.mp4       Crib-20221215062823.mp4  Crib-20221215074836.mp4  Crib-20221215090848.mp4  Crib-20221215102901.mp4  Crib-20221215114914.mp4  Crib-20221215130926.mp4  Crib-20221215142939.mp4  Crib-20221215154951.mp4
Crib-20221215050820.mp4       Crib-20221215062833.mp4  Crib-20221215074846.mp4  Crib-20221215090858.mp4  Crib-20221215102911.mp4  Crib-20221215114924.mp4  Crib-20221215130936.mp4  Crib-20221215142949.mp4  Crib-20221215155002.mp4
Crib-20221215050830.mp4       Crib-20221215062843.mp4  Crib-20221215074856.mp4  Crib-20221215090908.mp4  Crib-20221215102921.mp4  Crib-20221215114934.mp4  Crib-20221215130946.mp4  Crib-20221215142959.mp4  Crib-20221215155012.mp4
Crib-20221215050840.mp4       Crib-20221215062853.mp4  Crib-20221215074906.mp4  Crib-20221215090918.mp4  Crib-20221215102931.mp4  Crib-20221215114944.mp4  Crib-20221215130956.mp4  Crib-20221215143009.mp4  Crib-20221215155022.mp4
Crib-20221215050850.mp4       Crib-20221215062903.mp4  Crib-20221215074916.mp4  Crib-20221215090928.mp4  Crib-20221215102941.mp4  Crib-20221215114954.mp4  Crib-20221215131006.mp4  Crib-20221215143019.mp4  Crib-20221215155032.mp4
Crib-20221215050900.mp4       Crib-20221215062913.mp4  Crib-20221215074926.mp4  Crib-20221215090938.mp4  Crib-20221215102951.mp4  Crib-20221215115004.mp4  Crib-20221215131016.mp4  Crib-20221215143029.mp4  Crib-20221215155042.mp4
Crib-20221215050910.mp4       Crib-20221215062923.mp4  Crib-20221215074936.mp4  Crib-20221215090948.mp4  Crib-20221215103001.mp4  Crib-20221215115014.mp4  Crib-20221215131026.mp4  Crib-20221215143039.mp4  Crib-20221215155052.mp4
Crib-20221215050920.mp4       Crib-20221215062933.mp4  Crib-20221215074946.mp4  Crib-20221215090958.mp4  Crib-20221215103011.mp4  Crib-20221215115024.mp4  Crib-20221215131036.mp4  Crib-20221215143049.mp4  Crib-20221215155102.mp4
Crib-20221215050930.mp4       Crib-20221215062943.mp4  Crib-20221215074956.mp4  Crib-20221215091008.mp4  Crib-20221215103021.mp4  Crib-20221215115034.mp4  Crib-20221215131046.mp4  Crib-20221215143059.mp4  Crib-20221215155112.mp4
Crib-20221215050940.mp4       Crib-20221215062953.mp4  Crib-20221215075006.mp4  Crib-20221215091018.mp4  Crib-20221215103031.mp4  Crib-20221215115044.mp4  Crib-20221215131056.mp4  Crib-20221215143109.mp4  Crib-20221215155122.mp4
Crib-20221215050950.mp4       Crib-20221215063003.mp4  Crib-20221215075016.mp4  Crib-20221215091028.mp4  Crib-20221215103041.mp4  Crib-20221215115054.mp4  Crib-20221215131106.mp4  Crib-20221215143119.mp4  Crib-20221215155132.mp4
Crib-20221215051000.mp4       Crib-20221215063013.mp4  Crib-20221215075026.mp4  Crib-20221215091038.mp4  Crib-20221215103051.mp4  Crib-20221215115104.mp4  Crib-20221215131116.mp4  Crib-20221215143129.mp4  Crib-20221215155142.mp4
Crib-20221215051011.mp4       Crib-20221215063023.mp4  Crib-20221215075036.mp4  Crib-20221215091048.mp4  Crib-20221215103101.mp4  Crib-20221215115114.mp4  Crib-20221215131126.mp4  Crib-20221215143139.mp4  Crib-20221215155152.mp4
Crib-20221215051020.mp4       Crib-20221215063033.mp4  Crib-20221215075046.mp4  Crib-20221215091058.mp4  Crib-20221215103111.mp4  Crib-20221215115124.mp4  Crib-20221215131137.mp4  Crib-20221215143149.mp4  Crib-20221215155202.mp4
Crib-20221215051030.mp4       Crib-20221215063043.mp4  Crib-20221215075056.mp4  Crib-20221215091108.mp4  Crib-20221215103121.mp4  Crib-20221215115134.mp4  Crib-20221215131147.mp4  Crib-20221215143159.mp4  Crib-20221215155212.mp4
Crib-20221215051040.mp4       Crib-20221215063053.mp4  Crib-20221215075106.mp4  Crib-20221215091118.mp4  Crib-20221215103131.mp4  Crib-20221215115144.mp4  Crib-20221215131156.mp4  Crib-20221215143209.mp4  Crib-20221215155222.mp4
Crib-20221215051050.mp4       Crib-20221215063103.mp4  Crib-20221215075116.mp4  Crib-20221215091128.mp4  Crib-20221215103141.mp4  Crib-20221215115154.mp4  Crib-20221215131206.mp4  Crib-20221215143219.mp4  Crib-20221215155232.mp4
Crib-20221215051100.mp4       Crib-20221215063113.mp4  Crib-20221215075126.mp4  Crib-20221215091138.mp4  Crib-20221215103151.mp4  Crib-20221215115204.mp4  Crib-20221215131216.mp4  Crib-20221215143229.mp4  Crib-20221215155242.mp4
Crib-20221215051110.mp4       Crib-20221215063123.mp4  Crib-20221215075136.mp4  Crib-20221215091148.mp4  Crib-20221215103201.mp4  Crib-20221215115214.mp4  Crib-20221215131227.mp4  Crib-20221215143239.mp4  Crib-20221215155252.mp4
Crib-20221215051120.mp4       Crib-20221215063133.mp4  Crib-20221215075146.mp4  Crib-20221215091158.mp4  Crib-20221215103211.mp4  Crib-20221215115224.mp4  Crib-20221215131237.mp4  Crib-20221215143249.mp4
Crib-20221215051131.mp4       Crib-20221215063143.mp4  Crib-20221215075156.mp4  Crib-20221215091208.mp4  Crib-20221215103221.mp4  Crib-20221215115234.mp4  Crib-20221215131246.mp4  Crib-20221215143259.mp4
Crib-20221215051140.mp4       Crib-20221215063153.mp4  Crib-20221215075206.mp4  Crib-20221215091218.mp4  Crib-20221215103231.mp4  Crib-20221215115244.mp4  Crib-20221215131256.mp4  Crib-20221215143309.mp4
Crib-20221215051151.mp4       Crib-20221215063203.mp4  Crib-20221215075216.mp4  Crib-20221215091228.mp4  Crib-20221215103241.mp4  Crib-20221215115254.mp4  Crib-20221215131307.mp4  Crib-20221215143319.mp4
Crib-20221215051200.mp4       Crib-20221215063213.mp4  Crib-20221215075226.mp4  Crib-20221215091238.mp4  Crib-20221215103251.mp4  Crib-20221215115304.mp4  Crib-20221215131317.mp4  Crib-20221215143329.mp4
Crib-20221215051210.mp4       Crib-20221215063223.mp4  Crib-20221215075236.mp4  Crib-20221215091248.mp4  Crib-20221215103301.mp4  Crib-20221215115314.mp4  Crib-20221215131327.mp4  Crib-20221215143339.mp4

Dougiebabe avatar Dec 15 '22 16:12 Dougiebabe

That's extremely weird, it's almost like the ffmpeg process is writing the segments while the recording maintainer process has somehow stopped. If it was running then it wouldn't let more than 5 be created

https://github.com/blakeblackshear/frigate/blob/master/frigate/record.py#L99

NickM-27 avatar Dec 15 '22 16:12 NickM-27

I'm not sure there's much to be done right now since a lot of this has been adjusted / rewritten for 0.12

NickM-27 avatar Dec 15 '22 16:12 NickM-27

5 sounds like a normal amount I see in there when it's all running well.

Looking at the timestamps of the videos it looks like it stopped removing them at around 4:20am. There are no logs at that specific time but 8 minutes later it complains about QSV decoding errors for both the crib and back_left. Is there anyway of me getting access to these clips to see if they are malformed?

Dougiebabe avatar Dec 15 '22 16:12 Dougiebabe

5 sounds like a normal amount I see in there when it's all running well.

What are you writing to exactly? I never see more than 2 for example.

Is there anyway of me getting access to these clips to see if they are malformed?

Just move them from cache to the media directory

NickM-27 avatar Dec 15 '22 16:12 NickM-27

5 sounds like a normal amount I see in there when it's all running well

What are you writing to exactly? I never see more than 2 for example.

Sorry, what I meant is 'When Frigate is running normally and I run ls /tmp/cache I only see a few files listed in here' I've only looked in this folder since the issue has started happening, I have no other need to go into this folder.

Is there anyway of me getting access to these clips to see if they are malformed?

Just move them from cache to the media directory

I have moved them out and found that the ones from 4:20 until 4:50 seem to load, at 4:50 the space is all used up and the rest of the files are all 0kb

Dougiebabe avatar Dec 15 '22 17:12 Dougiebabe

Sorry, what I meant is 'When Frigate is running normally and I run ls /tmp/cache I only see a few files listed in here'

5 for the same camera? Because that's exactly what I mean, it indicates that files are slow to be transferred out since 5 is a worse case scenario (for a single camera)

NickM-27 avatar Dec 15 '22 17:12 NickM-27

Sorry, what I meant is 'When Frigate is running normally and I run ls /tmp/cache I only see a few files listed in here'

5 for the same camera? Because that's exactly what I mean, it indicates that files are slow to be transferred out since 5 is a worse case scenario (for a single camera)

I can't remember and haven't reset Frigate yet so it is still in it's stuck state. It is using around 5% of the tmpfs when I run a df -h and there is more than 1 file in there but I would say less than 5.

Would you say I am OK to restart the container or is there any other info/logs I can get?

Dougiebabe avatar Dec 15 '22 17:12 Dougiebabe

There's not much more to deduce from it currently

NickM-27 avatar Dec 15 '22 17:12 NickM-27

I've see this as well. Is ffmpeg perhaps leaving file handles open? I also have issues with ffmpeg not being able to reconnect to my camera after it has been restarted by frigate (as if the previous connection is still up); may be related. This just started happening with 0.11.1 (which appears to have a new ffmpeg build); 0.10.1 worked fine.

swilson avatar Dec 21 '22 17:12 swilson

I forgot to update this, I have moved away from QSV back to VAAPI and haven't had the /tmp/cache fill up since doing this.

I have had a GPU crash since swapping to VAAPI where the GPU renderer was stuck at 100% but only had that once so just keeping an eye on that.

I've see this as well. Is ffmpeg perhaps leaving file handles open? I also have issues with ffmpeg not being able to reconnect to my camera after it has been restarted by frigate (as if the previous connection is still up); may be related. This just started happening with 0.11.1 (which appears to have a new ffmpeg build); 0.10.1 worked fine.

Do you use GPU decoding and if so do you use QSV?

Dougiebabe avatar Dec 21 '22 17:12 Dougiebabe

@swilson the log was clear that the camera connect was being refused. Nothing we can do about that.

In 0.12 there will be a watchdog checking that recordings are being written.

@Dougiebabe interesting to know that, maybe the newer driver in 0.12 will help with that as well

NickM-27 avatar Dec 21 '22 17:12 NickM-27

I realize the connection is being refused. My theory is it is because there is already an open connection from the previous ffmpeg process. If I restart the docker container it connects without issue.

swilson avatar Dec 21 '22 17:12 swilson

In 0.11 Frigate won't create a new process for record if the existing one is still running (even if recording files stop being written). The fact that frigate is trying to connect again means the original record process has stopped.

We've seen this often because the camera refuses immediate connections but with the delay it takes to restart will accept that connection.

NickM-27 avatar Dec 21 '22 17:12 NickM-27

I forgot to update this, I have moved away from QSV back to VAAPI and haven't had the /tmp/cache fill up since doing this.

I have had a GPU crash since swapping to VAAPI where the GPU renderer was stuck at 100% but only had that once so just keeping an eye on that.

I've see this as well. Is ffmpeg perhaps leaving file handles open? I also have issues with ffmpeg not being able to reconnect to my camera after it has been restarted by frigate (as if the previous connection is still up); may be related. This just started happening with 0.11.1 (which appears to have a new ffmpeg build); 0.10.1 worked fine.

Do you use GPU decoding and if so do you use QSV?

I'm having this issue -- it started when i enabled QSV using the intel_gpu_plugin on k8s (microk8s on ubuntu)

When in this state, container health-check tries to recreate, however the container hangs on terminating and only a manual system reboot will fix it. I'm not skilled enough on k8s to determine exactly why -- but my understanding a terminating hang means a resource wont release. (I'm guessing its the GPU). If I force / kill the container, it cannot recreate (again i assume gpu resource is unavailable)

k1n6b0b avatar Dec 23 '22 20:12 k1n6b0b

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.

github-actions[bot] avatar Jan 23 '23 00:01 github-actions[bot]