Change default threads to 1

This commit is contained in:
Nick 2023-05-17 22:46:30 -07:00
parent 3377032228
commit 07e6804f7a
1 changed files with 1 additions and 1 deletions

View File

@ -56,5 +56,5 @@ public class TrickplayOptions
/// <summary>
/// Gets or sets the number of threads to be used by ffmpeg.
/// </summary>
public int ProcessThreads { get; set; } = 0;
public int ProcessThreads { get; set; } = 1;
}