Files
ersatztv/ErsatzTV.FFmpeg/OutputFormat/OutputFormatWebVtt.cs
T

14 lines
465 B
C#

using ErsatzTV.FFmpeg.Environment;
namespace ErsatzTV.FFmpeg.OutputFormat;
public class OutputFormatWebVtt : IPipelineStep
{
public EnvironmentVariable[] EnvironmentVariables => [];
public string[] GlobalOptions => [];
public string[] InputOptions(InputFile inputFile) => [];
public string[] FilterOptions => [];
public string[] OutputOptions => ["-f", "webvtt"];
public FrameState NextState(FrameState currentState) => currentState;
}