jellyfin/MediaBrowser.Model/MediaInfo/PlaybackInfoRequest.cs

59 lines
1.5 KiB
C#
Raw Normal View History

#nullable disable
2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Dlna;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.MediaInfo
{
public class PlaybackInfoRequest
{
public Guid Id { get; set; }
public Guid UserId { get; set; }
public long? MaxStreamingBitrate { get; set; }
public long? StartTimeTicks { get; set; }
public int? AudioStreamIndex { get; set; }
public int? SubtitleStreamIndex { get; set; }
public int? MaxAudioChannels { get; set; }
public string MediaSourceId { get; set; }
public string LiveStreamId { get; set; }
public DeviceProfile DeviceProfile { get; set; }
public bool EnableDirectPlay { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public bool EnableDirectStream { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public bool EnableTranscoding { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public bool AllowVideoStreamCopy { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public bool AllowAudioStreamCopy { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public bool IsPlayback { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public bool AutoOpenLiveStream { get; set; }
public MediaProtocol[] DirectPlayProtocols { get; set; }
public PlaybackInfoRequest()
{
EnableDirectPlay = true;
EnableDirectStream = true;
EnableTranscoding = true;
AllowVideoStreamCopy = true;
AllowAudioStreamCopy = true;
IsPlayback = true;
DirectPlayProtocols = new MediaProtocol[] { MediaProtocol.Http };
}
}
}