jellyfin/MediaBrowser.Dlna/PlayTo/PlaylistItem.cs

43 lines
1.0 KiB
C#
Raw Normal View History

2014-03-13 12:08:02 -07:00
using MediaBrowser.Controller.Dlna;
2014-03-22 22:10:33 -07:00
using System.Collections.Generic;
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; }
public string MediaSourceId { get; set; }
2014-02-26 14:31:47 -07:00
public bool Transcode { get; set; }
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 List<TranscodingSetting> TranscodingSettings { get; set; }
public int? AudioStreamIndex { get; set; }
public int? SubtitleStreamIndex { get; set; }
2014-03-23 09:42:02 -07:00
public string DeviceProfileName { get; set; }
2014-03-22 22:10:33 -07:00
public PlaylistItem()
{
TranscodingSettings = new List<TranscodingSetting>();
}
2014-02-26 14:31:47 -07:00
}
2014-03-14 07:27:32 -07:00
}