* move subtitles provider into scanner * move more stuff into scanner * move nfo into scanner * add scan subcommand * fix a bunch of nfo build warnings * more subcommands * fix warnings * cleanup logging * remove unused code * cleanup old ffmpeg stuff * rename complex filter * refactor wrapped segmenter
7 lines
167 B
C#
7 lines
167 B
C#
namespace ErsatzTV.FFmpeg.Option;
|
|
|
|
public class MapAllStreamsOutputOption : OutputOption
|
|
{
|
|
public override IList<string> OutputOptions => new[] { "-map", "0" };
|
|
}
|