mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-02-18 00:16:41 +01:00
handle empty string args
This commit is contained in:
parent
181f66357b
commit
096c21f105
@ -668,12 +668,14 @@ class CameraConfig():
|
||||
if len(ffmpeg_output_args) == 0:
|
||||
return None
|
||||
|
||||
return (['ffmpeg'] +
|
||||
cmd = (['ffmpeg'] +
|
||||
ffmpeg_input.global_args +
|
||||
ffmpeg_input.hwaccel_args +
|
||||
ffmpeg_input.input_args +
|
||||
['-i', ffmpeg_input.path] +
|
||||
ffmpeg_output_args)
|
||||
|
||||
return [part for part in cmd if part != '']
|
||||
|
||||
def _set_zone_colors(self, zones: Dict[str, ZoneConfig]):
|
||||
# set colors for zones
|
||||
|
Loading…
Reference in New Issue
Block a user