PlaylistItem.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 int? MaxAudioChannels { get; set; }
  22. public int? AudioBitrate { get; set; }
  23. public int? VideoBitrate { get; set; }
  24. public int? VideoLevel { get; set; }
  25. public int? MaxWidth { get; set; }
  26. public int? MaxHeight { get; set; }
  27. public int? MaxFramerate { get; set; }
  28. public string DeviceProfileId { get; set; }
  29. public PlaylistItem()
  30. {
  31. TranscodingSettings = new List<TranscodingSetting>();
  32. }
  33. }
  34. }