diff --git a/server/Server.js b/server/Server.js index cc20ca8e..6188717d 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)