2014-04-01 15:23:07 -07:00
|
|
|
|
using MediaBrowser.Model.Dlna;
|
2014-02-26 19:44:00 -07:00
|
|
|
|
|
2014-02-26 14:31:47 -07:00
|
|
|
|
namespace MediaBrowser.Dlna.PlayTo
|
|
|
|
|
{
|
|
|
|
|
public class PlaylistItem
|
|
|
|
|
{
|
|
|
|
|
public string ItemId { get; set; }
|
|
|
|
|
|
2014-03-22 11:25:03 -07:00
|
|
|
|
public string MediaSourceId { get; set; }
|
|
|
|
|
|
2014-02-26 14:31:47 -07:00
|
|
|
|
public bool Transcode { get; set; }
|
|
|
|
|
|
2014-03-22 11:25:03 -07:00
|
|
|
|
public DlnaProfileType MediaType { get; set; }
|
2014-02-26 14:31:47 -07:00
|
|
|
|
|
2014-03-22 12:37:15 -07:00
|
|
|
|
public string Container { get; set; }
|
2014-02-26 14:31:47 -07:00
|
|
|
|
|
|
|
|
|
public int PlayState { get; set; }
|
|
|
|
|
|
|
|
|
|
public string StreamUrl { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Didl { get; set; }
|
|
|
|
|
|
|
|
|
|
public long StartPositionTicks { get; set; }
|
2014-03-22 22:10:33 -07:00
|
|
|
|
|
|
|
|
|
public string VideoCodec { get; set; }
|
|
|
|
|
|
|
|
|
|
public string AudioCodec { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? AudioStreamIndex { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? SubtitleStreamIndex { get; set; }
|
2014-03-23 09:42:02 -07:00
|
|
|
|
|
2014-03-24 10:54:45 -07: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 08:06:48 -07:00
|
|
|
|
public string DeviceProfileId { get; set; }
|
2014-02-26 14:31:47 -07:00
|
|
|
|
}
|
2014-03-14 07:27:32 -07:00
|
|
|
|
}
|