11 lines
299 B
C#
11 lines
299 B
C#
namespace ErsatzTV.FFmpeg.Option;
|
|
|
|
public class FileNameOutputOption : OutputOption
|
|
{
|
|
private readonly string _outputFile;
|
|
|
|
public FileNameOutputOption(string outputFile) => _outputFile = outputFile;
|
|
|
|
public override IList<string> OutputOptions => new List<string> { _outputFile };
|
|
}
|