PlaylistItem.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using MediaBrowser.Controller.Dlna;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Dlna.PlayTo
  4. {
  5. public class PlaylistItem
  6. {
  7. public string ItemId { get; set; }
  8. public string MediaSourceId { get; set; }
  9. public bool Transcode { get; set; }
  10. public DlnaProfileType MediaType { get; set; }
  11. public string Container { get; set; }
  12. public int PlayState { get; set; }
  13. public string StreamUrl { get; set; }
  14. public string Didl { get; set; }
  15. public long StartPositionTicks { get; set; }
  16. public string VideoCodec { get; set; }
  17. public string AudioCodec { get; set; }
  18. public List<TranscodingSetting> TranscodingSettings { get; set; }
  19. public int? AudioStreamIndex { get; set; }
  20. public int? SubtitleStreamIndex { get; set; }
  21. public string DeviceProfileName { get; set; }
  22. public PlaylistItem()
  23. {
  24. TranscodingSettings = new List<TranscodingSetting>();
  25. }
  26. }
  27. }