mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
misc: fix test
This commit is contained in:
parent
26ea02d944
commit
b5e6bec0ea
|
@ -77,6 +77,7 @@ namespace BililiveRecorder.Core.Config.V3
|
||||||
public string Cookie { get; }
|
public string Cookie { get; }
|
||||||
public BililiveRecorder.Core.Config.CuttingMode CuttingMode { get; }
|
public BililiveRecorder.Core.Config.CuttingMode CuttingMode { get; }
|
||||||
public uint CuttingNumber { get; }
|
public uint CuttingNumber { get; }
|
||||||
|
public bool DanmakuAuthenticateWithStreamerUid { get; }
|
||||||
public BililiveRecorder.Core.Config.DanmakuTransportMode DanmakuTransport { get; }
|
public BililiveRecorder.Core.Config.DanmakuTransportMode DanmakuTransport { get; }
|
||||||
public string FileNameRecordTemplate { get; }
|
public string FileNameRecordTemplate { get; }
|
||||||
public bool FlvProcessorSplitOnScriptTag { get; }
|
public bool FlvProcessorSplitOnScriptTag { get; }
|
||||||
|
@ -113,6 +114,7 @@ namespace BililiveRecorder.Core.Config.V3
|
||||||
public string? Cookie { get; set; }
|
public string? Cookie { get; set; }
|
||||||
public BililiveRecorder.Core.Config.CuttingMode CuttingMode { get; set; }
|
public BililiveRecorder.Core.Config.CuttingMode CuttingMode { get; set; }
|
||||||
public uint CuttingNumber { get; set; }
|
public uint CuttingNumber { get; set; }
|
||||||
|
public bool DanmakuAuthenticateWithStreamerUid { get; set; }
|
||||||
public BililiveRecorder.Core.Config.DanmakuTransportMode DanmakuTransport { get; set; }
|
public BililiveRecorder.Core.Config.DanmakuTransportMode DanmakuTransport { get; set; }
|
||||||
public string? FileNameRecordTemplate { get; set; }
|
public string? FileNameRecordTemplate { get; set; }
|
||||||
public bool FlvProcessorSplitOnScriptTag { get; set; }
|
public bool FlvProcessorSplitOnScriptTag { get; set; }
|
||||||
|
@ -120,6 +122,7 @@ namespace BililiveRecorder.Core.Config.V3
|
||||||
public bool HasCookie { get; set; }
|
public bool HasCookie { get; set; }
|
||||||
public bool HasCuttingMode { get; set; }
|
public bool HasCuttingMode { get; set; }
|
||||||
public bool HasCuttingNumber { get; set; }
|
public bool HasCuttingNumber { get; set; }
|
||||||
|
public bool HasDanmakuAuthenticateWithStreamerUid { get; set; }
|
||||||
public bool HasDanmakuTransport { get; set; }
|
public bool HasDanmakuTransport { get; set; }
|
||||||
public bool HasFileNameRecordTemplate { get; set; }
|
public bool HasFileNameRecordTemplate { get; set; }
|
||||||
public bool HasFlvProcessorSplitOnScriptTag { get; set; }
|
public bool HasFlvProcessorSplitOnScriptTag { get; set; }
|
||||||
|
@ -157,6 +160,8 @@ namespace BililiveRecorder.Core.Config.V3
|
||||||
public HierarchicalPropertyDefault.Optional<BililiveRecorder.Core.Config.CuttingMode> OptionalCuttingMode { get; set; }
|
public HierarchicalPropertyDefault.Optional<BililiveRecorder.Core.Config.CuttingMode> OptionalCuttingMode { get; set; }
|
||||||
[Newtonsoft.Json.JsonProperty("CuttingNumber")]
|
[Newtonsoft.Json.JsonProperty("CuttingNumber")]
|
||||||
public HierarchicalPropertyDefault.Optional<uint> OptionalCuttingNumber { get; set; }
|
public HierarchicalPropertyDefault.Optional<uint> OptionalCuttingNumber { get; set; }
|
||||||
|
[Newtonsoft.Json.JsonProperty("DanmakuAuthenticateWithStreamerUid")]
|
||||||
|
public HierarchicalPropertyDefault.Optional<bool> OptionalDanmakuAuthenticateWithStreamerUid { get; set; }
|
||||||
[Newtonsoft.Json.JsonProperty("DanmakuTransport")]
|
[Newtonsoft.Json.JsonProperty("DanmakuTransport")]
|
||||||
public HierarchicalPropertyDefault.Optional<BililiveRecorder.Core.Config.DanmakuTransportMode> OptionalDanmakuTransport { get; set; }
|
public HierarchicalPropertyDefault.Optional<BililiveRecorder.Core.Config.DanmakuTransportMode> OptionalDanmakuTransport { get; set; }
|
||||||
[Newtonsoft.Json.JsonProperty("FileNameRecordTemplate")]
|
[Newtonsoft.Json.JsonProperty("FileNameRecordTemplate")]
|
||||||
|
@ -249,6 +254,7 @@ namespace BililiveRecorder.Core.Config.V3
|
||||||
public string? Cookie { get; }
|
public string? Cookie { get; }
|
||||||
public BililiveRecorder.Core.Config.CuttingMode CuttingMode { get; set; }
|
public BililiveRecorder.Core.Config.CuttingMode CuttingMode { get; set; }
|
||||||
public uint CuttingNumber { get; set; }
|
public uint CuttingNumber { get; set; }
|
||||||
|
public bool DanmakuAuthenticateWithStreamerUid { get; }
|
||||||
public BililiveRecorder.Core.Config.DanmakuTransportMode DanmakuTransport { get; }
|
public BililiveRecorder.Core.Config.DanmakuTransportMode DanmakuTransport { get; }
|
||||||
public string? FileNameRecordTemplate { get; }
|
public string? FileNameRecordTemplate { get; }
|
||||||
public bool FlvProcessorSplitOnScriptTag { get; set; }
|
public bool FlvProcessorSplitOnScriptTag { get; set; }
|
||||||
|
@ -446,6 +452,7 @@ namespace BililiveRecorder.Core
|
||||||
BililiveRecorder.Core.RoomStats Stats { get; }
|
BililiveRecorder.Core.RoomStats Stats { get; }
|
||||||
bool Streaming { get; }
|
bool Streaming { get; }
|
||||||
string Title { get; }
|
string Title { get; }
|
||||||
|
long Uid { get; }
|
||||||
event System.EventHandler<BililiveRecorder.Core.Event.IOStatsEventArgs>? IOStats;
|
event System.EventHandler<BililiveRecorder.Core.Event.IOStatsEventArgs>? IOStats;
|
||||||
event System.EventHandler<BililiveRecorder.Core.Event.RecordFileClosedEventArgs>? RecordFileClosed;
|
event System.EventHandler<BililiveRecorder.Core.Event.RecordFileClosedEventArgs>? RecordFileClosed;
|
||||||
event System.EventHandler<BililiveRecorder.Core.Event.RecordFileOpeningEventArgs>? RecordFileOpening;
|
event System.EventHandler<BililiveRecorder.Core.Event.RecordFileOpeningEventArgs>? RecordFileOpening;
|
||||||
|
@ -541,6 +548,7 @@ namespace BililiveRecorder.Core.Templating
|
||||||
public int RoomId { get; set; }
|
public int RoomId { get; set; }
|
||||||
public int ShortId { get; set; }
|
public int ShortId { get; set; }
|
||||||
public string Title { get; set; }
|
public string Title { get; set; }
|
||||||
|
public long Uid { get; set; }
|
||||||
}
|
}
|
||||||
public readonly struct FileNameTemplateOutput
|
public readonly struct FileNameTemplateOutput
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user