2、图文视频 以及动态视频,遇到因版权原因无法下载音频时,需要额外的音频文件,现在放到mp3目录了,docker-compose增加一个映射路径即可 例如: - /vol2/1000/media/dysync/mp3:/app/mp3 3、增加动态视频合成配置(不建议保留原视频,没有额外刮削的,因为有些视频是几十个很短的动图一样的视频拼接成的,保留原视频emby会出现一堆没有封面的视频) 4、容器重启后,手机端会连续跳转登录页很多次的bug修复 5、关注博主保存文件夹路径长度增加,允许_ 6、批量永久删除选中的视频(不再下载,慎重) 7、看板页面 隐藏一个功能:双击作者头像,可以删除作者所有视频(永久删除,不再下载,慎重) 8、手机端 视频播放优化
49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
namespace dy.net.dto
|
|
{
|
|
public class VideoStaticsItemDto
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public long Count { get; set; }
|
|
|
|
public string Color { get; set; }
|
|
|
|
public string Icon { get; set; }
|
|
|
|
public string UperId { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class VideoStaticsDto
|
|
{
|
|
|
|
public long VideoCount { get; set; }
|
|
|
|
public long AuthorCount { get; set; }
|
|
|
|
public long CategoryCount { get; set; }
|
|
|
|
public string VideoSizeTotal { get; set; }
|
|
|
|
public string VideoCollectSize { get; set; }
|
|
public string VideoFollowSize { get; set; }
|
|
public string VideoFavoriteSize { get; set; }
|
|
|
|
public long CollectCount { get; set; }
|
|
public long FavoriteCount { get; set; }
|
|
|
|
public long FollowCount { get; set; }
|
|
|
|
|
|
public long GraphicVideoCount { get; set; }
|
|
public string GraphicVideoSize { get; set; }
|
|
|
|
|
|
public string TotalDiskSize { get; set; }
|
|
public List<VideoStaticsItemDto> Authors { get; set; } = new List<VideoStaticsItemDto>();
|
|
public List<VideoStaticsItemDto> Categories { get; set; } = new List<VideoStaticsItemDto>();
|
|
}
|
|
}
|