Files
ersatztv/ErsatzTV.FFmpeg/Option/FileNameOutputOption.cs
T
Jason DoveandGitHub d54766866e optimize image manipulation (#722)
* update dependencies

* use ffmpeg to resize images

* use ffprobe to check for animated logos and watermarks

* remove last use of imagesharp
2022-04-03 22:43:11 -05:00

14 lines
316 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 };
}