Files
ersatztv/ErsatzTV.FFmpeg/Option/FileNameOutputOption.cs
T
Jason DoveandGitHub c02b83d0d6 code cleanup (#743)
* update tools

* run code cleanup

* update dependencies
2022-04-19 17:47:18 -05:00

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 };
}