From 59370cae815e86a96b950ca2ea722d7a99604cdb Mon Sep 17 00:00:00 2001 From: advplyr Date: Sat, 10 Aug 2024 12:37:41 -0500 Subject: [PATCH] Update:Docker source skip binary manager check #3266 --- server/Server.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/server/Server.js b/server/Server.js index cc20ca8ecc..6188717d5b 100644 --- a/server/Server.js +++ b/server/Server.js @@ -110,7 +110,14 @@ class Server { await this.playbackSessionManager.removeOrphanStreams() - await this.binaryManager.init() + /** + * Docker container ffmpeg/ffprobe binaries are included in the image. + * Docker is currently using ffmpeg/ffprobe v6.1 instead of v5.1 so skipping the check + * TODO: Support binary check for all sources + */ + if (global.Source !== 'docker') { + await this.binaryManager.init() + } await Database.init(false)