jellyfin-server/MediaBrowser.Dlna/PlayTo/PlaylistItem.cs

48 lines
1.1 KiB
C#
Raw Normal View History

2014-04-01 22:23:07 +00:00
using MediaBrowser.Model.Dlna;
2014-02-27 02:44:00 +00:00
2014-02-26 21:31:47 +00:00
namespace MediaBrowser.Dlna.PlayTo
{
public class PlaylistItem
{
public string ItemId { get; set; }
public string MediaSourceId { get; set; }
2014-02-26 21:31:47 +00:00
public bool Transcode { get; set; }
public DlnaProfileType MediaType { get; set; }
2014-02-26 21:31:47 +00:00
2014-03-22 19:37:15 +00:00
public string Container { get; set; }
2014-02-26 21:31:47 +00:00
public int PlayState { get; set; }
public string StreamUrl { get; set; }
public string Didl { get; set; }
public long StartPositionTicks { get; set; }
2014-03-23 05:10:33 +00:00
public string VideoCodec { get; set; }
public string AudioCodec { get; set; }
public int? AudioStreamIndex { get; set; }
public int? SubtitleStreamIndex { get; set; }
2014-03-23 16:42:02 +00:00
2014-03-24 17:54:45 +00:00
public int? MaxAudioChannels { get; set; }
public int? AudioBitrate { get; set; }
public int? VideoBitrate { get; set; }
public int? VideoLevel { get; set; }
public int? MaxWidth { get; set; }
public int? MaxHeight { get; set; }
public int? MaxFramerate { get; set; }
2014-03-26 15:06:48 +00:00
public string DeviceProfileId { get; set; }
2014-02-26 21:31:47 +00:00
}
2014-03-14 14:27:32 +00:00
}