From 1337c78ef8d01b066ec45fa7013e57c68573da7a Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Thu, 10 Nov 2022 06:40:58 -0700 Subject: [PATCH] Return full output of ffprobe process --- frigate/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index 02bdf45eb..107ccbaf7 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -637,7 +637,7 @@ def ffprobe(camera_name): } ) - return jsonify(output, "200") + return jsonify(output) else: # user has single stream ffprobe = ffprobe_stream(config.ffmpeg.inputs[0].path)