* 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
7 lines
201 B
C#
7 lines
201 B
C#
namespace ErsatzTV.FFmpeg.OutputOption;
|
|
|
|
public class NoDemuxDecodeDelayOutputOption : OutputOption
|
|
{
|
|
public override string[] OutputOptions => new[] { "-muxdelay", "0", "-muxpreload", "0" };
|
|
}
|