namespace ErsatzTV.FFmpeg.Option.Metadata; public class DoNotMapMetadataOutputOption : OutputOption { public override IList OutputOptions => new List { "-map_metadata", "-1" }; public override FrameState NextState(FrameState currentState) => currentState with { DoNotMapMetadata = true }; }