jellyfin/MediaBrowser.Model/MediaInfo/LiveStreamRequest.cs

61 lines
1.6 KiB
C#
Raw Normal View History

#nullable disable
2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Dlna;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.MediaInfo
{
public class LiveStreamRequest
{
public LiveStreamRequest()
{
EnableDirectPlay = true;
EnableDirectStream = true;
DirectPlayProtocols = new MediaProtocol[] { MediaProtocol.Http };
}
2018-12-27 18:27:57 -05:00
public LiveStreamRequest(AudioOptions options)
{
MaxStreamingBitrate = options.MaxBitrate;
ItemId = options.ItemId;
DeviceProfile = options.Profile;
MaxAudioChannels = options.MaxAudioChannels;
DirectPlayProtocols = new MediaProtocol[] { MediaProtocol.Http };
if (options is VideoOptions videoOptions)
2018-12-27 18:27:57 -05:00
{
AudioStreamIndex = videoOptions.AudioStreamIndex;
SubtitleStreamIndex = videoOptions.SubtitleStreamIndex;
}
}
2020-04-09 13:22:29 -04:00
public string OpenToken { get; set; }
2020-06-15 17:43:52 -04:00
2020-04-09 13:22:29 -04:00
public Guid UserId { get; set; }
2020-06-15 17:43:52 -04:00
2020-04-09 13:22:29 -04:00
public string PlaySessionId { get; set; }
2020-06-15 17:43:52 -04:00
public int? MaxStreamingBitrate { get; set; }
2020-06-15 17:43:52 -04:00
2020-04-09 13:22:29 -04:00
public long? StartTimeTicks { get; set; }
2020-06-15 17:43:52 -04:00
2020-04-09 13:22:29 -04:00
public int? AudioStreamIndex { get; set; }
2020-06-15 17:43:52 -04:00
2020-04-09 13:22:29 -04:00
public int? SubtitleStreamIndex { get; set; }
2020-06-15 17:43:52 -04:00
2020-04-09 13:22:29 -04:00
public int? MaxAudioChannels { get; set; }
2020-06-15 17:43:52 -04:00
2020-04-09 13:22:29 -04:00
public Guid ItemId { get; set; }
2020-06-15 17:43:52 -04:00
2020-04-09 13:22:29 -04:00
public DeviceProfile DeviceProfile { get; set; }
public bool EnableDirectPlay { get; set; }
2020-06-15 17:43:52 -04:00
2020-04-09 13:22:29 -04:00
public bool EnableDirectStream { get; set; }
2020-06-15 17:43:52 -04:00
2020-04-09 13:22:29 -04:00
public MediaProtocol[] DirectPlayProtocols { get; set; }
2018-12-27 18:27:57 -05:00
}
}