From 07e6804f7a892514487334066a24661b395aab3d Mon Sep 17 00:00:00 2001 From: Nick <20588554+nicknsy@users.noreply.github.com> Date: Wed, 17 May 2023 22:46:30 -0700 Subject: [PATCH] Change default threads to 1 --- MediaBrowser.Model/Configuration/TrickplayOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MediaBrowser.Model/Configuration/TrickplayOptions.cs b/MediaBrowser.Model/Configuration/TrickplayOptions.cs index 1fff1a5ed5..92c16ee84f 100644 --- a/MediaBrowser.Model/Configuration/TrickplayOptions.cs +++ b/MediaBrowser.Model/Configuration/TrickplayOptions.cs @@ -56,5 +56,5 @@ public class TrickplayOptions /// /// Gets or sets the number of threads to be used by ffmpeg. /// - public int ProcessThreads { get; set; } = 0; + public int ProcessThreads { get; set; } = 1; }