mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
596 B
18 lines
596 B
using System; |
|
using ErsatzTV.Core.Interfaces.FFmpeg; |
|
|
|
namespace ErsatzTV.Core.Domain |
|
{ |
|
public record MediaItemStatistics : IDisplaySize |
|
{ |
|
public DateTime? LastWriteTime { get; set; } |
|
public TimeSpan Duration { get; set; } |
|
public string SampleAspectRatio { get; set; } |
|
public string DisplayAspectRatio { get; set; } |
|
public string VideoCodec { get; set; } |
|
public string AudioCodec { get; set; } |
|
public VideoScanKind VideoScanType { get; set; } |
|
public int Width { get; set; } |
|
public int Height { get; set; } |
|
} |
|
}
|
|
|