namespace ErsatzTV.FFmpeg.Option; public class ThreadCountOption : GlobalOption { private readonly int _threadCount; public ThreadCountOption(int threadCount) => _threadCount = threadCount; public override IList GlobalOptions => new List { "-threads", _threadCount.ToString() }; }