* cleanup scanner project * cleanup infrastructure projects * cleanup ffmpeg project * cleanup core project * cleanup app project * cleanup main project * update dependencies * code cleanup
7 lines
197 B
C#
7 lines
197 B
C#
namespace ErsatzTV.FFmpeg.OutputOption;
|
|
|
|
public class FastStartOutputOption : OutputOption
|
|
{
|
|
public override IList<string> OutputOptions => new List<string> { "-movflags", "+faststart" };
|
|
}
|