jellyfin/MediaBrowser.Dlna/PlayTo/PlaylistItem.cs

41 lines
994 B
C#
Raw Normal View History

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; }
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 List<TranscodingSetting> TranscodingSettings { get; set; }
public int? AudioStreamIndex { get; set; }
public int? SubtitleStreamIndex { get; set; }
public PlaylistItem()
{
TranscodingSettings = new List<TranscodingSetting>();
}
2014-02-26 21:31:47 +00:00
}
2014-03-14 14:27:32 +00:00
}