blakeblackshear / frigate

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

[Support]: ffmpeg process is not running. exiting capture thread after updating to 0.11.0 (HASS DOCKER x64) #3930

Closed BillBlight closed 2 years ago

BillBlight commented 2 years ago

HASS addon DOCKER x64

After updating the HASS Addon to 0.11.0 I am having this error:

ffmpeg process is not running. exiting capture thread...

HASS DOCKER x64

ffprobe: https://pastebin.com/PhRmcghR

frigate HASS Log: https://pastebin.com/mtN1qHzE

Version

0.11.0

Frigate config file

mqtt:
  host: 172.16.16.10
  user: <USER>
  password: <PASSWORD>

cameras:
  Patio:
    ffmpeg:
      inputs:
        - path: rtsp://<USER><PASSWORD>@172.16.16.210:554/user=admin_password=_channel=0_stream=0.sdp?real_streamp
          roles:
            - detect
            - clips
            - record
    detect:
      width: 1920
      height: 1080
      fps: 15
    objects:
      track:
        - person
    record: # <----- Enable recording
      enabled: True
      events:
        retain:
          default: 10
          objects:
            person: 15
    snapshots: # <----- Enable snapshots
      enabled: True
      bounding_box: True
      timestamp: True
    mqtt:
        # Optional: Enable publishing snapshot via mqtt for camera (default: shown below)
        # NOTE: Only applies to publishing image data to MQTT via 'frigate/<camera_name>/<object_name>/snapshot'.
        # All other messages will still be published.
      enabled: True
        # Optional: print a timestamp on the snapshots (default: shown below)
      timestamp: True
        # Optional: draw bounding box on the snapshots (default: shown below)
      bounding_box: True
        # Optional: crop the snapshot (default: shown below)
      crop: True
        # Optional: height to resize the snapshot to (default: shown below)
        #height: 270
        # Optional: jpeg encode quality (default: shown below)
      quality: 33
        # Optional: Restrict mqtt messages to objects that entered any of the listed zones (default: no required zones)
        #required_zones: []
  Theater:
    ffmpeg:
      inputs:
        - path: rtsp://<USER><PASSWORD>@172.16.16.111/live
          roles:
            - clips
    detect:
      width: 1920
      height: 1080
      fps: 15
    objects:
      track:
        - person
    record: # <----- Enable recording
      enabled: True
      events:
        retain:
          default: 10
          objects:
            person: 15
    snapshots: # <----- Enable snapshots
      enabled: True
      bounding_box: True
      timestamp: True
    mqtt:
      timestamp: True
      bounding_box: True
      crop: True
        #height: 270
      quality: 33
        # Optional: Restrict mqtt messages to objects that entered any of the listed zones (default: no required zones)
        #required_zones: []

birdseye:
  # Optional: Enable birdseye view (default: shown below)
  enabled: True

detect:
    # Optional: width of the frame for the input with the detect role (default: shown below)
    #width: 1280
    # Optional: height of the frame for the input with the detect role (default: shown below)
    #height: 720
    # Optional: desired fps for your camera for the input with the detect role (default: shown below)
    # NOTE: Recommended value of 5. Ideally, try and reduce your FPS on the camera.
  fps: 12
    # Optional: enables detection for the camera (default: True)
    # This value can be set via MQTT and will be updated in startup based on retained value
  enabled: True
    # Optional: Number of frames without a detection before frigate considers an object to be gone. (default: 5x the frame rate)
  max_disappeared: 25
    # Optional: Configuration for stationary object tracking

objects:
    # Optional: list of objects to track from labelmap.txt (default: shown below)
  track:
    - person
    - dog

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

  # Optional: Record configuration
  # NOTE: Can be overridden at the camera level
record:
    # Optional: Enable recording (default: shown below)
    # WARNING: If recording is disabled in the config, turning it on via 
    #          the UI or MQTT later will have no effect.
    # WARNING: Frigate does not currently support limiting recordings based
    #          on available disk space automatically. If using recordings,
    #          you must specify retention settings for a number of days that
    #          will fit within the available disk space of your drive or Frigate
    #          will crash.
  enabled: True
    # Optional: Number of minutes to wait between cleanup runs (default: shown below)
    # This can be used to reduce the frequency of deleting recording segments from disk if you want to minimize i/o
  expire_interval: 60
    # Optional: Retention settings for recording
  retain:
      # Optional: Number of days to retain recordings regardless of events (default: shown below)
      # NOTE: This should be set to 0 and retention should be defined in events section below
      #       if you only want to retain recordings of events.
    days: 14
      # Optional: Mode for retention. Available options are: all, motion, and active_objects
      #   all - save all recording segments regardless of activity
      #   motion - save all recordings segments with any detected motion
      #   active_objects - save all recording segments with active/moving objects
      # NOTE: this mode only applies when the days setting above is greater than 0
    mode: all
    # Optional: Event recording settings
  events:
      # Optional: Maximum length of time to retain video during long events. (default: shown below)
      # NOTE: If an object is being tracked for longer than this amount of time, the retained recordings
      #       will be the last x seconds of the event unless retain->days under record is > 0.
    #max_seconds: 300
      # Optional: Number of seconds before the event to include (default: shown below)
    pre_capture: 5
      # Optional: Number of seconds after the event to include (default: shown below)
    post_capture: 5
      # Optional: Objects to save recordings for. (default: all tracked objects)
    objects:
      - person
      - dog
      # Optional: Restrict recordings to objects that entered any of the listed zones (default: no required zones)
      # required_zones: []
      # Optional: Retention settings for recordings of events
    retain:
        # Required: Default retention days (default: shown below)
      default: 10
      mode: motion

  # Optional: Configuration for the jpg snapshots written to the clips directory for each event
  # NOTE: Can be overridden at the camera level
snapshots:
    # Optional: Enable writing jpg snapshot to /media/frigate/clips (default: shown below)
    # This value can be set via MQTT and will be updated in startup based on retained value
  enabled: True
    # Optional: save a clean PNG copy of the snapshot image (default: shown below)
  clean_copy: True
    # Optional: print a timestamp on the snapshots (default: shown below)
  timestamp: True
    # Optional: draw bounding box on the snapshots (default: shown below)
  bounding_box: True
    # Optional: crop the snapshot (default: shown below)
  crop: False
    # Optional: height to resize the snapshot to (default: original size)
    #height: 175
    # Optional: Restrict snapshots to objects that entered any of the listed zones (default: no required zones)
  #required_zones: []
    # Optional: Camera override for retention settings (default: global values)
  retain:
      # Required: Default retention days (default: shown below)
    default: 15
      # Optional: Per object retention days
    objects:
      person: 15
      dog: 5
live:
  # Optional: Set the height of the live stream. (default: 720)
  # This must be less than or equal to the height of the detect stream. Lower resolutions
  # reduce bandwidth required for viewing the live stream. Width is computed to match known aspect ratio.
  height: 1280
  # Optional: Set the encode quality of the live stream (default: shown below)
  # 1 is the highest quality, and 31 is the lowest. Lower quality feeds utilize less CPU resources.
  quality: 1

# Optional: in-feed timestamp style configuration
# NOTE: Can be overridden at the camera level
timestamp_style:
  # Optional: Position of the timestamp (default: shown below)
  #           "tl" (top left), "tr" (top right), "bl" (bottom left), "br" (bottom right)
  position: "tl"
  # Optional: Format specifier conform to the Python package "datetime" (default: shown below)
  #           Additional Examples:
  #             german: "%d.%m.%Y %H:%M:%S"
  format: "%m/%d/%Y %H:%M:%S"
  # Optional: Color of font
  color:
    # All Required when color is specified (default: shown below)
    red: 255
    green: 255
    blue: 255
  # Optional: Line thickness of font (default: shown below)
  thickness: 2
  # Optional: Effect of lettering (default: shown below)
  #           None (No effect),
  #           "solid" (solid background in inverse color of font)
  #           "shadow" (shadow for font)
  effect: shadow

rtmp:
  enabled: false

ffmpeg:
  # Optional: global ffmpeg args (default: shown below)
  global_args: -hide_banner -loglevel warning
  # Optional: global hwaccel args (default: shown below)
  # NOTE: See hardware acceleration docs for your specific device
  hwaccel_args: []
  # Optional: global input args (default: shown below)
  input_args: -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1
  # Optional: global output args
  output_args:
    # Optional: output args for detect streams (default: shown below)
    detect: -f rawvideo -pix_fmt yuv420p
    # Optional: output args for record streams (default: shown below)
    record: -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an
    # Optional: output args for rtmp streams (default: shown below)
    rtmp: -c copy -f flv

detectors:
  cpu1:
    type: cpu
    num_threads: 2
  cpu2:
    type: cpu
    num_threads: 2

Relevant log output

[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] done.
[services.d] starting services
[services.d] done.
[2022-09-24 20:30:42] frigate.app                    INFO    : Starting Frigate (0.11.0-3846a13)
[2022-09-24 20:30:42] frigate.app                    INFO    : Creating directory: /tmp/cache
Starting migrations
[2022-09-24 20:30:42] peewee_migrate                 INFO    : Starting migrations
There is nothing to migrate
[2022-09-24 20:30:42] peewee_migrate                 INFO    : There is nothing to migrate
[2022-09-24 20:30:42] detector.cpu1                  INFO    : Starting detection process: 256
[2022-09-24 20:30:42] detector.cpu2                  INFO    : Starting detection process: 257
[2022-09-24 20:30:42] frigate.app                    INFO    : Output process started: 260
[2022-09-24 20:30:42] frigate.edgetpu                WARNING : CPU detectors are not recommended and should only be used for testing or for trial purposes.
[2022-09-24 20:30:42] frigate.edgetpu                WARNING : CPU detectors are not recommended and should only be used for testing or for trial purposes.
[2022-09-24 20:30:42] frigate.app                    INFO    : Camera processor started for Patio: 262
[2022-09-24 20:30:42] ws4py                          INFO    : Using epoll
[2022-09-24 20:30:42] frigate.app                    INFO    : Camera processor started for Theater: 265
[2022-09-24 20:30:42] frigate.app                    INFO    : Capture process started for Patio: 267
[2022-09-24 20:30:42] frigate.app                    INFO    : Capture process started for Theater: 270
[2022-09-24 20:30:42] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:30:42] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:30:42] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:30:42] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:30:43] ws4py                          INFO    : Using epoll
[2022-09-24 20:31:02] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:31:02] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:31:02] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:31:02] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:31:02] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:31:02] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:31:02] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:31:02] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:31:03] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:31:03] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:31:03] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:31:03] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:31:12] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:31:12] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:31:12] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:31:12] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:31:13] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:31:13] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:31:13] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:31:13] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:31:13] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:31:13] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:31:13] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:31:13] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:31:23] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:31:23] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:31:23] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:31:23] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:31:23] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:31:23] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:31:23] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:31:23] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:31:23] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:31:23] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:31:23] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:31:23] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:31:33] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:31:33] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:31:33] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:31:33] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:31:33] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:31:33] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:31:33] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:31:33] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:31:33] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:31:33] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:31:33] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:31:33] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:31:43] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:31:43] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:31:43] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:31:43] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:31:43] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:31:43] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:31:43] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:31:43] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:31:43] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:31:43] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:31:43] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:31:43] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:31:53] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:31:53] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:31:53] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:31:53] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:31:53] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:31:53] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:31:53] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:31:53] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:31:53] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:31:53] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:31:53] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:31:53] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:32:03] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:32:03] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:32:03] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:32:03] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:32:03] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:32:03] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:32:03] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:32:03] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:32:03] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:32:03] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:32:03] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:32:03] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:32:13] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:32:13] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:32:13] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:32:13] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:32:13] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:32:13] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:32:13] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:32:13] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:32:13] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:32:13] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:32:13] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:32:13] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:32:23] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:32:23] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:32:23] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:32:23] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:32:23] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:32:23] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:32:23] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:32:23] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:32:23] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:32:23] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:32:23] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:32:23] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:32:33] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:32:33] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:32:33] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:32:33] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:32:33] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:32:33] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:32:33] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:32:33] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:32:33] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:32:33] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:32:33] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:32:33] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:32:43] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:32:43] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:32:43] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:32:43] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:32:43] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:32:43] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:32:43] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:32:43] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:32:43] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:32:43] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:32:43] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:32:43] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:32:53] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:32:53] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:32:53] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:32:53] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:32:53] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:32:53] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:32:53] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:32:53] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:32:53] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:32:53] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:32:53] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:32:53] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:33:03] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:33:03] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:33:03] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:33:03] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:33:03] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:33:03] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:33:03] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:33:03] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:33:03] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:33:03] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:33:03] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:33:03] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:33:13] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:33:13] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:33:13] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:33:13] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:33:13] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:33:13] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:33:13] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:33:13] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:33:13] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:33:13] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:33:13] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:33:13] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:33:23] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:33:23] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:33:23] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:33:23] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:33:23] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:33:23] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:33:23] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:33:23] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:33:23] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:33:23] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:33:23] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:33:23] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:33:33] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:33:33] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:33:33] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:33:33] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:33:33] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:33:33] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:33:33] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:33:33] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:33:33] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:33:33] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:33:33] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:33:33] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:33:43] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:33:43] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:33:43] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:33:43] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:33:43] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:33:43] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:33:43] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:33:43] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:33:43] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:33:43] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:33:43] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:33:43] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:33:53] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:33:53] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:33:53] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:33:53] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:33:53] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:33:53] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:33:53] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:33:53] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:33:53] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:33:53] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:33:53] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:33:53] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:34:03] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:34:03] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:34:03] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:34:03] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:34:03] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:34:03] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:34:03] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:34:03] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:34:03] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:34:03] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:34:03] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:34:03] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:34:13] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:34:13] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:34:13] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:34:13] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:34:13] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:34:13] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:34:13] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:34:13] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:34:13] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:34:13] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:34:13] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:34:13] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:34:23] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:34:23] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:34:23] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:34:23] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:34:23] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:34:23] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:34:23] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:34:23] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:34:23] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:34:23] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:34:23] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:34:23] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:34:33] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:34:33] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:34:33] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:34:33] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:34:33] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:34:33] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:34:33] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:34:33] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:34:33] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:34:33] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:34:33] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:34:33] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:34:43] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:34:43] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:34:43] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:34:43] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:34:43] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:34:43] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:34:43] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:34:43] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:34:43] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:34:43] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:34:43] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:34:43] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:34:53] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:34:53] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:34:53] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:34:53] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:34:53] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:34:53] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:34:53] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:34:53] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:34:53] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:34:53] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:34:53] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:34:53] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:35:03] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:35:03] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:35:03] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:35:03] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:35:03] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:35:03] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:35:03] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:35:03] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:35:03] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:35:03] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:35:03] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:35:03] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:35:13] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:35:13] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:35:13] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:35:13] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:35:13] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:35:13] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:35:13] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:35:13] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:35:13] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:35:13] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:35:13] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:35:13] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:35:23] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:35:23] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:35:23] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:35:23] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:35:23] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:35:23] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:35:23] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:35:23] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:35:23] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:35:23] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:35:23] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:35:23] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:35:33] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:35:33] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:35:33] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:35:33] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:35:33] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:35:33] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:35:33] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:35:33] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:35:33] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:35:33] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:35:33] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:35:33] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:35:43] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:35:43] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:35:43] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:35:43] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:35:43] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:35:43] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:35:43] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:35:43] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:35:43] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:35:43] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:35:43] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:35:43] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:35:53] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:35:53] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:35:53] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:35:53] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:35:53] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:35:53] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:35:53] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:35:53] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:35:53] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:35:53] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:35:53] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:35:53] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:36:03] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:36:03] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:36:03] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:36:03] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:36:03] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:36:03] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:36:03] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:36:03] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:36:03] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:36:03] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:36:03] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:36:03] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:36:13] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:36:13] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:36:13] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:36:13] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:36:13] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:36:13] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:36:13] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:36:13] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:36:13] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:36:13] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:36:13] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:36:13] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:36:23] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:36:23] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:36:23] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:36:23] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:36:23] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:36:23] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:36:23] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:36:23] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:36:23] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:36:23] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:36:23] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:36:23] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:36:33] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:36:33] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:36:33] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:36:33] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:36:33] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:36:33] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:36:33] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:36:33] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:36:33] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:36:33] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:36:33] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:36:33] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:36:43] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:36:43] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:36:43] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:36:43] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:36:43] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:36:43] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:36:43] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:36:43] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:36:43] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:36:43] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:36:43] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:36:43] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:36:53] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:36:53] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:36:53] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:36:53] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:36:53] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:36:53] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:36:53] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:36:53] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:36:53] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:36:53] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:36:53] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:36:53] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:37:03] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:37:03] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:37:03] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:37:03] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:37:03] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:37:03] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:37:03] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:37:03] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:37:03] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:37:03] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:37:03] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:37:03] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:37:13] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:37:13] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:37:13] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:37:13] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:37:13] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:37:13] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:37:13] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:37:13] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:37:13] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:37:13] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:37:13] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:37:13] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:37:23] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:37:23] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:37:23] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:37:23] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:37:23] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:37:23] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:37:23] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:37:23] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:37:23] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:37:23] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:37:23] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:37:23] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:37:33] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:37:33] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:37:33] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:37:33] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:37:33] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:37:33] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:37:33] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:37:33] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:37:33] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:37:33] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:37:33] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:37:33] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:37:43] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:37:43] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:37:43] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:37:43] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:37:43] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:37:43] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:37:43] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:37:43] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:37:43] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:37:43] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:37:43] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:37:43] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:37:53] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:37:53] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:37:53] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:37:53] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:37:53] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:37:53] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:37:53] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:37:53] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:37:53] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:37:53] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:37:53] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:37:53] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:38:03] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:38:03] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:38:03] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:38:03] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:38:03] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:38:03] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:38:03] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:38:03] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:38:03] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:38:03] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:38:03] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:38:03] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:38:13] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:38:13] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:38:13] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:38:13] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:38:13] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:38:13] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:38:13] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:38:13] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:38:13] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:38:13] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:38:13] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:38:13] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:38:23] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:38:23] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:38:23] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:38:23] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:38:23] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:38:23] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:38:23] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:38:23] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:38:23] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:38:23] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:38:23] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:38:23] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:38:33] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:38:33] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:38:33] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:38:33] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:38:33] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:38:33] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:38:33] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:38:33] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:38:33] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:38:33] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:38:33] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:38:33] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:38:43] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:38:43] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:38:43] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:38:43] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:38:43] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:38:43] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:38:43] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:38:43] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:38:43] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:38:43] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:38:43] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:38:43] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:38:53] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:38:53] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:38:53] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:38:53] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:38:53] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:38:53] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:38:53] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:38:53] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:38:53] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:38:53] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:38:53] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:38:53] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:39:03] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:39:03] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:39:03] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:39:03] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:39:03] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:39:03] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:39:03] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:39:03] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:39:03] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:39:03] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:39:03] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:39:03] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:39:13] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:39:13] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:39:13] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:39:13] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:39:13] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:39:13] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:39:13] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:39:13] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:39:13] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:39:13] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:39:13] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:39:13] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:39:23] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:39:23] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:39:23] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:39:23] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:39:23] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:39:23] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:39:23] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:39:23] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:39:23] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:39:23] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:39:23] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:39:23] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:39:33] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:39:33] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:39:33] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:39:33] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:39:33] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:39:33] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:39:33] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:39:33] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:39:33] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:39:33] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:39:33] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:39:33] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:39:43] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:39:43] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:39:43] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:39:43] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:39:43] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:39:43] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:39:43] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:39:43] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:39:43] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:39:43] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:39:43] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:39:43] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:39:53] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:39:53] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:39:53] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:39:53] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:39:53] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:39:53] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:39:53] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:39:53] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:39:53] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:39:53] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:39:53] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:39:53] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:40:03] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:40:03] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:40:03] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:40:03] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:40:03] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:40:03] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:40:03] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:40:03] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:40:03] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:40:03] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:40:03] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:40:03] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:40:13] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:40:13] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:40:13] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:40:13] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:40:13] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:40:13] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:40:13] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:40:13] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:40:13] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:40:13] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:40:13] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:40:13] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:40:23] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:40:23] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:40:23] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:40:23] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:40:23] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:40:23] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:40:23] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:40:23] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:40:23] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:40:23] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:40:23] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:40:23] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:40:33] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:40:33] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:40:33] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:40:33] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:40:33] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:40:33] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:40:33] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:40:33] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:40:33] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:40:33] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:40:33] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:40:33] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:40:43] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:40:43] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:40:43] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:40:43] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:40:43] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:40:43] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:40:43] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:40:43] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:40:43] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:40:43] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:40:43] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:40:43] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:40:53] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:40:53] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:40:53] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:40:53] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:40:53] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:40:53] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:40:53] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:40:53] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:40:53] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:40:53] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:40:53] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:40:53] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:41:03] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:41:03] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:41:03] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:41:03] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:41:03] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:41:03] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:41:03] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:41:03] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:41:03] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:41:03] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:41:03] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:41:03] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:41:13] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:41:13] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:41:13] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:41:13] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:41:13] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:41:13] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:41:13] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:41:13] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:41:13] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:41:13] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:41:13] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:41:13] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:41:23] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:41:23] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:41:23] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:41:23] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:41:23] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:41:23] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:41:23] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:41:23] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:41:23] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:41:23] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:41:23] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:41:23] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:41:33] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:41:33] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:41:33] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:41:33] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:41:33] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:41:33] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:41:33] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:41:33] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:41:33] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:41:33] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:41:33] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:41:33] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:41:43] watchdog.Theater               ERROR   : Ffmpeg process crashed unexpectedly for Theater.
[2022-09-24 20:41:43] watchdog.Theater               ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:41:43] ffmpeg.Theater.detect          ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:41:43] ffmpeg.Theater.detect          ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:41:43] frigate.video                  ERROR   : Theater: Unable to read frames from ffmpeg process.
[2022-09-24 20:41:43] frigate.video                  ERROR   : Theater: ffmpeg process is not running. exiting capture thread...
[2022-09-24 20:41:43] watchdog.Patio                 ERROR   : Ffmpeg process crashed unexpectedly for Patio.
[2022-09-24 20:41:43] watchdog.Patio                 ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-24 20:41:43] ffmpeg.Patio.detect            ERROR   : Unrecognized option 'stimeout'.
[2022-09-24 20:41:43] ffmpeg.Patio.detect            ERROR   : Error splitting the argument list: Option not found
[2022-09-24 20:41:43] frigate.video                  ERROR   : Patio: Unable to read frames from ffmpeg process.
[2022-09-24 20:41:43] frigate.video                  ERROR   : Patio: ffmpeg process is not running. exiting capture thread...

FFprobe output from your camera

ffprobe version n5.1-2-g915ef932a3-20220731 Copyright (c) 2007-2022 the FFmpeg developers
  built with gcc 12.1.0 (crosstool-NG 1.25.0.55_3defb7b)
  configuration: --prefix=/ffbuild/prefix --pkg-config-flags=--static --pkg-config=pkg-config --cross-prefix=x86_64-ffbuild-linux-gnu- --arch=x86_64 --target-os=linux --enable-gpl --enable-version3 --disable-debug --enable-iconv --enable-libxml2 --enable-zlib --enable-libfreetype --enable-libfribidi --enable-gmp --enable-lzma --enable-fontconfig --enable-libvorbis --enable-opencl --enable-libpulse --enable-libvmaf --enable-libxcb --enable-xlib --enable-amf --enable-libaom --enable-libaribb24 --enable-avisynth --enable-libdav1d --enable-libdavs2 --disable-libfdk-aac --enable-ffnvcodec --enable-cuda-llvm --enable-frei0r --enable-libgme --enable-libass --enable-libbluray --enable-libjxl --enable-libmp3lame --enable-libopus --enable-mbedtls --enable-librist --enable-libtheora --enable-libvpx --enable-libwebp --enable-lv2 --enable-libmfx --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenh264 --enable-libopenjpeg --enable-libopenmpt --enable-librav1e --enable-librubberband --disable-schannel --enable-sdl2 --enable-libsoxr --enable-libsrt --enable-libsvtav1 --enable-libtwolame --enable-libuavs3d --enable-libdrm --enable-vaapi --enable-libvidstab --enable-vulkan --enable-libshaderc --enable-libplacebo --enable-libx264 --enable-libx265 --enable-libxavs2 --enable-libxvid --enable-libzimg --enable-libzvbi --extra-cflags=-DLIBTWOLAME_STATIC --extra-cxxflags= --extra-ldflags=-pthread --extra-ldexeflags=-pie --extra-libs='-ldl -lgomp' --extra-version=20220731
  libavutil      57. 28.100 / 57. 28.100
  libavcodec     59. 37.100 / 59. 37.100
  libavformat    59. 27.100 / 59. 27.100
  libavdevice    59.  7.100 / 59.  7.100
  libavfilter     8. 44.100 /  8. 44.100
  libswscale      6.  7.100 /  6.  7.100
  libswresample   4.  7.100 /  4.  7.100
  libpostproc    56.  6.100 / 56.  6.100
Input #0, rtsp, from 'rtsp://<USER><PASSWORD>@172.16.16.213:554/user=admin_password=_channel=0_stream=0.sdp?real_streamp':
  Metadata:
    title           : RTSP Session
  Duration: N/A, start: 0.000000, bitrate: N/A
  Stream #0:0: Video: h264 (Main), yuv420p(progressive), 2288x1288, 12 fps, 12 tbr, 90k tbn
  Stream #0:1: Audio: pcm_alaw, 8000 Hz, 1 channels, s16, 64 kb/

Frigate stats

No response

Operating system

Debian

Install method

HassOS Addon

Coral version

CPU (no coral)

Network connection

Wired

Camera make and model

condida

Any other information that may be helpful

DELL R510 64gb 2x hex core This system was working fine until I updated today ...

I have tried with and with and without hwaccel_args

NickM-27 commented 2 years ago

Please let Frigate run longer then paste the logs so there is more info included

BillBlight commented 2 years ago

Longer Logs, updated them above as well ..

https://pastebin.com/JaaK5gpC

Cameras do work and are accessible to the network ..

https://gyazo.com/74a056fe02cdf0aaa27318429d311842

BillBlight commented 2 years ago

Ok figured this out, was using a snippet from the example firgate config and it did not like ..

'-stimeout 50000' removed it from the input_args and everything started working again ..

NickM-27 commented 2 years ago

Glad you solved it!