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.
26 lines
963 B
26 lines
963 B
namespace ErsatzTV.Infrastructure.Jellyfin.Models; |
|
|
|
public class JellyfinMediaStreamResponse |
|
{ |
|
public string Type { get; set; } |
|
public string Codec { get; set; } |
|
public string Language { get; set; } |
|
public bool? IsInterlaced { get; set; } |
|
public int? Height { get; set; } |
|
public int? Width { get; set; } |
|
public int Index { get; set; } |
|
public bool IsDefault { get; set; } |
|
public bool IsForced { get; set; } |
|
public bool IsExternal { get; set; } |
|
public string Profile { get; set; } |
|
public string AspectRatio { get; set; } |
|
public int? Channels { get; set; } |
|
public double? RealFrameRate { get; set; } |
|
public string PixelFormat { get; set; } |
|
public string Title { get; set; } |
|
public string ColorRange { get; set; } |
|
public string ColorSpace { get; set; } |
|
public string ColorTransfer { get; set; } |
|
public string ColorPrimaries { get; set; } |
|
public bool? IsAnamorphic { get; set; } |
|
}
|
|
|