jellyfin/MediaBrowser.Model/Dlna/MediaOptions.cs

141 lines
4.3 KiB
C#
Raw Normal View History

using System;
using MediaBrowser.Model.Dto;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Dlna
{
/// <summary>
2022-03-26 07:11:00 -04:00
/// Class MediaOptions.
2018-12-27 18:27:57 -05:00
/// </summary>
2022-03-26 07:11:00 -04:00
public class MediaOptions
2018-12-27 18:27:57 -05:00
{
2022-12-04 06:31:05 -05:00
/// <summary>
2022-12-07 12:06:04 -05:00
/// Initializes a new instance of the <see cref="MediaOptions"/> class.
2022-12-04 06:31:05 -05:00
/// </summary>
2022-03-26 07:11:00 -04:00
public MediaOptions()
2018-12-27 18:27:57 -05:00
{
Context = EncodingContext.Streaming;
EnableDirectPlay = true;
EnableDirectStream = true;
}
2022-12-04 06:31:05 -05:00
/// <summary>
2022-12-07 12:06:04 -05:00
/// Gets or sets a value indicating whether direct playback is allowed.
2022-12-04 06:31:05 -05:00
/// </summary>
2018-12-27 18:27:57 -05:00
public bool EnableDirectPlay { get; set; }
2022-12-04 06:31:05 -05:00
/// <summary>
2022-12-07 12:06:04 -05:00
/// Gets or sets a value indicating whether direct streaming is allowed.
2022-12-04 06:31:05 -05:00
/// </summary>
2018-12-27 18:27:57 -05:00
public bool EnableDirectStream { get; set; }
2022-12-04 06:31:05 -05:00
/// <summary>
2022-12-07 12:06:04 -05:00
/// Gets or sets a value indicating whether direct playback is forced.
2022-12-04 06:31:05 -05:00
/// </summary>
2018-12-27 18:27:57 -05:00
public bool ForceDirectPlay { get; set; }
2022-12-04 06:31:05 -05:00
/// <summary>
2022-12-07 12:06:04 -05:00
/// Gets or sets a value indicating whether direct streaming is forced.
2022-12-04 06:31:05 -05:00
/// </summary>
2018-12-27 18:27:57 -05:00
public bool ForceDirectStream { get; set; }
2022-03-26 07:11:00 -04:00
/// <summary>
2022-12-07 12:06:04 -05:00
/// Gets or sets a value indicating whether audio stream copy is allowed.
2022-03-26 07:11:00 -04:00
/// </summary>
public bool AllowAudioStreamCopy { get; set; }
2022-03-26 07:11:00 -04:00
/// <summary>
2022-12-07 12:06:04 -05:00
/// Gets or sets a value indicating whether video stream copy is allowed.
2022-03-26 07:11:00 -04:00
/// </summary>
public bool AllowVideoStreamCopy { get; set; }
2022-12-04 06:31:05 -05:00
/// <summary>
/// Gets or sets the item id.
/// </summary>
2018-12-27 18:27:57 -05:00
public Guid ItemId { get; set; }
2022-12-04 06:31:05 -05:00
/// <summary>
/// Gets or sets the media sources.
/// </summary>
2023-03-07 15:51:48 -05:00
public MediaSourceInfo[] MediaSources { get; set; } = Array.Empty<MediaSourceInfo>();
2022-12-04 06:31:05 -05:00
/// <summary>
/// Gets or sets the device profile.
/// </summary>
public required DeviceProfile Profile { get; set; }
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets a media source id. Optional. Only needed if a specific AudioStreamIndex or SubtitleStreamIndex are requested.
2018-12-27 18:27:57 -05:00
/// </summary>
2023-03-07 15:51:48 -05:00
public string? MediaSourceId { get; set; }
2018-12-27 18:27:57 -05:00
2022-12-04 06:31:05 -05:00
/// <summary>
/// Gets or sets the device id.
/// </summary>
2023-03-07 15:51:48 -05:00
public string? DeviceId { get; set; }
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets an override of supported number of audio channels
/// Example: DeviceProfile supports five channel, but user only has stereo speakers.
2018-12-27 18:27:57 -05:00
/// </summary>
public int? MaxAudioChannels { get; set; }
/// <summary>
2022-12-04 06:31:05 -05:00
/// Gets or sets the application's configured maximum bitrate.
2018-12-27 18:27:57 -05:00
/// </summary>
public int? MaxBitrate { get; set; }
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the context.
/// </summary>
/// <value>The context.</value>
public EncodingContext Context { get; set; }
/// <summary>
/// Gets or sets the audio transcoding bitrate.
/// </summary>
/// <value>The audio transcoding bitrate.</value>
public int? AudioTranscodingBitrate { get; set; }
2019-01-07 18:27:46 -05:00
2022-03-26 07:11:00 -04:00
/// <summary>
/// Gets or sets an override for the audio stream index.
/// </summary>
public int? AudioStreamIndex { get; set; }
/// <summary>
/// Gets or sets an override for the subtitle stream index.
/// </summary>
public int? SubtitleStreamIndex { get; set; }
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets the maximum bitrate.
/// </summary>
/// <param name="isAudio">Whether or not this is audio.</param>
2018-12-27 18:27:57 -05:00
/// <returns>System.Nullable&lt;System.Int32&gt;.</returns>
public int? GetMaxBitrate(bool isAudio)
2018-12-27 18:27:57 -05:00
{
if (MaxBitrate.HasValue)
{
return MaxBitrate;
}
2022-12-05 09:00:20 -05:00
if (Profile is null)
2018-12-27 18:27:57 -05:00
{
2019-01-20 05:34:33 -05:00
return null;
}
if (Context == EncodingContext.Static)
{
if (isAudio && Profile.MaxStaticMusicBitrate.HasValue)
2018-12-27 18:27:57 -05:00
{
2019-01-20 05:34:33 -05:00
return Profile.MaxStaticMusicBitrate;
2018-12-27 18:27:57 -05:00
}
2020-06-15 17:43:52 -04:00
2019-01-20 05:34:33 -05:00
return Profile.MaxStaticBitrate;
2018-12-27 18:27:57 -05:00
}
2019-01-20 05:34:33 -05:00
return Profile.MaxStreamingBitrate;
2018-12-27 18:27:57 -05:00
}
}
}