* update dependencies * use ffmpeg to resize images * use ffprobe to check for animated logos and watermarks * remove last use of imagesharp
14 lines
316 B
C#
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 };
|
|
}
|