mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-27 12:35:35 +08:00
28 lines
865 B
C#
28 lines
865 B
C#
using System;
|
|
using BililiveRecorder.ToolBox.ProcessingRules;
|
|
|
|
namespace BililiveRecorder.ToolBox.Tool.Fix
|
|
{
|
|
public class FixResponse
|
|
{
|
|
public string InputPath { get; set; } = string.Empty;
|
|
|
|
public string[] OutputPaths { get; set; } = Array.Empty<string>();
|
|
|
|
public bool NeedFix { get; set; }
|
|
public bool Unrepairable { get; set; }
|
|
|
|
public int OutputFileCount { get; set; }
|
|
|
|
public FlvStats? VideoStats { get; set; }
|
|
public FlvStats? AudioStats { get; set; }
|
|
|
|
public int IssueTypeOther { get; set; }
|
|
public int IssueTypeUnrepairable { get; set; }
|
|
public int IssueTypeTimestampJump { get; set; }
|
|
public int IssueTypeTimestampOffset { get; set; }
|
|
public int IssueTypeDecodingHeader { get; set; }
|
|
public int IssueTypeRepeatingData { get; set; }
|
|
}
|
|
}
|