From 9e0f5af9da0429ea0d7b83ff3024be1c65c1fd0b 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 ff8ff707a..b9708c8ff 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -632,7 +632,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)