2021-07-15 19:56:58 +08:00
|
|
|
using System;
|
2021-07-15 12:58:50 +08:00
|
|
|
using BililiveRecorder.ToolBox.ProcessingRules;
|
2021-07-15 19:56:58 +08:00
|
|
|
using Spectre.Console;
|
2021-07-15 12:58:50 +08:00
|
|
|
|
|
|
|
namespace BililiveRecorder.ToolBox.Tool.Fix
|
|
|
|
{
|
2021-07-15 19:56:58 +08:00
|
|
|
public class FixResponse : IResponseData
|
2021-07-15 12:58:50 +08:00
|
|
|
{
|
|
|
|
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; }
|
2021-07-15 19:56:58 +08:00
|
|
|
|
|
|
|
public void PrintToConsole()
|
|
|
|
{
|
|
|
|
AnsiConsole.Render(new FigletText("Done").Color(Color.Green));
|
|
|
|
|
|
|
|
if (this.Unrepairable)
|
|
|
|
{
|
|
|
|
AnsiConsole.Render(new Panel("This file contains error(s) that are identified as unrepairable (yet).\n" +
|
|
|
|
"Please check if you're using the newest version.\n" +
|
|
|
|
"Please consider send a sample file to the developer.")
|
|
|
|
{
|
|
|
|
Header = new PanelHeader("Important Note"),
|
|
|
|
Border = BoxBorder.Rounded,
|
|
|
|
BorderStyle = new Style(foreground: Color.Red)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
AnsiConsole.Render(new Panel(this.InputPath.EscapeMarkup())
|
|
|
|
{
|
|
|
|
Header = new PanelHeader("Input"),
|
|
|
|
Border = BoxBorder.Rounded
|
|
|
|
});
|
|
|
|
|
|
|
|
var table_output = new Table()
|
|
|
|
.Border(TableBorder.Rounded)
|
|
|
|
.AddColumns("Output");
|
|
|
|
|
|
|
|
for (var i = 0; i < this.OutputPaths.Length; i++)
|
|
|
|
table_output.AddRow(this.OutputPaths[i]);
|
|
|
|
|
|
|
|
AnsiConsole.Render(table_output);
|
|
|
|
|
|
|
|
AnsiConsole.Render(new Table()
|
|
|
|
.Border(TableBorder.Rounded)
|
|
|
|
.AddColumns("Category", "Count")
|
|
|
|
.AddRow("Unrepairable", this.IssueTypeUnrepairable.ToString())
|
|
|
|
.AddRow("Other", this.IssueTypeOther.ToString())
|
|
|
|
.AddRow("TimestampJump", this.IssueTypeTimestampJump.ToString())
|
|
|
|
.AddRow("TimestampOffset", this.IssueTypeTimestampOffset.ToString())
|
|
|
|
.AddRow("DecodingHeader", this.IssueTypeDecodingHeader.ToString())
|
|
|
|
.AddRow("RepeatingData", this.IssueTypeRepeatingData.ToString())
|
|
|
|
);
|
|
|
|
}
|
2021-07-15 12:58:50 +08:00
|
|
|
}
|
|
|
|
}
|