Stream custom live channels using your own media
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
921 B

namespace ErsatzTV.Infrastructure.Emby.Models;
public class EmbyMediaStreamResponse
{
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 string Profile { get; set; }
public string AspectRatio { get; set; }
public int? Channels { get; set; }
public bool? IsAnamorphic { get; set; }
public string DisplayTitle { get; set; }
public string PixelFormat { get; set; }
public string ColorRange { get; set; }
public string ColorSpace { get; set; }
public string ColorTransfer { get; set; }
public string ColorPrimaries { get; set; }
public double? RealFrameRate { get; set; }
}