10 lines
236 B
C#
10 lines
236 B
C#
namespace ErsatzTV.FFmpeg.OutputOption;
|
|
|
|
public class Mp4OutputOptions : OutputOption
|
|
{
|
|
public override string[] OutputOptions =>
|
|
[
|
|
"-movflags", "+empty_moov+omit_tfhd_offset+frag_keyframe+default_base_moof"
|
|
];
|
|
}
|