jellyfin/MediaBrowser.Model/MediaInfo/LiveStreamRequest.cs

62 lines
1.6 KiB
C#
Raw Normal View History

#nullable disable
2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using MediaBrowser.Model.Dlna;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.MediaInfo
{
public class LiveStreamRequest
{
public LiveStreamRequest()
{
EnableDirectPlay = true;
EnableDirectStream = true;
DirectPlayProtocols = new MediaProtocol[] { MediaProtocol.Http };
}
2018-12-28 00:27:57 +01: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-28 00:27:57 +01:00
{
AudioStreamIndex = videoOptions.AudioStreamIndex;
SubtitleStreamIndex = videoOptions.SubtitleStreamIndex;
}
}
2020-04-09 19:22:29 +02:00
public string OpenToken { get; set; }
2020-06-15 23:43:52 +02:00
2020-04-09 19:22:29 +02:00
public Guid UserId { get; set; }
2020-06-15 23:43:52 +02:00
2020-04-09 19:22:29 +02:00
public string PlaySessionId { get; set; }
2020-06-15 23:43:52 +02:00
public int? MaxStreamingBitrate { get; set; }
2020-06-15 23:43:52 +02:00
2020-04-09 19:22:29 +02:00
public long? StartTimeTicks { get; set; }
2020-06-15 23:43:52 +02:00
2020-04-09 19:22:29 +02:00
public int? AudioStreamIndex { get; set; }
2020-06-15 23:43:52 +02:00
2020-04-09 19:22:29 +02:00
public int? SubtitleStreamIndex { get; set; }
2020-06-15 23:43:52 +02:00
2020-04-09 19:22:29 +02:00
public int? MaxAudioChannels { get; set; }
2020-06-15 23:43:52 +02:00
2020-04-09 19:22:29 +02:00
public Guid ItemId { get; set; }
2020-06-15 23:43:52 +02:00
2020-04-09 19:22:29 +02:00
public DeviceProfile DeviceProfile { get; set; }
public bool EnableDirectPlay { get; set; }
2020-06-15 23:43:52 +02:00
2020-04-09 19:22:29 +02:00
public bool EnableDirectStream { get; set; }
2020-06-15 23:43:52 +02:00
public IReadOnlyList<MediaProtocol> DirectPlayProtocols { get; set; }
2018-12-28 00:27:57 +01:00
}
}