BililiveRecorder/BililiveRecorder.Core/Config/ConfigV1.cs

191 lines
7.6 KiB
C#
Raw Normal View History

2018-11-01 23:40:50 +08:00
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
2020-11-27 18:51:02 +08:00
using BililiveRecorder.FlvProcessor;
using Newtonsoft.Json;
using NLog;
2018-11-01 23:40:50 +08:00
namespace BililiveRecorder.Core.Config
{
[JsonObject(memberSerialization: MemberSerialization.OptIn)]
public class ConfigV1 : INotifyPropertyChanged
{
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
/// <summary>
/// 当前工作目录
/// </summary>
[JsonIgnore]
[Utils.DoNotCopyProperty]
2018-12-11 00:57:40 +08:00
public string WorkDirectory { get => _workDirectory; set => SetField(ref _workDirectory, value); }
2018-11-01 23:40:50 +08:00
/// <summary>
/// 房间号列表
/// </summary>
[JsonProperty("roomlist")]
public List<RoomV1> RoomList { get; set; } = new List<RoomV1>();
/// <summary>
/// 启用的功能
/// </summary>
[JsonProperty("feature")]
public EnabledFeature EnabledFeature { get => _enabledFeature; set => SetField(ref _enabledFeature, value); }
/// <summary>
/// 剪辑-过去的时长(秒)
/// </summary>
[JsonProperty("clip_length_future")]
public uint ClipLengthFuture { get => _clipLengthFuture; set => SetField(ref _clipLengthFuture, value); }
/// <summary>
/// 剪辑-将来的时长(秒)
/// </summary>
[JsonProperty("clip_length_past")]
public uint ClipLengthPast { get => _clipLengthPast; set => SetField(ref _clipLengthPast, value); }
2018-11-07 06:07:49 +08:00
/// <summary>
/// 自动切割模式
/// </summary>
[JsonProperty("cutting_mode")]
public AutoCuttingMode CuttingMode { get => _cuttingMode; set => SetField(ref _cuttingMode, value); }
/// <summary>
/// 自动切割数值(分钟/MiB
/// </summary>
[JsonProperty("cutting_number")]
public uint CuttingNumber { get => _cuttingNumber; set => SetField(ref _cuttingNumber, value); }
2018-12-18 00:16:24 +08:00
/// <summary>
/// 录制断开重连时间间隔 毫秒
/// </summary>
[JsonProperty("timing_stream_retry")]
public uint TimingStreamRetry { get => _timingStreamRetry; set => SetField(ref _timingStreamRetry, value); }
/// <summary>
/// 连接直播服务器超时时间 毫秒
/// </summary>
[JsonProperty("timing_stream_connect")]
public uint TimingStreamConnect { get => _timingStreamConnect; set => SetField(ref _timingStreamConnect, value); }
/// <summary>
/// 弹幕服务器重连时间间隔 毫秒
/// </summary>
[JsonProperty("timing_danmaku_retry")]
public uint TimingDanmakuRetry { get => _timingDanmakuRetry; set => SetField(ref _timingDanmakuRetry, value); }
/// <summary>
/// HTTP API 检查时间间隔 秒
/// </summary>
[JsonProperty("timing_check_interval")]
public uint TimingCheckInterval { get => _timingCheckInterval; set => SetField(ref _timingCheckInterval, value); }
2018-12-19 21:24:39 +08:00
/// <summary>
/// 最大未收到新直播数据时间 毫秒
/// </summary>
[JsonProperty("timing_watchdog_timeout")]
public uint TimingWatchdogTimeout { get => _timingWatchdogTimeout; set => SetField(ref _timingWatchdogTimeout, value); }
2019-10-31 22:02:19 +08:00
/// <summary>
/// 请求 API 时使用的 Cookie
/// </summary>
[JsonProperty("cookie")]
public string Cookie { get => _cookie; set => SetField(ref _cookie, value); }
2020-11-23 17:35:42 +08:00
/// <summary>
/// 是否同时录制弹幕
/// </summary>
[JsonProperty("record_danmaku")]
public bool RecordDanmaku { get => _recordDanmaku; set => SetField(ref _recordDanmaku, value); }
2020-11-27 18:51:02 +08:00
/// <summary>
/// 是否记录弹幕原始数据
/// </summary>
[JsonProperty("record_danmaku_raw")]
public bool RecordDanmakuRaw { get => _recordDanmakuRaw; set => SetField(ref _recordDanmakuRaw, value); }
2020-11-24 20:15:21 +08:00
/// <summary>
/// 是否同时录制 SuperChat
/// </summary>
[JsonProperty("record_danmaku_sc")]
public bool RecordDanmakuSuperChat { get => _recordDanmakuSuperChat; set => SetField(ref _recordDanmakuSuperChat, value); }
/// <summary>
/// 是否同时录制 礼物
/// </summary>
[JsonProperty("record_danmaku_gift")]
public bool RecordDanmakuGift { get => _recordDanmakuGift; set => SetField(ref _recordDanmakuGift, value); }
/// <summary>
/// 是否同时录制 上船
/// </summary>
[JsonProperty("record_danmaku_guard")]
public bool RecordDanmakuGuard { get => _recordDanmakuGuard; set => SetField(ref _recordDanmakuGuard, value); }
2020-12-17 19:32:48 +08:00
/// <summary>
/// 触发 <see cref="System.Xml.XmlWriter.Flush"/> 的弹幕个数
/// </summary>
[JsonProperty("record_danmaku_flush_interval")]
public uint RecordDanmakuFlushInterval { get => _recordDanmakuFlushInterval; set => SetField(ref _recordDanmakuFlushInterval, value); }
2020-06-21 19:39:07 +08:00
/// <summary>
/// 替换api.live.bilibili.com服务器为其他反代可以支持在云服务器上录制
/// </summary>
[JsonProperty("live_api_host")]
public string LiveApiHost { get => _liveApiHost; set => SetField(ref _liveApiHost, value); }
[JsonProperty("record_filename_format")]
public string RecordFilenameFormat
{
get => _record_filename_format;
set => SetField(ref _record_filename_format, value);
}
[JsonProperty("clip_filename_format")]
public string ClipFilenameFormat
{
get => _clip_filename_format;
set => SetField(ref _clip_filename_format, value);
}
2018-11-01 23:40:50 +08:00
#region INotifyPropertyChanged
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
protected bool SetField<T>(ref T field, T value, [CallerMemberName] string propertyName = "")
{
if (EqualityComparer<T>.Default.Equals(field, value)) { return false; }
2020-11-24 20:27:29 +08:00
logger.Trace("设置 [{0}] 的值已从 [{1}] 修改到 [{2}]", propertyName, field, value);
2018-11-01 23:40:50 +08:00
field = value; OnPropertyChanged(propertyName); return true;
}
#endregion
2020-11-27 18:51:02 +08:00
private string _workDirectory;
2018-11-01 23:40:50 +08:00
private uint _clipLengthPast = 20;
private uint _clipLengthFuture = 10;
2018-11-07 06:07:49 +08:00
private uint _cuttingNumber = 10;
2020-11-23 17:35:42 +08:00
private EnabledFeature _enabledFeature = EnabledFeature.RecordOnly;
2018-11-07 06:07:49 +08:00
private AutoCuttingMode _cuttingMode = AutoCuttingMode.Disabled;
2018-12-18 00:16:24 +08:00
2019-10-31 22:05:16 +08:00
private uint _timingWatchdogTimeout = 10 * 1000;
2018-12-18 00:16:24 +08:00
private uint _timingStreamRetry = 6 * 1000;
2020-05-01 07:38:38 +08:00
private uint _timingStreamConnect = 5 * 1000;
private uint _timingDanmakuRetry = 15 * 1000;
2018-12-18 00:16:24 +08:00
private uint _timingCheckInterval = 5 * 60;
2019-10-31 22:02:19 +08:00
private string _cookie = string.Empty;
2020-05-01 08:37:56 +08:00
private string _record_filename_format = @"{roomid}-{name}/录制-{roomid}-{date}-{time}-{title}.flv";
private string _clip_filename_format = @"{roomid}-{name}/剪辑片段-{roomid}-{date}-{time}-{title}.flv";
2020-11-23 17:35:42 +08:00
private bool _recordDanmaku = false;
2020-11-27 18:51:02 +08:00
private bool _recordDanmakuRaw = false;
2020-11-24 20:15:21 +08:00
private bool _recordDanmakuSuperChat = false;
private bool _recordDanmakuGift = false;
private bool _recordDanmakuGuard = false;
2020-12-17 19:32:48 +08:00
private uint _recordDanmakuFlushInterval = 20;
2020-11-24 20:15:21 +08:00
2020-06-21 19:39:07 +08:00
private string _liveApiHost = "https://api.live.bilibili.com";
2018-11-01 23:40:50 +08:00
}
}