修复up主视频下载,不下载图文视频的bug

增加图文视频下载配置(是否合成视频,是否单独下载图片,单独下载音频)
This commit is contained in:
jianzhichu
2025-11-24 22:47:06 +08:00
parent 609649057f
commit 2db61f4958
12 changed files with 380 additions and 92 deletions
+10
View File
@@ -33,6 +33,15 @@ namespace dy.net.model
/// 是否下载图片视频
/// </summary>
public bool DownImageVideo { get; set; }
/// <summary>
/// 图文视频 是否额外下载图片
/// </summary>
public bool DownImage { get; set; }
/// <summary>
/// 图文视频 是否额外下载mp3
/// </summary>
public bool DownMp3 { get; set; }
/// <summary>
/// 日志保留天数,防止容器日志太多,默认10天
/// </summary>
@@ -40,6 +49,7 @@ namespace dy.net.model
[SugarColumn(IsIgnore=true)]
public bool DownImageVideoFromEnv { get; set; }
}
}