mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
682 B
18 lines
682 B
using ErsatzTV.FFmpeg.Environment; |
|
|
|
namespace ErsatzTV.FFmpeg.GlobalOption; |
|
|
|
public class StreamSeekFilterOption : IPipelineStep |
|
{ |
|
private readonly TimeSpan _start; |
|
|
|
public StreamSeekFilterOption(TimeSpan start) => _start = start; |
|
|
|
public EnvironmentVariable[] EnvironmentVariables => Array.Empty<EnvironmentVariable>(); |
|
public string[] GlobalOptions => Array.Empty<string>(); |
|
public string[] InputOptions(InputFile inputFile) => Array.Empty<string>(); |
|
|
|
public string[] FilterOptions => new[] { "-ss", $"{_start:c}" }; |
|
public string[] OutputOptions => Array.Empty<string>(); |
|
public FrameState NextState(FrameState currentState) => currentState; |
|
}
|
|
|