1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using MediaBrowser.Controller.Dlna;
- using System.Collections.Generic;
- namespace MediaBrowser.Dlna.PlayTo
- {
- public class PlaylistItem
- {
- public string ItemId { get; set; }
- public string MediaSourceId { get; set; }
-
- public bool Transcode { get; set; }
- public DlnaProfileType MediaType { get; set; }
- public string Container { get; set; }
- public int PlayState { get; set; }
- public string StreamUrl { get; set; }
- public string Didl { get; set; }
- public long StartPositionTicks { get; set; }
- 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 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; }
- public string DeviceProfileId { get; set; }
- public PlaylistItem()
- {
- TranscodingSettings = new List<TranscodingSetting>();
- }
- }
- }
|