2014-03-13 19:08:02 +00:00
|
|
|
|
using MediaBrowser.Controller.Dlna;
|
2014-03-23 05:10:33 +00:00
|
|
|
|
using System.Collections.Generic;
|
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; }
|
|
|
|
|
|
2014-03-22 18:25:03 +00:00
|
|
|
|
public string MediaSourceId { get; set; }
|
|
|
|
|
|
2014-02-26 21:31:47 +00:00
|
|
|
|
public bool Transcode { get; set; }
|
|
|
|
|
|
2014-03-22 18:25:03 +00:00
|
|
|
|
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 List<TranscodingSetting> TranscodingSettings { 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-03-23 05:10:33 +00:00
|
|
|
|
public PlaylistItem()
|
|
|
|
|
{
|
|
|
|
|
TranscodingSettings = new List<TranscodingSetting>();
|
|
|
|
|
}
|
2014-02-26 21:31:47 +00:00
|
|
|
|
}
|
2014-03-14 14:27:32 +00:00
|
|
|
|
}
|