jellyfin-server/MediaBrowser.Model/MediaInfo/PlaybackInfoRequest.cs

46 lines
1.3 KiB
C#
Raw Normal View History

using MediaBrowser.Model.Dlna;
namespace MediaBrowser.Model.MediaInfo
{
public class PlaybackInfoRequest
{
2015-03-31 18:50:08 +00:00
public string Id { get; set; }
public string UserId { get; set; }
2017-01-03 05:15:59 +00:00
public long? MaxStreamingBitrate { get; set; }
2015-03-31 18:50:08 +00:00
public long? StartTimeTicks { get; set; }
public int? AudioStreamIndex { get; set; }
public int? SubtitleStreamIndex { get; set; }
2016-10-20 18:02:42 +00:00
public int? MaxAudioChannels { get; set; }
2015-03-31 18:50:08 +00:00
public string MediaSourceId { get; set; }
public string LiveStreamId { get; set; }
public DeviceProfile DeviceProfile { get; set; }
2017-02-20 07:04:03 +00:00
public bool EnableDirectPlay { get; set; }
public bool EnableDirectStream { get; set; }
public bool EnableTranscoding { get; set; }
public bool AllowVideoStreamCopy { get; set; }
public bool AllowAudioStreamCopy { get; set; }
2017-06-03 07:36:32 +00:00
public bool AutoOpenLiveStream { get; set; }
2017-07-02 18:58:56 +00:00
public bool AllowMediaProbe { get; set; }
2017-02-20 07:04:03 +00:00
public PlaybackInfoRequest()
{
EnableDirectPlay = true;
EnableDirectStream = true;
EnableTranscoding = true;
AllowVideoStreamCopy = true;
AllowAudioStreamCopy = true;
2017-07-02 18:58:56 +00:00
AllowMediaProbe = true;
2017-02-20 07:04:03 +00:00
}
}
}