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.
25 lines
911 B
25 lines
911 B
using System; |
|
using ErsatzTV.Core.Interfaces.FFmpeg; |
|
|
|
namespace ErsatzTV.Core.Domain |
|
{ |
|
public record MediaMetadata : IDisplaySize |
|
{ |
|
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 MediaType MediaType { get; set; } |
|
public string Title { get; set; } |
|
public string Subtitle { get; set; } |
|
public string Description { get; set; } |
|
public int? SeasonNumber { get; set; } |
|
public int? EpisodeNumber { get; set; } |
|
public string ContentRating { get; set; } |
|
public DateTime? Aired { get; set; } |
|
public VideoScanType VideoScanType { get; set; } |
|
public int Width { get; set; } |
|
public int Height { get; set; } |
|
} |
|
}
|
|
|