14 lines
459 B
C#
14 lines
459 B
C#
using ErsatzTV.FFmpeg.Environment;
|
|
|
|
namespace ErsatzTV.FFmpeg.OutputFormat;
|
|
|
|
public class OutputFormatAss : IPipelineStep
|
|
{
|
|
public EnvironmentVariable[] EnvironmentVariables => [];
|
|
public string[] GlobalOptions => [];
|
|
public string[] InputOptions(InputFile inputFile) => [];
|
|
public string[] FilterOptions => [];
|
|
public string[] OutputOptions => ["-f", "ass"];
|
|
public FrameState NextState(FrameState currentState) => currentState;
|
|
}
|