You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mqtt:
host: 10.0.1.30user: mosquittopassword: XXXXXui:
use_experimental: truecameras:
entrance_cam:
ffmpeg:
inputs:
- path: rtsp://10.0.1.116/11roles:
- detectmotion:
threshold: 1# mask:# - 399,170,450,181,481,0,415,0detect:
width: 640height: 360fps: 10# Optional: enables detection for the camera (default: True)# This value can be set via MQTT and will be updated in startup based on retained valueenabled: True# Optional: Number of frames without a detection before frigate considers an object to be gone. (default: 5x the $max_disappeared: 350stationary:
interval: 90#threshold: 50objects:
track:
- personmask: 399,170,450,181,481,0,415,0filters:
person:
# Optional: minimum width*height of the bounding box for the detected object (default: 0)min_area: 5000width: 640height: 360fps: 10# Optional: enables detection for the camera (default: True)# This value can be set via MQTT and will be updated in startup based on retained valueenabled: True# Optional: Number of frames without a detection before frigate considers an object to be gone. (default: 5x the $max_disappeared: 350stationary:
interval: 90#threshold: 50objects:
track:
- personmask: 399,170,450,181,481,0,415,0filters:
person:
# Optional: minimum width*height of the bounding box for the detected object (default: 0)min_area: 5000# Optional: maximum width*height of the bounding box for the detected object (default: 24000000)max_area: 100000# Optional: minimum score for the object to initiate tracking (default: shown below)min_score: 0.77# Optional: minimum decimal percentage for tracked object's computed score to be considered a true positive ($threshold: 0.70record:
enabled: Trueretain_days: 1events:
retain:
default: 1# Optional: Configuration for the jpg snapshots written to the clips directory for each eventsnapshots:
# 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 valueenabled: True# Optional: print a timestamp on the snapshots (default: shown below)timestamp: Truemax_area: 100000# Optional: minimum score for the object to initiate tracking (default: shown below)min_score: 0.77# Optional: minimum decimal percentage for tracked object's computed score to be considered a true positive ($threshold: 0.70record:
enabled: Trueretain_days: 1events:
retain:
default: 1# Optional: Configuration for the jpg snapshots written to the clips directory for each eventsnapshots:
# 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 valueenabled: 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: 480# 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: 1# Optional: Per object retention daysobjects:
person: 1detectors:
coral:
type: edgetpudevice: usb
Relevant log output
[2022-08-28 17:48:58] frigate.app INFO : Starting Frigate (0.11.0-c461c9e)
[2022-08-28 17:48:58] frigate.config WARNING : The 'retain_days' config option has been DEPRECATED and will be removed in a future version. Please use the 'days' setting under 'retain'
Starting migrations
[2022-08-28 17:48:58] peewee_migrate INFO : Starting migrations
There is nothing to migrate
[2022-08-28 17:48:58] peewee_migrate INFO : There is nothing to migrate
[2022-08-28 17:48:58] detector.coral INFO : Starting detection process: 224
Exception in thread Thread-5:
Traceback (most recent call last):
File "/usr/lib/python3.9/threading.py", line 954, in _bootstrap_inner
self.run()
File "/opt/frigate/frigate/video.py", line 215, in run
self.start_ffmpeg_detect()
File "/opt/frigate/frigate/video.py", line 276, in start_ffmpeg_detect
self.ffmpeg_detect_process = start_or_restart_ffmpeg(
File "/opt/frigate/frigate/video.py", line 133, in start_or_restart_ffmpeg
process = sp.Popen(
File "/usr/lib/python3.9/subprocess.py", line 951, in __init__
self._execute_child(args, executable, preexec_fn, close_fds,
File "/usr/lib/python3.9/subprocess.py", line 1823, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'ffmpeg'
[2022-08-28 17:48:58] frigate.app INFO : Output process started: 225
Process output_processor:
[2022-08-28 17:48:58] frigate.edgetpu INFO : Attempting to load TPU as usb
[2022-08-28 17:48:58] ws4py INFO : Using epoll
[2022-08-28 17:48:58] frigate.app INFO : Camera processor started for entrance_cam: 228
[2022-08-28 17:48:58] frigate.app INFO : Capture process started for entrance_cam: 232
[2022-08-28 17:48:58] ws4py INFO : Using epoll
Traceback (most recent call last):
File "/usr/lib/python3.9/multiprocessing/process.py", line 315, in _bootstrap
self.run()
File "/usr/lib/python3.9/multiprocessing/process.py", line 108, in run
self._target(*self._args, **self._kwargs)
File "/opt/frigate/frigate/output.py", line 372, in output_frames
converters[camera] = FFMpegConverter(
File "/opt/frigate/frigate/output.py", line 36, in __init__
self.process = sp.Popen(
File "/usr/lib/python3.9/subprocess.py", line 951, in __init__
self._execute_child(args, executable, preexec_fn, close_fds,
File "/usr/lib/python3.9/subprocess.py", line 1823, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'ffmpeg'
[2022-08-28 17:49:01] frigate.edgetpu INFO : TPU found
[2022-08-28 17:50:05] ws4py INFO : Managing websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:46050]
[2022-08-28 17:50:43] ws4py INFO : Terminating websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:46050]
[2022-08-28 17:50:43] ws4py INFO : Managing websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:46052]
[2022-08-28 17:50:51] ws4py INFO : Terminating websocket [Local => 127.0.0.1:5002 | Remote => 127.0.0.1:46052]```
I've tried to set PATH variable to /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/jellyfin-ffmpegin-ffmpeg
I've also tried to remove the variable on Portainer but I'm getting same results.
Am I supposed to set a variable or just remove the variable?
We aren't using jellyfin ffmpeg anymore so that won't work. Ideally the path isn't overridden and it is accepted as is. #3223 mentions how this was done.
Describe the problem you are having
Camera output is green
Version
0.11.0-rc2
Frigate config file
Relevant log output
FFprobe output from your camera
Frigate stats
No response
Operating system
Proxmox
Install method
Docker Compose
Coral version
USB
Network connection
Wired
Camera make and model
Aqara G2H
Any other information that may be helpful
No response
The text was updated successfully, but these errors were encountered: