using ErsatzTV.FFmpeg.Environment; namespace ErsatzTV.FFmpeg.Format; public class ConcatInputFormat : IPipelineStep { public IList EnvironmentVariables => Array.Empty(); public IList GlobalOptions => Array.Empty(); public IList InputOptions => new List { "-f", "concat", "-safe", "0", "-protocol_whitelist", "file,http,tcp,https,tcp,tls", "-probesize", "32" }; public IList FilterOptions => Array.Empty(); public IList OutputOptions => Array.Empty(); public FrameState NextState(FrameState currentState) => currentState; }