* upgrade sdk * fix warnings in ersatztv.ffmpeg * fix warnings in ersatztv.core * fix warnings in ersatztv.infrastructure * fix warnings in ersatztv.application * disable analysis for migrations projects * fix warnings in ersatztv.scanner * fix warnings in ersatztv * upgrade project framework * update github actions and dockerfiles
11 lines
289 B
C#
11 lines
289 B
C#
namespace ErsatzTV.FFmpeg.OutputOption;
|
|
|
|
public class FileNameOutputOption : OutputOption
|
|
{
|
|
private readonly string _outputFile;
|
|
|
|
public FileNameOutputOption(string outputFile) => _outputFile = outputFile;
|
|
|
|
public override string[] OutputOptions => new[] { _outputFile };
|
|
}
|