< Summary - Jellyfin

Information
Class: Jellyfin.Api.Controllers.DynamicHlsController
Assembly: Jellyfin.Api
File(s): /srv/git/jellyfin/Jellyfin.Api/Controllers/DynamicHlsController.cs
Line coverage
4%
Covered lines: 10
Uncovered lines: 214
Coverable lines: 224
Total lines: 2096
Line coverage: 4.4%
Branch coverage
2%
Covered branches: 4
Total branches: 142
Branch coverage: 2.8%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%210%
GetSegmentLengths(...)100%210%
GetSegmentLengthsInternal(...)100%44100%
GetCommandLineArguments(...)0%342180%
GetAudioArguments(...)0%4160640%
GetVideoArguments(...)0%2162460%
GetSegmentPath(...)0%620%
GetSegmentResult(...)100%210%
GetCurrentTranscodingIndex(...)0%4260%
GetLastTranscodingFile(...)0%620%

File(s)

/srv/git/jellyfin/Jellyfin.Api/Controllers/DynamicHlsController.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.ComponentModel.DataAnnotations;
 4using System.Diagnostics.CodeAnalysis;
 5using System.Globalization;
 6using System.IO;
 7using System.Linq;
 8using System.Text;
 9using System.Threading;
 10using System.Threading.Tasks;
 11using Jellyfin.Api.Attributes;
 12using Jellyfin.Api.Extensions;
 13using Jellyfin.Api.Helpers;
 14using Jellyfin.Api.Models.StreamingDtos;
 15using Jellyfin.Data.Enums;
 16using Jellyfin.Extensions;
 17using Jellyfin.MediaEncoding.Hls.Playlist;
 18using MediaBrowser.Common.Configuration;
 19using MediaBrowser.Controller.Configuration;
 20using MediaBrowser.Controller.Library;
 21using MediaBrowser.Controller.MediaEncoding;
 22using MediaBrowser.Controller.Streaming;
 23using MediaBrowser.MediaEncoding.Encoder;
 24using MediaBrowser.Model.Configuration;
 25using MediaBrowser.Model.Dlna;
 26using MediaBrowser.Model.Entities;
 27using MediaBrowser.Model.IO;
 28using MediaBrowser.Model.Net;
 29using Microsoft.AspNetCore.Authorization;
 30using Microsoft.AspNetCore.Http;
 31using Microsoft.AspNetCore.Mvc;
 32using Microsoft.Extensions.Logging;
 33
 34namespace Jellyfin.Api.Controllers;
 35
 36/// <summary>
 37/// Dynamic hls controller.
 38/// </summary>
 39[Route("")]
 40[Authorize]
 41public class DynamicHlsController : BaseJellyfinApiController
 42{
 43    private const EncoderPreset DefaultVodEncoderPreset = EncoderPreset.veryfast;
 44    private const EncoderPreset DefaultEventEncoderPreset = EncoderPreset.superfast;
 45    private const TranscodingJobType TranscodingJobType = MediaBrowser.Controller.MediaEncoding.TranscodingJobType.Hls;
 46
 047    private readonly Version _minFFmpegFlacInMp4 = new Version(6, 0);
 048    private readonly Version _minFFmpegX265BframeInFmp4 = new Version(7, 0, 1);
 49
 50    private readonly ILibraryManager _libraryManager;
 51    private readonly IUserManager _userManager;
 52    private readonly IMediaSourceManager _mediaSourceManager;
 53    private readonly IServerConfigurationManager _serverConfigurationManager;
 54    private readonly IMediaEncoder _mediaEncoder;
 55    private readonly IFileSystem _fileSystem;
 56    private readonly ITranscodeManager _transcodeManager;
 57    private readonly ILogger<DynamicHlsController> _logger;
 58    private readonly EncodingHelper _encodingHelper;
 59    private readonly IDynamicHlsPlaylistGenerator _dynamicHlsPlaylistGenerator;
 60    private readonly DynamicHlsHelper _dynamicHlsHelper;
 61    private readonly EncodingOptions _encodingOptions;
 62
 63    /// <summary>
 64    /// Initializes a new instance of the <see cref="DynamicHlsController"/> class.
 65    /// </summary>
 66    /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
 67    /// <param name="userManager">Instance of the <see cref="IUserManager"/> interface.</param>
 68    /// <param name="mediaSourceManager">Instance of the <see cref="IMediaSourceManager"/> interface.</param>
 69    /// <param name="serverConfigurationManager">Instance of the <see cref="IServerConfigurationManager"/> interface.</p
 70    /// <param name="mediaEncoder">Instance of the <see cref="IMediaEncoder"/> interface.</param>
 71    /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param>
 72    /// <param name="transcodeManager">Instance of the <see cref="ITranscodeManager"/> interface.</param>
 73    /// <param name="logger">Instance of the <see cref="ILogger{DynamicHlsController}"/> interface.</param>
 74    /// <param name="dynamicHlsHelper">Instance of <see cref="DynamicHlsHelper"/>.</param>
 75    /// <param name="encodingHelper">Instance of <see cref="EncodingHelper"/>.</param>
 76    /// <param name="dynamicHlsPlaylistGenerator">Instance of <see cref="IDynamicHlsPlaylistGenerator"/>.</param>
 077    public DynamicHlsController(
 078        ILibraryManager libraryManager,
 079        IUserManager userManager,
 080        IMediaSourceManager mediaSourceManager,
 081        IServerConfigurationManager serverConfigurationManager,
 082        IMediaEncoder mediaEncoder,
 083        IFileSystem fileSystem,
 084        ITranscodeManager transcodeManager,
 085        ILogger<DynamicHlsController> logger,
 086        DynamicHlsHelper dynamicHlsHelper,
 087        EncodingHelper encodingHelper,
 088        IDynamicHlsPlaylistGenerator dynamicHlsPlaylistGenerator)
 89    {
 090        _libraryManager = libraryManager;
 091        _userManager = userManager;
 092        _mediaSourceManager = mediaSourceManager;
 093        _serverConfigurationManager = serverConfigurationManager;
 094        _mediaEncoder = mediaEncoder;
 095        _fileSystem = fileSystem;
 096        _transcodeManager = transcodeManager;
 097        _logger = logger;
 098        _dynamicHlsHelper = dynamicHlsHelper;
 099        _encodingHelper = encodingHelper;
 0100        _dynamicHlsPlaylistGenerator = dynamicHlsPlaylistGenerator;
 101
 0102        _encodingOptions = serverConfigurationManager.GetEncodingOptions();
 0103    }
 104
 105    /// <summary>
 106    /// Gets a hls live stream.
 107    /// </summary>
 108    /// <param name="itemId">The item id.</param>
 109    /// <param name="container">The audio container.</param>
 110    /// <param name="static">Optional. If true, the original file will be streamed statically without any encoding. Use 
 111    /// <param name="params">The streaming parameters.</param>
 112    /// <param name="tag">The tag.</param>
 113    /// <param name="deviceProfileId">Optional. The dlna device profile id to utilize.</param>
 114    /// <param name="playSessionId">The play session id.</param>
 115    /// <param name="segmentContainer">The segment container.</param>
 116    /// <param name="segmentLength">The segment length.</param>
 117    /// <param name="minSegments">The minimum number of segments.</param>
 118    /// <param name="mediaSourceId">The media version id, if playing an alternate version.</param>
 119    /// <param name="deviceId">The device id of the client requesting. Used to stop encoding processes when needed.</par
 120    /// <param name="audioCodec">Optional. Specify an audio codec to encode to, e.g. mp3.</param>
 121    /// <param name="enableAutoStreamCopy">Whether or not to allow automatic stream copy if requested values match the o
 122    /// <param name="allowVideoStreamCopy">Whether or not to allow copying of the video stream url.</param>
 123    /// <param name="allowAudioStreamCopy">Whether or not to allow copying of the audio stream url.</param>
 124    /// <param name="breakOnNonKeyFrames">Optional. Whether to break on non key frames.</param>
 125    /// <param name="audioSampleRate">Optional. Specify a specific audio sample rate, e.g. 44100.</param>
 126    /// <param name="maxAudioBitDepth">Optional. The maximum audio bit depth.</param>
 127    /// <param name="audioBitRate">Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be
 128    /// <param name="audioChannels">Optional. Specify a specific number of audio channels to encode to, e.g. 2.</param>
 129    /// <param name="maxAudioChannels">Optional. Specify a maximum number of audio channels to encode to, e.g. 2.</param
 130    /// <param name="profile">Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, 
 131    /// <param name="level">Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.</param>
 132    /// <param name="framerate">Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be
 133    /// <param name="maxFramerate">Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally thi
 134    /// <param name="copyTimestamps">Whether or not to copy timestamps when transcoding with an offset. Defaults to fals
 135    /// <param name="startTimeTicks">Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.</param>
 136    /// <param name="width">Optional. The fixed horizontal resolution of the encoded video.</param>
 137    /// <param name="height">Optional. The fixed vertical resolution of the encoded video.</param>
 138    /// <param name="videoBitRate">Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be 
 139    /// <param name="subtitleStreamIndex">Optional. The index of the subtitle stream to use. If omitted no subtitles wil
 140    /// <param name="subtitleMethod">Optional. Specify the subtitle delivery method.</param>
 141    /// <param name="maxRefFrames">Optional.</param>
 142    /// <param name="maxVideoBitDepth">Optional. The maximum video bit depth.</param>
 143    /// <param name="requireAvc">Optional. Whether to require avc.</param>
 144    /// <param name="deInterlace">Optional. Whether to deinterlace the video.</param>
 145    /// <param name="requireNonAnamorphic">Optional. Whether to require a non anamorphic stream.</param>
 146    /// <param name="transcodingMaxAudioChannels">Optional. The maximum number of audio channels to transcode.</param>
 147    /// <param name="cpuCoreLimit">Optional. The limit of how many cpu cores to use.</param>
 148    /// <param name="liveStreamId">The live stream id.</param>
 149    /// <param name="enableMpegtsM2TsMode">Optional. Whether to enable the MpegtsM2Ts mode.</param>
 150    /// <param name="videoCodec">Optional. Specify a video codec to encode to, e.g. h264.</param>
 151    /// <param name="subtitleCodec">Optional. Specify a subtitle codec to encode to.</param>
 152    /// <param name="transcodeReasons">Optional. The transcoding reason.</param>
 153    /// <param name="audioStreamIndex">Optional. The index of the audio stream to use. If omitted the first audio stream
 154    /// <param name="videoStreamIndex">Optional. The index of the video stream to use. If omitted the first video stream
 155    /// <param name="context">Optional. The <see cref="EncodingContext"/>.</param>
 156    /// <param name="streamOptions">Optional. The streaming options.</param>
 157    /// <param name="maxWidth">Optional. The max width.</param>
 158    /// <param name="maxHeight">Optional. The max height.</param>
 159    /// <param name="enableSubtitlesInManifest">Optional. Whether to enable subtitles in the manifest.</param>
 160    /// <param name="enableAudioVbrEncoding">Optional. Whether to enable Audio Encoding.</param>
 161    /// <param name="alwaysBurnInSubtitleWhenTranscoding">Whether to always burn in subtitles when transcoding.</param>
 162    /// <response code="200">Hls live stream retrieved.</response>
 163    /// <returns>A <see cref="FileResult"/> containing the hls file.</returns>
 164    [HttpGet("Videos/{itemId}/live.m3u8")]
 165    [ProducesResponseType(StatusCodes.Status200OK)]
 166    [ProducesPlaylistFile]
 167    public async Task<ActionResult> GetLiveHlsStream(
 168        [FromRoute, Required] Guid itemId,
 169        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? container,
 170        [FromQuery] bool? @static,
 171        [FromQuery] string? @params,
 172        [FromQuery] string? tag,
 173        [FromQuery, ParameterObsolete] string? deviceProfileId,
 174        [FromQuery] string? playSessionId,
 175        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? segmentContainer,
 176        [FromQuery] int? segmentLength,
 177        [FromQuery] int? minSegments,
 178        [FromQuery] string? mediaSourceId,
 179        [FromQuery] string? deviceId,
 180        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? audioCodec,
 181        [FromQuery] bool? enableAutoStreamCopy,
 182        [FromQuery] bool? allowVideoStreamCopy,
 183        [FromQuery] bool? allowAudioStreamCopy,
 184        [FromQuery] bool? breakOnNonKeyFrames,
 185        [FromQuery] int? audioSampleRate,
 186        [FromQuery] int? maxAudioBitDepth,
 187        [FromQuery] int? audioBitRate,
 188        [FromQuery] int? audioChannels,
 189        [FromQuery] int? maxAudioChannels,
 190        [FromQuery] string? profile,
 191        [FromQuery] string? level,
 192        [FromQuery] float? framerate,
 193        [FromQuery] float? maxFramerate,
 194        [FromQuery] bool? copyTimestamps,
 195        [FromQuery] long? startTimeTicks,
 196        [FromQuery] int? width,
 197        [FromQuery] int? height,
 198        [FromQuery] int? videoBitRate,
 199        [FromQuery] int? subtitleStreamIndex,
 200        [FromQuery] SubtitleDeliveryMethod? subtitleMethod,
 201        [FromQuery] int? maxRefFrames,
 202        [FromQuery] int? maxVideoBitDepth,
 203        [FromQuery] bool? requireAvc,
 204        [FromQuery] bool? deInterlace,
 205        [FromQuery] bool? requireNonAnamorphic,
 206        [FromQuery] int? transcodingMaxAudioChannels,
 207        [FromQuery] int? cpuCoreLimit,
 208        [FromQuery] string? liveStreamId,
 209        [FromQuery] bool? enableMpegtsM2TsMode,
 210        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? videoCodec,
 211        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? subtitleCodec,
 212        [FromQuery] string? transcodeReasons,
 213        [FromQuery] int? audioStreamIndex,
 214        [FromQuery] int? videoStreamIndex,
 215        [FromQuery] EncodingContext? context,
 216        [FromQuery] Dictionary<string, string> streamOptions,
 217        [FromQuery] int? maxWidth,
 218        [FromQuery] int? maxHeight,
 219        [FromQuery] bool? enableSubtitlesInManifest,
 220        [FromQuery] bool enableAudioVbrEncoding = true,
 221        [FromQuery] bool alwaysBurnInSubtitleWhenTranscoding = false)
 222    {
 223        VideoRequestDto streamingRequest = new VideoRequestDto
 224        {
 225            Id = itemId,
 226            Container = container,
 227            Static = @static ?? false,
 228            Params = @params,
 229            Tag = tag,
 230            PlaySessionId = playSessionId,
 231            SegmentContainer = segmentContainer,
 232            SegmentLength = segmentLength,
 233            MinSegments = minSegments,
 234            MediaSourceId = mediaSourceId,
 235            DeviceId = deviceId,
 236            AudioCodec = audioCodec,
 237            EnableAutoStreamCopy = enableAutoStreamCopy ?? true,
 238            AllowAudioStreamCopy = allowAudioStreamCopy ?? true,
 239            AllowVideoStreamCopy = allowVideoStreamCopy ?? true,
 240            BreakOnNonKeyFrames = breakOnNonKeyFrames ?? false,
 241            AudioSampleRate = audioSampleRate,
 242            MaxAudioChannels = maxAudioChannels,
 243            AudioBitRate = audioBitRate,
 244            MaxAudioBitDepth = maxAudioBitDepth,
 245            AudioChannels = audioChannels,
 246            Profile = profile,
 247            Level = level,
 248            Framerate = framerate,
 249            MaxFramerate = maxFramerate,
 250            CopyTimestamps = copyTimestamps ?? false,
 251            StartTimeTicks = startTimeTicks,
 252            Width = width,
 253            Height = height,
 254            VideoBitRate = videoBitRate,
 255            SubtitleStreamIndex = subtitleStreamIndex,
 256            SubtitleMethod = subtitleMethod ?? SubtitleDeliveryMethod.External,
 257            MaxRefFrames = maxRefFrames,
 258            MaxVideoBitDepth = maxVideoBitDepth,
 259            RequireAvc = requireAvc ?? false,
 260            DeInterlace = deInterlace ?? false,
 261            RequireNonAnamorphic = requireNonAnamorphic ?? false,
 262            TranscodingMaxAudioChannels = transcodingMaxAudioChannels,
 263            CpuCoreLimit = cpuCoreLimit,
 264            LiveStreamId = liveStreamId,
 265            EnableMpegtsM2TsMode = enableMpegtsM2TsMode ?? false,
 266            VideoCodec = videoCodec,
 267            SubtitleCodec = subtitleCodec,
 268            TranscodeReasons = transcodeReasons,
 269            AudioStreamIndex = audioStreamIndex,
 270            VideoStreamIndex = videoStreamIndex,
 271            Context = context ?? EncodingContext.Streaming,
 272            StreamOptions = streamOptions,
 273            MaxHeight = maxHeight,
 274            MaxWidth = maxWidth,
 275            EnableSubtitlesInManifest = enableSubtitlesInManifest ?? true,
 276            EnableAudioVbrEncoding = enableAudioVbrEncoding,
 277            AlwaysBurnInSubtitleWhenTranscoding = alwaysBurnInSubtitleWhenTranscoding
 278        };
 279
 280        // CTS lifecycle is managed internally.
 281        var cancellationTokenSource = new CancellationTokenSource();
 282        // Due to CTS.Token calling ThrowIfDisposed (https://github.com/dotnet/runtime/issues/29970) we have to "cache" 
 283        // since it gets disposed when ffmpeg exits
 284        var cancellationToken = cancellationTokenSource.Token;
 285        var state = await StreamingHelpers.GetStreamingState(
 286                streamingRequest,
 287                HttpContext,
 288                _mediaSourceManager,
 289                _userManager,
 290                _libraryManager,
 291                _serverConfigurationManager,
 292                _mediaEncoder,
 293                _encodingHelper,
 294                _transcodeManager,
 295                TranscodingJobType,
 296                cancellationToken)
 297            .ConfigureAwait(false);
 298
 299        TranscodingJob? job = null;
 300        var playlistPath = Path.ChangeExtension(state.OutputFilePath, ".m3u8");
 301
 302        if (!System.IO.File.Exists(playlistPath))
 303        {
 304            using (await _transcodeManager.LockAsync(playlistPath, cancellationToken).ConfigureAwait(false))
 305            {
 306                if (!System.IO.File.Exists(playlistPath))
 307                {
 308                    // If the playlist doesn't already exist, startup ffmpeg
 309                    try
 310                    {
 311                        job = await _transcodeManager.StartFfMpeg(
 312                                state,
 313                                playlistPath,
 314                                GetCommandLineArguments(playlistPath, state, true, 0),
 315                                Request.HttpContext.User.GetUserId(),
 316                                TranscodingJobType,
 317                                cancellationTokenSource)
 318                            .ConfigureAwait(false);
 319                        job.IsLiveOutput = true;
 320                    }
 321                    catch
 322                    {
 323                        state.Dispose();
 324                        throw;
 325                    }
 326
 327                    minSegments = state.MinSegments;
 328                    if (minSegments > 0)
 329                    {
 330                        await HlsHelpers.WaitForMinimumSegmentCount(playlistPath, minSegments, _logger, cancellationToke
 331                    }
 332                }
 333            }
 334        }
 335
 336        job ??= _transcodeManager.OnTranscodeBeginRequest(playlistPath, TranscodingJobType);
 337
 338        if (job is not null)
 339        {
 340            _transcodeManager.OnTranscodeEndRequest(job);
 341        }
 342
 343        var playlistText = HlsHelpers.GetLivePlaylistText(playlistPath, state);
 344
 345        return Content(playlistText, MimeTypes.GetMimeType("playlist.m3u8"));
 346    }
 347
 348    /// <summary>
 349    /// Gets a video hls playlist stream.
 350    /// </summary>
 351    /// <param name="itemId">The item id.</param>
 352    /// <param name="static">Optional. If true, the original file will be streamed statically without any encoding. Use 
 353    /// <param name="params">The streaming parameters.</param>
 354    /// <param name="tag">The tag.</param>
 355    /// <param name="deviceProfileId">Optional. The dlna device profile id to utilize.</param>
 356    /// <param name="playSessionId">The play session id.</param>
 357    /// <param name="segmentContainer">The segment container.</param>
 358    /// <param name="segmentLength">The segment length.</param>
 359    /// <param name="minSegments">The minimum number of segments.</param>
 360    /// <param name="mediaSourceId">The media version id, if playing an alternate version.</param>
 361    /// <param name="deviceId">The device id of the client requesting. Used to stop encoding processes when needed.</par
 362    /// <param name="audioCodec">Optional. Specify an audio codec to encode to, e.g. mp3.</param>
 363    /// <param name="enableAutoStreamCopy">Whether or not to allow automatic stream copy if requested values match the o
 364    /// <param name="allowVideoStreamCopy">Whether or not to allow copying of the video stream url.</param>
 365    /// <param name="allowAudioStreamCopy">Whether or not to allow copying of the audio stream url.</param>
 366    /// <param name="breakOnNonKeyFrames">Optional. Whether to break on non key frames.</param>
 367    /// <param name="audioSampleRate">Optional. Specify a specific audio sample rate, e.g. 44100.</param>
 368    /// <param name="maxAudioBitDepth">Optional. The maximum audio bit depth.</param>
 369    /// <param name="audioBitRate">Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be
 370    /// <param name="audioChannels">Optional. Specify a specific number of audio channels to encode to, e.g. 2.</param>
 371    /// <param name="maxAudioChannels">Optional. Specify a maximum number of audio channels to encode to, e.g. 2.</param
 372    /// <param name="profile">Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, 
 373    /// <param name="level">Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.</param>
 374    /// <param name="framerate">Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be
 375    /// <param name="maxFramerate">Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally thi
 376    /// <param name="copyTimestamps">Whether or not to copy timestamps when transcoding with an offset. Defaults to fals
 377    /// <param name="startTimeTicks">Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.</param>
 378    /// <param name="width">Optional. The fixed horizontal resolution of the encoded video.</param>
 379    /// <param name="height">Optional. The fixed vertical resolution of the encoded video.</param>
 380    /// <param name="maxWidth">Optional. The maximum horizontal resolution of the encoded video.</param>
 381    /// <param name="maxHeight">Optional. The maximum vertical resolution of the encoded video.</param>
 382    /// <param name="videoBitRate">Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be 
 383    /// <param name="subtitleStreamIndex">Optional. The index of the subtitle stream to use. If omitted no subtitles wil
 384    /// <param name="subtitleMethod">Optional. Specify the subtitle delivery method.</param>
 385    /// <param name="maxRefFrames">Optional.</param>
 386    /// <param name="maxVideoBitDepth">Optional. The maximum video bit depth.</param>
 387    /// <param name="requireAvc">Optional. Whether to require avc.</param>
 388    /// <param name="deInterlace">Optional. Whether to deinterlace the video.</param>
 389    /// <param name="requireNonAnamorphic">Optional. Whether to require a non anamorphic stream.</param>
 390    /// <param name="transcodingMaxAudioChannels">Optional. The maximum number of audio channels to transcode.</param>
 391    /// <param name="cpuCoreLimit">Optional. The limit of how many cpu cores to use.</param>
 392    /// <param name="liveStreamId">The live stream id.</param>
 393    /// <param name="enableMpegtsM2TsMode">Optional. Whether to enable the MpegtsM2Ts mode.</param>
 394    /// <param name="videoCodec">Optional. Specify a video codec to encode to, e.g. h264.</param>
 395    /// <param name="subtitleCodec">Optional. Specify a subtitle codec to encode to.</param>
 396    /// <param name="transcodeReasons">Optional. The transcoding reason.</param>
 397    /// <param name="audioStreamIndex">Optional. The index of the audio stream to use. If omitted the first audio stream
 398    /// <param name="videoStreamIndex">Optional. The index of the video stream to use. If omitted the first video stream
 399    /// <param name="context">Optional. The <see cref="EncodingContext"/>.</param>
 400    /// <param name="streamOptions">Optional. The streaming options.</param>
 401    /// <param name="enableAdaptiveBitrateStreaming">Enable adaptive bitrate streaming.</param>
 402    /// <param name="enableTrickplay">Enable trickplay image playlists being added to master playlist.</param>
 403    /// <param name="enableAudioVbrEncoding">Whether to enable Audio Encoding.</param>
 404    /// <param name="alwaysBurnInSubtitleWhenTranscoding">Whether to always burn in subtitles when transcoding.</param>
 405    /// <response code="200">Video stream returned.</response>
 406    /// <returns>A <see cref="FileResult"/> containing the playlist file.</returns>
 407    [HttpGet("Videos/{itemId}/master.m3u8")]
 408    [HttpHead("Videos/{itemId}/master.m3u8", Name = "HeadMasterHlsVideoPlaylist")]
 409    [ProducesResponseType(StatusCodes.Status200OK)]
 410    [ProducesPlaylistFile]
 411    public async Task<ActionResult> GetMasterHlsVideoPlaylist(
 412        [FromRoute, Required] Guid itemId,
 413        [FromQuery] bool? @static,
 414        [FromQuery] string? @params,
 415        [FromQuery] string? tag,
 416        [FromQuery, ParameterObsolete] string? deviceProfileId,
 417        [FromQuery] string? playSessionId,
 418        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? segmentContainer,
 419        [FromQuery] int? segmentLength,
 420        [FromQuery] int? minSegments,
 421        [FromQuery, Required] string mediaSourceId,
 422        [FromQuery] string? deviceId,
 423        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? audioCodec,
 424        [FromQuery] bool? enableAutoStreamCopy,
 425        [FromQuery] bool? allowVideoStreamCopy,
 426        [FromQuery] bool? allowAudioStreamCopy,
 427        [FromQuery] bool? breakOnNonKeyFrames,
 428        [FromQuery] int? audioSampleRate,
 429        [FromQuery] int? maxAudioBitDepth,
 430        [FromQuery] int? audioBitRate,
 431        [FromQuery] int? audioChannels,
 432        [FromQuery] int? maxAudioChannels,
 433        [FromQuery] string? profile,
 434        [FromQuery] string? level,
 435        [FromQuery] float? framerate,
 436        [FromQuery] float? maxFramerate,
 437        [FromQuery] bool? copyTimestamps,
 438        [FromQuery] long? startTimeTicks,
 439        [FromQuery] int? width,
 440        [FromQuery] int? height,
 441        [FromQuery] int? maxWidth,
 442        [FromQuery] int? maxHeight,
 443        [FromQuery] int? videoBitRate,
 444        [FromQuery] int? subtitleStreamIndex,
 445        [FromQuery] SubtitleDeliveryMethod? subtitleMethod,
 446        [FromQuery] int? maxRefFrames,
 447        [FromQuery] int? maxVideoBitDepth,
 448        [FromQuery] bool? requireAvc,
 449        [FromQuery] bool? deInterlace,
 450        [FromQuery] bool? requireNonAnamorphic,
 451        [FromQuery] int? transcodingMaxAudioChannels,
 452        [FromQuery] int? cpuCoreLimit,
 453        [FromQuery] string? liveStreamId,
 454        [FromQuery] bool? enableMpegtsM2TsMode,
 455        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? videoCodec,
 456        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? subtitleCodec,
 457        [FromQuery] string? transcodeReasons,
 458        [FromQuery] int? audioStreamIndex,
 459        [FromQuery] int? videoStreamIndex,
 460        [FromQuery] EncodingContext? context,
 461        [FromQuery] Dictionary<string, string> streamOptions,
 462        [FromQuery] bool enableAdaptiveBitrateStreaming = false,
 463        [FromQuery] bool enableTrickplay = true,
 464        [FromQuery] bool enableAudioVbrEncoding = true,
 465        [FromQuery] bool alwaysBurnInSubtitleWhenTranscoding = false)
 466    {
 467        var streamingRequest = new HlsVideoRequestDto
 468        {
 469            Id = itemId,
 470            Static = @static ?? false,
 471            Params = @params,
 472            Tag = tag,
 473            PlaySessionId = playSessionId,
 474            SegmentContainer = segmentContainer,
 475            SegmentLength = segmentLength,
 476            MinSegments = minSegments,
 477            MediaSourceId = mediaSourceId,
 478            DeviceId = deviceId,
 479            AudioCodec = audioCodec,
 480            EnableAutoStreamCopy = enableAutoStreamCopy ?? true,
 481            AllowAudioStreamCopy = allowAudioStreamCopy ?? true,
 482            AllowVideoStreamCopy = allowVideoStreamCopy ?? true,
 483            BreakOnNonKeyFrames = breakOnNonKeyFrames ?? false,
 484            AudioSampleRate = audioSampleRate,
 485            MaxAudioChannels = maxAudioChannels,
 486            AudioBitRate = audioBitRate,
 487            MaxAudioBitDepth = maxAudioBitDepth,
 488            AudioChannels = audioChannels,
 489            Profile = profile,
 490            Level = level,
 491            Framerate = framerate,
 492            MaxFramerate = maxFramerate,
 493            CopyTimestamps = copyTimestamps ?? false,
 494            StartTimeTicks = startTimeTicks,
 495            Width = width,
 496            Height = height,
 497            MaxWidth = maxWidth,
 498            MaxHeight = maxHeight,
 499            VideoBitRate = videoBitRate,
 500            SubtitleStreamIndex = subtitleStreamIndex,
 501            SubtitleMethod = subtitleMethod ?? SubtitleDeliveryMethod.External,
 502            MaxRefFrames = maxRefFrames,
 503            MaxVideoBitDepth = maxVideoBitDepth,
 504            RequireAvc = requireAvc ?? false,
 505            DeInterlace = deInterlace ?? false,
 506            RequireNonAnamorphic = requireNonAnamorphic ?? false,
 507            TranscodingMaxAudioChannels = transcodingMaxAudioChannels,
 508            CpuCoreLimit = cpuCoreLimit,
 509            LiveStreamId = liveStreamId,
 510            EnableMpegtsM2TsMode = enableMpegtsM2TsMode ?? false,
 511            VideoCodec = videoCodec,
 512            SubtitleCodec = subtitleCodec,
 513            TranscodeReasons = transcodeReasons,
 514            AudioStreamIndex = audioStreamIndex,
 515            VideoStreamIndex = videoStreamIndex,
 516            Context = context ?? EncodingContext.Streaming,
 517            StreamOptions = streamOptions,
 518            EnableAdaptiveBitrateStreaming = enableAdaptiveBitrateStreaming,
 519            EnableTrickplay = enableTrickplay,
 520            EnableAudioVbrEncoding = enableAudioVbrEncoding,
 521            AlwaysBurnInSubtitleWhenTranscoding = alwaysBurnInSubtitleWhenTranscoding
 522        };
 523
 524        return await _dynamicHlsHelper.GetMasterHlsPlaylist(TranscodingJobType, streamingRequest, enableAdaptiveBitrateS
 525    }
 526
 527    /// <summary>
 528    /// Gets an audio hls playlist stream.
 529    /// </summary>
 530    /// <param name="itemId">The item id.</param>
 531    /// <param name="static">Optional. If true, the original file will be streamed statically without any encoding. Use 
 532    /// <param name="params">The streaming parameters.</param>
 533    /// <param name="tag">The tag.</param>
 534    /// <param name="deviceProfileId">Optional. The dlna device profile id to utilize.</param>
 535    /// <param name="playSessionId">The play session id.</param>
 536    /// <param name="segmentContainer">The segment container.</param>
 537    /// <param name="segmentLength">The segment length.</param>
 538    /// <param name="minSegments">The minimum number of segments.</param>
 539    /// <param name="mediaSourceId">The media version id, if playing an alternate version.</param>
 540    /// <param name="deviceId">The device id of the client requesting. Used to stop encoding processes when needed.</par
 541    /// <param name="audioCodec">Optional. Specify an audio codec to encode to, e.g. mp3.</param>
 542    /// <param name="enableAutoStreamCopy">Whether or not to allow automatic stream copy if requested values match the o
 543    /// <param name="allowVideoStreamCopy">Whether or not to allow copying of the video stream url.</param>
 544    /// <param name="allowAudioStreamCopy">Whether or not to allow copying of the audio stream url.</param>
 545    /// <param name="breakOnNonKeyFrames">Optional. Whether to break on non key frames.</param>
 546    /// <param name="audioSampleRate">Optional. Specify a specific audio sample rate, e.g. 44100.</param>
 547    /// <param name="maxAudioBitDepth">Optional. The maximum audio bit depth.</param>
 548    /// <param name="maxStreamingBitrate">Optional. The maximum streaming bitrate.</param>
 549    /// <param name="audioBitRate">Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be
 550    /// <param name="audioChannels">Optional. Specify a specific number of audio channels to encode to, e.g. 2.</param>
 551    /// <param name="maxAudioChannels">Optional. Specify a maximum number of audio channels to encode to, e.g. 2.</param
 552    /// <param name="profile">Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, 
 553    /// <param name="level">Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.</param>
 554    /// <param name="framerate">Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be
 555    /// <param name="maxFramerate">Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally thi
 556    /// <param name="copyTimestamps">Whether or not to copy timestamps when transcoding with an offset. Defaults to fals
 557    /// <param name="startTimeTicks">Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.</param>
 558    /// <param name="width">Optional. The fixed horizontal resolution of the encoded video.</param>
 559    /// <param name="height">Optional. The fixed vertical resolution of the encoded video.</param>
 560    /// <param name="videoBitRate">Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be 
 561    /// <param name="subtitleStreamIndex">Optional. The index of the subtitle stream to use. If omitted no subtitles wil
 562    /// <param name="subtitleMethod">Optional. Specify the subtitle delivery method.</param>
 563    /// <param name="maxRefFrames">Optional.</param>
 564    /// <param name="maxVideoBitDepth">Optional. The maximum video bit depth.</param>
 565    /// <param name="requireAvc">Optional. Whether to require avc.</param>
 566    /// <param name="deInterlace">Optional. Whether to deinterlace the video.</param>
 567    /// <param name="requireNonAnamorphic">Optional. Whether to require a non anamorphic stream.</param>
 568    /// <param name="transcodingMaxAudioChannels">Optional. The maximum number of audio channels to transcode.</param>
 569    /// <param name="cpuCoreLimit">Optional. The limit of how many cpu cores to use.</param>
 570    /// <param name="liveStreamId">The live stream id.</param>
 571    /// <param name="enableMpegtsM2TsMode">Optional. Whether to enable the MpegtsM2Ts mode.</param>
 572    /// <param name="videoCodec">Optional. Specify a video codec to encode to, e.g. h264.</param>
 573    /// <param name="subtitleCodec">Optional. Specify a subtitle codec to encode to.</param>
 574    /// <param name="transcodeReasons">Optional. The transcoding reason.</param>
 575    /// <param name="audioStreamIndex">Optional. The index of the audio stream to use. If omitted the first audio stream
 576    /// <param name="videoStreamIndex">Optional. The index of the video stream to use. If omitted the first video stream
 577    /// <param name="context">Optional. The <see cref="EncodingContext"/>.</param>
 578    /// <param name="streamOptions">Optional. The streaming options.</param>
 579    /// <param name="enableAdaptiveBitrateStreaming">Enable adaptive bitrate streaming.</param>
 580    /// <param name="enableAudioVbrEncoding">Optional. Whether to enable Audio Encoding.</param>
 581    /// <response code="200">Audio stream returned.</response>
 582    /// <returns>A <see cref="FileResult"/> containing the playlist file.</returns>
 583    [HttpGet("Audio/{itemId}/master.m3u8")]
 584    [HttpHead("Audio/{itemId}/master.m3u8", Name = "HeadMasterHlsAudioPlaylist")]
 585    [ProducesResponseType(StatusCodes.Status200OK)]
 586    [ProducesPlaylistFile]
 587    public async Task<ActionResult> GetMasterHlsAudioPlaylist(
 588        [FromRoute, Required] Guid itemId,
 589        [FromQuery] bool? @static,
 590        [FromQuery] string? @params,
 591        [FromQuery] string? tag,
 592        [FromQuery, ParameterObsolete] string? deviceProfileId,
 593        [FromQuery] string? playSessionId,
 594        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? segmentContainer,
 595        [FromQuery] int? segmentLength,
 596        [FromQuery] int? minSegments,
 597        [FromQuery, Required] string mediaSourceId,
 598        [FromQuery] string? deviceId,
 599        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? audioCodec,
 600        [FromQuery] bool? enableAutoStreamCopy,
 601        [FromQuery] bool? allowVideoStreamCopy,
 602        [FromQuery] bool? allowAudioStreamCopy,
 603        [FromQuery] bool? breakOnNonKeyFrames,
 604        [FromQuery] int? audioSampleRate,
 605        [FromQuery] int? maxAudioBitDepth,
 606        [FromQuery] int? maxStreamingBitrate,
 607        [FromQuery] int? audioBitRate,
 608        [FromQuery] int? audioChannels,
 609        [FromQuery] int? maxAudioChannels,
 610        [FromQuery] string? profile,
 611        [FromQuery] string? level,
 612        [FromQuery] float? framerate,
 613        [FromQuery] float? maxFramerate,
 614        [FromQuery] bool? copyTimestamps,
 615        [FromQuery] long? startTimeTicks,
 616        [FromQuery] int? width,
 617        [FromQuery] int? height,
 618        [FromQuery] int? videoBitRate,
 619        [FromQuery] int? subtitleStreamIndex,
 620        [FromQuery] SubtitleDeliveryMethod? subtitleMethod,
 621        [FromQuery] int? maxRefFrames,
 622        [FromQuery] int? maxVideoBitDepth,
 623        [FromQuery] bool? requireAvc,
 624        [FromQuery] bool? deInterlace,
 625        [FromQuery] bool? requireNonAnamorphic,
 626        [FromQuery] int? transcodingMaxAudioChannels,
 627        [FromQuery] int? cpuCoreLimit,
 628        [FromQuery] string? liveStreamId,
 629        [FromQuery] bool? enableMpegtsM2TsMode,
 630        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? videoCodec,
 631        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? subtitleCodec,
 632        [FromQuery] string? transcodeReasons,
 633        [FromQuery] int? audioStreamIndex,
 634        [FromQuery] int? videoStreamIndex,
 635        [FromQuery] EncodingContext? context,
 636        [FromQuery] Dictionary<string, string> streamOptions,
 637        [FromQuery] bool enableAdaptiveBitrateStreaming = false,
 638        [FromQuery] bool enableAudioVbrEncoding = true)
 639    {
 640        var streamingRequest = new HlsAudioRequestDto
 641        {
 642            Id = itemId,
 643            Static = @static ?? false,
 644            Params = @params,
 645            Tag = tag,
 646            PlaySessionId = playSessionId,
 647            SegmentContainer = segmentContainer,
 648            SegmentLength = segmentLength,
 649            MinSegments = minSegments,
 650            MediaSourceId = mediaSourceId,
 651            DeviceId = deviceId,
 652            AudioCodec = audioCodec,
 653            EnableAutoStreamCopy = enableAutoStreamCopy ?? true,
 654            AllowAudioStreamCopy = allowAudioStreamCopy ?? true,
 655            AllowVideoStreamCopy = allowVideoStreamCopy ?? true,
 656            BreakOnNonKeyFrames = breakOnNonKeyFrames ?? false,
 657            AudioSampleRate = audioSampleRate,
 658            MaxAudioChannels = maxAudioChannels,
 659            AudioBitRate = audioBitRate ?? maxStreamingBitrate,
 660            MaxAudioBitDepth = maxAudioBitDepth,
 661            AudioChannels = audioChannels,
 662            Profile = profile,
 663            Level = level,
 664            Framerate = framerate,
 665            MaxFramerate = maxFramerate,
 666            CopyTimestamps = copyTimestamps ?? false,
 667            StartTimeTicks = startTimeTicks,
 668            Width = width,
 669            Height = height,
 670            VideoBitRate = videoBitRate,
 671            SubtitleStreamIndex = subtitleStreamIndex,
 672            SubtitleMethod = subtitleMethod ?? SubtitleDeliveryMethod.External,
 673            MaxRefFrames = maxRefFrames,
 674            MaxVideoBitDepth = maxVideoBitDepth,
 675            RequireAvc = requireAvc ?? false,
 676            DeInterlace = deInterlace ?? false,
 677            RequireNonAnamorphic = requireNonAnamorphic ?? false,
 678            TranscodingMaxAudioChannels = transcodingMaxAudioChannels,
 679            CpuCoreLimit = cpuCoreLimit,
 680            LiveStreamId = liveStreamId,
 681            EnableMpegtsM2TsMode = enableMpegtsM2TsMode ?? false,
 682            VideoCodec = videoCodec,
 683            SubtitleCodec = subtitleCodec,
 684            TranscodeReasons = transcodeReasons,
 685            AudioStreamIndex = audioStreamIndex,
 686            VideoStreamIndex = videoStreamIndex,
 687            Context = context ?? EncodingContext.Streaming,
 688            StreamOptions = streamOptions,
 689            EnableAdaptiveBitrateStreaming = enableAdaptiveBitrateStreaming,
 690            EnableAudioVbrEncoding = enableAudioVbrEncoding,
 691            AlwaysBurnInSubtitleWhenTranscoding = false
 692        };
 693
 694        return await _dynamicHlsHelper.GetMasterHlsPlaylist(TranscodingJobType, streamingRequest, enableAdaptiveBitrateS
 695    }
 696
 697    /// <summary>
 698    /// Gets a video stream using HTTP live streaming.
 699    /// </summary>
 700    /// <param name="itemId">The item id.</param>
 701    /// <param name="static">Optional. If true, the original file will be streamed statically without any encoding. Use 
 702    /// <param name="params">The streaming parameters.</param>
 703    /// <param name="tag">The tag.</param>
 704    /// <param name="deviceProfileId">Optional. The dlna device profile id to utilize.</param>
 705    /// <param name="playSessionId">The play session id.</param>
 706    /// <param name="segmentContainer">The segment container.</param>
 707    /// <param name="segmentLength">The segment length.</param>
 708    /// <param name="minSegments">The minimum number of segments.</param>
 709    /// <param name="mediaSourceId">The media version id, if playing an alternate version.</param>
 710    /// <param name="deviceId">The device id of the client requesting. Used to stop encoding processes when needed.</par
 711    /// <param name="audioCodec">Optional. Specify an audio codec to encode to, e.g. mp3.</param>
 712    /// <param name="enableAutoStreamCopy">Whether or not to allow automatic stream copy if requested values match the o
 713    /// <param name="allowVideoStreamCopy">Whether or not to allow copying of the video stream url.</param>
 714    /// <param name="allowAudioStreamCopy">Whether or not to allow copying of the audio stream url.</param>
 715    /// <param name="breakOnNonKeyFrames">Optional. Whether to break on non key frames.</param>
 716    /// <param name="audioSampleRate">Optional. Specify a specific audio sample rate, e.g. 44100.</param>
 717    /// <param name="maxAudioBitDepth">Optional. The maximum audio bit depth.</param>
 718    /// <param name="audioBitRate">Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be
 719    /// <param name="audioChannels">Optional. Specify a specific number of audio channels to encode to, e.g. 2.</param>
 720    /// <param name="maxAudioChannels">Optional. Specify a maximum number of audio channels to encode to, e.g. 2.</param
 721    /// <param name="profile">Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, 
 722    /// <param name="level">Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.</param>
 723    /// <param name="framerate">Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be
 724    /// <param name="maxFramerate">Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally thi
 725    /// <param name="copyTimestamps">Whether or not to copy timestamps when transcoding with an offset. Defaults to fals
 726    /// <param name="startTimeTicks">Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.</param>
 727    /// <param name="width">Optional. The fixed horizontal resolution of the encoded video.</param>
 728    /// <param name="height">Optional. The fixed vertical resolution of the encoded video.</param>
 729    /// <param name="maxWidth">Optional. The maximum horizontal resolution of the encoded video.</param>
 730    /// <param name="maxHeight">Optional. The maximum vertical resolution of the encoded video.</param>
 731    /// <param name="videoBitRate">Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be 
 732    /// <param name="subtitleStreamIndex">Optional. The index of the subtitle stream to use. If omitted no subtitles wil
 733    /// <param name="subtitleMethod">Optional. Specify the subtitle delivery method.</param>
 734    /// <param name="maxRefFrames">Optional.</param>
 735    /// <param name="maxVideoBitDepth">Optional. The maximum video bit depth.</param>
 736    /// <param name="requireAvc">Optional. Whether to require avc.</param>
 737    /// <param name="deInterlace">Optional. Whether to deinterlace the video.</param>
 738    /// <param name="requireNonAnamorphic">Optional. Whether to require a non anamorphic stream.</param>
 739    /// <param name="transcodingMaxAudioChannels">Optional. The maximum number of audio channels to transcode.</param>
 740    /// <param name="cpuCoreLimit">Optional. The limit of how many cpu cores to use.</param>
 741    /// <param name="liveStreamId">The live stream id.</param>
 742    /// <param name="enableMpegtsM2TsMode">Optional. Whether to enable the MpegtsM2Ts mode.</param>
 743    /// <param name="videoCodec">Optional. Specify a video codec to encode to, e.g. h264.</param>
 744    /// <param name="subtitleCodec">Optional. Specify a subtitle codec to encode to.</param>
 745    /// <param name="transcodeReasons">Optional. The transcoding reason.</param>
 746    /// <param name="audioStreamIndex">Optional. The index of the audio stream to use. If omitted the first audio stream
 747    /// <param name="videoStreamIndex">Optional. The index of the video stream to use. If omitted the first video stream
 748    /// <param name="context">Optional. The <see cref="EncodingContext"/>.</param>
 749    /// <param name="streamOptions">Optional. The streaming options.</param>
 750    /// <param name="enableAudioVbrEncoding">Optional. Whether to enable Audio Encoding.</param>
 751    /// <param name="alwaysBurnInSubtitleWhenTranscoding">Whether to always burn in subtitles when transcoding.</param>
 752    /// <response code="200">Video stream returned.</response>
 753    /// <returns>A <see cref="FileResult"/> containing the audio file.</returns>
 754    [HttpGet("Videos/{itemId}/main.m3u8")]
 755    [ProducesResponseType(StatusCodes.Status200OK)]
 756    [ProducesPlaylistFile]
 757    public async Task<ActionResult> GetVariantHlsVideoPlaylist(
 758        [FromRoute, Required] Guid itemId,
 759        [FromQuery] bool? @static,
 760        [FromQuery] string? @params,
 761        [FromQuery] string? tag,
 762        [FromQuery, ParameterObsolete] string? deviceProfileId,
 763        [FromQuery] string? playSessionId,
 764        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? segmentContainer,
 765        [FromQuery] int? segmentLength,
 766        [FromQuery] int? minSegments,
 767        [FromQuery] string? mediaSourceId,
 768        [FromQuery] string? deviceId,
 769        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? audioCodec,
 770        [FromQuery] bool? enableAutoStreamCopy,
 771        [FromQuery] bool? allowVideoStreamCopy,
 772        [FromQuery] bool? allowAudioStreamCopy,
 773        [FromQuery] bool? breakOnNonKeyFrames,
 774        [FromQuery] int? audioSampleRate,
 775        [FromQuery] int? maxAudioBitDepth,
 776        [FromQuery] int? audioBitRate,
 777        [FromQuery] int? audioChannels,
 778        [FromQuery] int? maxAudioChannels,
 779        [FromQuery] string? profile,
 780        [FromQuery] string? level,
 781        [FromQuery] float? framerate,
 782        [FromQuery] float? maxFramerate,
 783        [FromQuery] bool? copyTimestamps,
 784        [FromQuery] long? startTimeTicks,
 785        [FromQuery] int? width,
 786        [FromQuery] int? height,
 787        [FromQuery] int? maxWidth,
 788        [FromQuery] int? maxHeight,
 789        [FromQuery] int? videoBitRate,
 790        [FromQuery] int? subtitleStreamIndex,
 791        [FromQuery] SubtitleDeliveryMethod? subtitleMethod,
 792        [FromQuery] int? maxRefFrames,
 793        [FromQuery] int? maxVideoBitDepth,
 794        [FromQuery] bool? requireAvc,
 795        [FromQuery] bool? deInterlace,
 796        [FromQuery] bool? requireNonAnamorphic,
 797        [FromQuery] int? transcodingMaxAudioChannels,
 798        [FromQuery] int? cpuCoreLimit,
 799        [FromQuery] string? liveStreamId,
 800        [FromQuery] bool? enableMpegtsM2TsMode,
 801        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? videoCodec,
 802        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? subtitleCodec,
 803        [FromQuery] string? transcodeReasons,
 804        [FromQuery] int? audioStreamIndex,
 805        [FromQuery] int? videoStreamIndex,
 806        [FromQuery] EncodingContext? context,
 807        [FromQuery] Dictionary<string, string> streamOptions,
 808        [FromQuery] bool enableAudioVbrEncoding = true,
 809        [FromQuery] bool alwaysBurnInSubtitleWhenTranscoding = false)
 810    {
 811        using var cancellationTokenSource = new CancellationTokenSource();
 812        var streamingRequest = new VideoRequestDto
 813        {
 814            Id = itemId,
 815            Static = @static ?? false,
 816            Params = @params,
 817            Tag = tag,
 818            PlaySessionId = playSessionId,
 819            SegmentContainer = segmentContainer,
 820            SegmentLength = segmentLength,
 821            MinSegments = minSegments,
 822            MediaSourceId = mediaSourceId,
 823            DeviceId = deviceId,
 824            AudioCodec = audioCodec,
 825            EnableAutoStreamCopy = enableAutoStreamCopy ?? true,
 826            AllowAudioStreamCopy = allowAudioStreamCopy ?? true,
 827            AllowVideoStreamCopy = allowVideoStreamCopy ?? true,
 828            BreakOnNonKeyFrames = breakOnNonKeyFrames ?? false,
 829            AudioSampleRate = audioSampleRate,
 830            MaxAudioChannels = maxAudioChannels,
 831            AudioBitRate = audioBitRate,
 832            MaxAudioBitDepth = maxAudioBitDepth,
 833            AudioChannels = audioChannels,
 834            Profile = profile,
 835            Level = level,
 836            Framerate = framerate,
 837            MaxFramerate = maxFramerate,
 838            CopyTimestamps = copyTimestamps ?? false,
 839            StartTimeTicks = startTimeTicks,
 840            Width = width,
 841            Height = height,
 842            MaxWidth = maxWidth,
 843            MaxHeight = maxHeight,
 844            VideoBitRate = videoBitRate,
 845            SubtitleStreamIndex = subtitleStreamIndex,
 846            SubtitleMethod = subtitleMethod ?? SubtitleDeliveryMethod.External,
 847            MaxRefFrames = maxRefFrames,
 848            MaxVideoBitDepth = maxVideoBitDepth,
 849            RequireAvc = requireAvc ?? false,
 850            DeInterlace = deInterlace ?? false,
 851            RequireNonAnamorphic = requireNonAnamorphic ?? false,
 852            TranscodingMaxAudioChannels = transcodingMaxAudioChannels,
 853            CpuCoreLimit = cpuCoreLimit,
 854            LiveStreamId = liveStreamId,
 855            EnableMpegtsM2TsMode = enableMpegtsM2TsMode ?? false,
 856            VideoCodec = videoCodec,
 857            SubtitleCodec = subtitleCodec,
 858            TranscodeReasons = transcodeReasons,
 859            AudioStreamIndex = audioStreamIndex,
 860            VideoStreamIndex = videoStreamIndex,
 861            Context = context ?? EncodingContext.Streaming,
 862            StreamOptions = streamOptions,
 863            EnableAudioVbrEncoding = enableAudioVbrEncoding,
 864            AlwaysBurnInSubtitleWhenTranscoding = alwaysBurnInSubtitleWhenTranscoding
 865        };
 866
 867        return await GetVariantPlaylistInternal(streamingRequest, cancellationTokenSource)
 868            .ConfigureAwait(false);
 869    }
 870
 871    /// <summary>
 872    /// Gets an audio stream using HTTP live streaming.
 873    /// </summary>
 874    /// <param name="itemId">The item id.</param>
 875    /// <param name="static">Optional. If true, the original file will be streamed statically without any encoding. Use 
 876    /// <param name="params">The streaming parameters.</param>
 877    /// <param name="tag">The tag.</param>
 878    /// <param name="deviceProfileId">Optional. The dlna device profile id to utilize.</param>
 879    /// <param name="playSessionId">The play session id.</param>
 880    /// <param name="segmentContainer">The segment container.</param>
 881    /// <param name="segmentLength">The segment length.</param>
 882    /// <param name="minSegments">The minimum number of segments.</param>
 883    /// <param name="mediaSourceId">The media version id, if playing an alternate version.</param>
 884    /// <param name="deviceId">The device id of the client requesting. Used to stop encoding processes when needed.</par
 885    /// <param name="audioCodec">Optional. Specify an audio codec to encode to, e.g. mp3.</param>
 886    /// <param name="enableAutoStreamCopy">Whether or not to allow automatic stream copy if requested values match the o
 887    /// <param name="allowVideoStreamCopy">Whether or not to allow copying of the video stream url.</param>
 888    /// <param name="allowAudioStreamCopy">Whether or not to allow copying of the audio stream url.</param>
 889    /// <param name="breakOnNonKeyFrames">Optional. Whether to break on non key frames.</param>
 890    /// <param name="audioSampleRate">Optional. Specify a specific audio sample rate, e.g. 44100.</param>
 891    /// <param name="maxAudioBitDepth">Optional. The maximum audio bit depth.</param>
 892    /// <param name="maxStreamingBitrate">Optional. The maximum streaming bitrate.</param>
 893    /// <param name="audioBitRate">Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be
 894    /// <param name="audioChannels">Optional. Specify a specific number of audio channels to encode to, e.g. 2.</param>
 895    /// <param name="maxAudioChannels">Optional. Specify a maximum number of audio channels to encode to, e.g. 2.</param
 896    /// <param name="profile">Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, 
 897    /// <param name="level">Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.</param>
 898    /// <param name="framerate">Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be
 899    /// <param name="maxFramerate">Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally thi
 900    /// <param name="copyTimestamps">Whether or not to copy timestamps when transcoding with an offset. Defaults to fals
 901    /// <param name="startTimeTicks">Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.</param>
 902    /// <param name="width">Optional. The fixed horizontal resolution of the encoded video.</param>
 903    /// <param name="height">Optional. The fixed vertical resolution of the encoded video.</param>
 904    /// <param name="videoBitRate">Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be 
 905    /// <param name="subtitleStreamIndex">Optional. The index of the subtitle stream to use. If omitted no subtitles wil
 906    /// <param name="subtitleMethod">Optional. Specify the subtitle delivery method.</param>
 907    /// <param name="maxRefFrames">Optional.</param>
 908    /// <param name="maxVideoBitDepth">Optional. The maximum video bit depth.</param>
 909    /// <param name="requireAvc">Optional. Whether to require avc.</param>
 910    /// <param name="deInterlace">Optional. Whether to deinterlace the video.</param>
 911    /// <param name="requireNonAnamorphic">Optional. Whether to require a non anamorphic stream.</param>
 912    /// <param name="transcodingMaxAudioChannels">Optional. The maximum number of audio channels to transcode.</param>
 913    /// <param name="cpuCoreLimit">Optional. The limit of how many cpu cores to use.</param>
 914    /// <param name="liveStreamId">The live stream id.</param>
 915    /// <param name="enableMpegtsM2TsMode">Optional. Whether to enable the MpegtsM2Ts mode.</param>
 916    /// <param name="videoCodec">Optional. Specify a video codec to encode to, e.g. h264.</param>
 917    /// <param name="subtitleCodec">Optional. Specify a subtitle codec to encode to.</param>
 918    /// <param name="transcodeReasons">Optional. The transcoding reason.</param>
 919    /// <param name="audioStreamIndex">Optional. The index of the audio stream to use. If omitted the first audio stream
 920    /// <param name="videoStreamIndex">Optional. The index of the video stream to use. If omitted the first video stream
 921    /// <param name="context">Optional. The <see cref="EncodingContext"/>.</param>
 922    /// <param name="streamOptions">Optional. The streaming options.</param>
 923    /// <param name="enableAudioVbrEncoding">Optional. Whether to enable Audio Encoding.</param>
 924    /// <response code="200">Audio stream returned.</response>
 925    /// <returns>A <see cref="FileResult"/> containing the audio file.</returns>
 926    [HttpGet("Audio/{itemId}/main.m3u8")]
 927    [ProducesResponseType(StatusCodes.Status200OK)]
 928    [ProducesPlaylistFile]
 929    public async Task<ActionResult> GetVariantHlsAudioPlaylist(
 930        [FromRoute, Required] Guid itemId,
 931        [FromQuery] bool? @static,
 932        [FromQuery] string? @params,
 933        [FromQuery] string? tag,
 934        [FromQuery, ParameterObsolete] string? deviceProfileId,
 935        [FromQuery] string? playSessionId,
 936        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? segmentContainer,
 937        [FromQuery] int? segmentLength,
 938        [FromQuery] int? minSegments,
 939        [FromQuery] string? mediaSourceId,
 940        [FromQuery] string? deviceId,
 941        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? audioCodec,
 942        [FromQuery] bool? enableAutoStreamCopy,
 943        [FromQuery] bool? allowVideoStreamCopy,
 944        [FromQuery] bool? allowAudioStreamCopy,
 945        [FromQuery] bool? breakOnNonKeyFrames,
 946        [FromQuery] int? audioSampleRate,
 947        [FromQuery] int? maxAudioBitDepth,
 948        [FromQuery] int? maxStreamingBitrate,
 949        [FromQuery] int? audioBitRate,
 950        [FromQuery] int? audioChannels,
 951        [FromQuery] int? maxAudioChannels,
 952        [FromQuery] string? profile,
 953        [FromQuery] string? level,
 954        [FromQuery] float? framerate,
 955        [FromQuery] float? maxFramerate,
 956        [FromQuery] bool? copyTimestamps,
 957        [FromQuery] long? startTimeTicks,
 958        [FromQuery] int? width,
 959        [FromQuery] int? height,
 960        [FromQuery] int? videoBitRate,
 961        [FromQuery] int? subtitleStreamIndex,
 962        [FromQuery] SubtitleDeliveryMethod? subtitleMethod,
 963        [FromQuery] int? maxRefFrames,
 964        [FromQuery] int? maxVideoBitDepth,
 965        [FromQuery] bool? requireAvc,
 966        [FromQuery] bool? deInterlace,
 967        [FromQuery] bool? requireNonAnamorphic,
 968        [FromQuery] int? transcodingMaxAudioChannels,
 969        [FromQuery] int? cpuCoreLimit,
 970        [FromQuery] string? liveStreamId,
 971        [FromQuery] bool? enableMpegtsM2TsMode,
 972        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? videoCodec,
 973        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? subtitleCodec,
 974        [FromQuery] string? transcodeReasons,
 975        [FromQuery] int? audioStreamIndex,
 976        [FromQuery] int? videoStreamIndex,
 977        [FromQuery] EncodingContext? context,
 978        [FromQuery] Dictionary<string, string> streamOptions,
 979        [FromQuery] bool enableAudioVbrEncoding = true)
 980    {
 981        using var cancellationTokenSource = new CancellationTokenSource();
 982        var streamingRequest = new StreamingRequestDto
 983        {
 984            Id = itemId,
 985            Static = @static ?? false,
 986            Params = @params,
 987            Tag = tag,
 988            PlaySessionId = playSessionId,
 989            SegmentContainer = segmentContainer,
 990            SegmentLength = segmentLength,
 991            MinSegments = minSegments,
 992            MediaSourceId = mediaSourceId,
 993            DeviceId = deviceId,
 994            AudioCodec = audioCodec,
 995            EnableAutoStreamCopy = enableAutoStreamCopy ?? true,
 996            AllowAudioStreamCopy = allowAudioStreamCopy ?? true,
 997            AllowVideoStreamCopy = allowVideoStreamCopy ?? true,
 998            BreakOnNonKeyFrames = breakOnNonKeyFrames ?? false,
 999            AudioSampleRate = audioSampleRate,
 1000            MaxAudioChannels = maxAudioChannels,
 1001            AudioBitRate = audioBitRate ?? maxStreamingBitrate,
 1002            MaxAudioBitDepth = maxAudioBitDepth,
 1003            AudioChannels = audioChannels,
 1004            Profile = profile,
 1005            Level = level,
 1006            Framerate = framerate,
 1007            MaxFramerate = maxFramerate,
 1008            CopyTimestamps = copyTimestamps ?? false,
 1009            StartTimeTicks = startTimeTicks,
 1010            Width = width,
 1011            Height = height,
 1012            VideoBitRate = videoBitRate,
 1013            SubtitleStreamIndex = subtitleStreamIndex,
 1014            SubtitleMethod = subtitleMethod ?? SubtitleDeliveryMethod.External,
 1015            MaxRefFrames = maxRefFrames,
 1016            MaxVideoBitDepth = maxVideoBitDepth,
 1017            RequireAvc = requireAvc ?? false,
 1018            DeInterlace = deInterlace ?? false,
 1019            RequireNonAnamorphic = requireNonAnamorphic ?? false,
 1020            TranscodingMaxAudioChannels = transcodingMaxAudioChannels,
 1021            CpuCoreLimit = cpuCoreLimit,
 1022            LiveStreamId = liveStreamId,
 1023            EnableMpegtsM2TsMode = enableMpegtsM2TsMode ?? false,
 1024            VideoCodec = videoCodec,
 1025            SubtitleCodec = subtitleCodec,
 1026            TranscodeReasons = transcodeReasons,
 1027            AudioStreamIndex = audioStreamIndex,
 1028            VideoStreamIndex = videoStreamIndex,
 1029            Context = context ?? EncodingContext.Streaming,
 1030            StreamOptions = streamOptions,
 1031            EnableAudioVbrEncoding = enableAudioVbrEncoding,
 1032            AlwaysBurnInSubtitleWhenTranscoding = false
 1033        };
 1034
 1035        return await GetVariantPlaylistInternal(streamingRequest, cancellationTokenSource)
 1036            .ConfigureAwait(false);
 1037    }
 1038
 1039    /// <summary>
 1040    /// Gets a video stream using HTTP live streaming.
 1041    /// </summary>
 1042    /// <param name="itemId">The item id.</param>
 1043    /// <param name="playlistId">The playlist id.</param>
 1044    /// <param name="segmentId">The segment id.</param>
 1045    /// <param name="container">The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, 
 1046    /// <param name="runtimeTicks">The position of the requested segment in ticks.</param>
 1047    /// <param name="actualSegmentLengthTicks">The length of the requested segment in ticks.</param>
 1048    /// <param name="static">Optional. If true, the original file will be streamed statically without any encoding. Use 
 1049    /// <param name="params">The streaming parameters.</param>
 1050    /// <param name="tag">The tag.</param>
 1051    /// <param name="deviceProfileId">Optional. The dlna device profile id to utilize.</param>
 1052    /// <param name="playSessionId">The play session id.</param>
 1053    /// <param name="segmentContainer">The segment container.</param>
 1054    /// <param name="segmentLength">The desired segment length.</param>
 1055    /// <param name="minSegments">The minimum number of segments.</param>
 1056    /// <param name="mediaSourceId">The media version id, if playing an alternate version.</param>
 1057    /// <param name="deviceId">The device id of the client requesting. Used to stop encoding processes when needed.</par
 1058    /// <param name="audioCodec">Optional. Specify an audio codec to encode to, e.g. mp3.</param>
 1059    /// <param name="enableAutoStreamCopy">Whether or not to allow automatic stream copy if requested values match the o
 1060    /// <param name="allowVideoStreamCopy">Whether or not to allow copying of the video stream url.</param>
 1061    /// <param name="allowAudioStreamCopy">Whether or not to allow copying of the audio stream url.</param>
 1062    /// <param name="breakOnNonKeyFrames">Optional. Whether to break on non key frames.</param>
 1063    /// <param name="audioSampleRate">Optional. Specify a specific audio sample rate, e.g. 44100.</param>
 1064    /// <param name="maxAudioBitDepth">Optional. The maximum audio bit depth.</param>
 1065    /// <param name="audioBitRate">Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be
 1066    /// <param name="audioChannels">Optional. Specify a specific number of audio channels to encode to, e.g. 2.</param>
 1067    /// <param name="maxAudioChannels">Optional. Specify a maximum number of audio channels to encode to, e.g. 2.</param
 1068    /// <param name="profile">Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, 
 1069    /// <param name="level">Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.</param>
 1070    /// <param name="framerate">Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be
 1071    /// <param name="maxFramerate">Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally thi
 1072    /// <param name="copyTimestamps">Whether or not to copy timestamps when transcoding with an offset. Defaults to fals
 1073    /// <param name="startTimeTicks">Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.</param>
 1074    /// <param name="width">Optional. The fixed horizontal resolution of the encoded video.</param>
 1075    /// <param name="height">Optional. The fixed vertical resolution of the encoded video.</param>
 1076    /// <param name="maxWidth">Optional. The maximum horizontal resolution of the encoded video.</param>
 1077    /// <param name="maxHeight">Optional. The maximum vertical resolution of the encoded video.</param>
 1078    /// <param name="videoBitRate">Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be 
 1079    /// <param name="subtitleStreamIndex">Optional. The index of the subtitle stream to use. If omitted no subtitles wil
 1080    /// <param name="subtitleMethod">Optional. Specify the subtitle delivery method.</param>
 1081    /// <param name="maxRefFrames">Optional.</param>
 1082    /// <param name="maxVideoBitDepth">Optional. The maximum video bit depth.</param>
 1083    /// <param name="requireAvc">Optional. Whether to require avc.</param>
 1084    /// <param name="deInterlace">Optional. Whether to deinterlace the video.</param>
 1085    /// <param name="requireNonAnamorphic">Optional. Whether to require a non anamorphic stream.</param>
 1086    /// <param name="transcodingMaxAudioChannels">Optional. The maximum number of audio channels to transcode.</param>
 1087    /// <param name="cpuCoreLimit">Optional. The limit of how many cpu cores to use.</param>
 1088    /// <param name="liveStreamId">The live stream id.</param>
 1089    /// <param name="enableMpegtsM2TsMode">Optional. Whether to enable the MpegtsM2Ts mode.</param>
 1090    /// <param name="videoCodec">Optional. Specify a video codec to encode to, e.g. h264.</param>
 1091    /// <param name="subtitleCodec">Optional. Specify a subtitle codec to encode to.</param>
 1092    /// <param name="transcodeReasons">Optional. The transcoding reason.</param>
 1093    /// <param name="audioStreamIndex">Optional. The index of the audio stream to use. If omitted the first audio stream
 1094    /// <param name="videoStreamIndex">Optional. The index of the video stream to use. If omitted the first video stream
 1095    /// <param name="context">Optional. The <see cref="EncodingContext"/>.</param>
 1096    /// <param name="streamOptions">Optional. The streaming options.</param>
 1097    /// <param name="enableAudioVbrEncoding">Optional. Whether to enable Audio Encoding.</param>
 1098    /// <param name="alwaysBurnInSubtitleWhenTranscoding">Whether to always burn in subtitles when transcoding.</param>
 1099    /// <response code="200">Video stream returned.</response>
 1100    /// <returns>A <see cref="FileResult"/> containing the audio file.</returns>
 1101    [HttpGet("Videos/{itemId}/hls1/{playlistId}/{segmentId}.{container}")]
 1102    [ProducesResponseType(StatusCodes.Status200OK)]
 1103    [ProducesVideoFile]
 1104    [SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId = "playlistId", Justification =
 1105    public async Task<ActionResult> GetHlsVideoSegment(
 1106        [FromRoute, Required] Guid itemId,
 1107        [FromRoute, Required] string playlistId,
 1108        [FromRoute, Required] int segmentId,
 1109        [FromRoute, Required] string container,
 1110        [FromQuery, Required] long runtimeTicks,
 1111        [FromQuery, Required] long actualSegmentLengthTicks,
 1112        [FromQuery] bool? @static,
 1113        [FromQuery] string? @params,
 1114        [FromQuery] string? tag,
 1115        [FromQuery, ParameterObsolete] string? deviceProfileId,
 1116        [FromQuery] string? playSessionId,
 1117        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? segmentContainer,
 1118        [FromQuery] int? segmentLength,
 1119        [FromQuery] int? minSegments,
 1120        [FromQuery] string? mediaSourceId,
 1121        [FromQuery] string? deviceId,
 1122        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? audioCodec,
 1123        [FromQuery] bool? enableAutoStreamCopy,
 1124        [FromQuery] bool? allowVideoStreamCopy,
 1125        [FromQuery] bool? allowAudioStreamCopy,
 1126        [FromQuery] bool? breakOnNonKeyFrames,
 1127        [FromQuery] int? audioSampleRate,
 1128        [FromQuery] int? maxAudioBitDepth,
 1129        [FromQuery] int? audioBitRate,
 1130        [FromQuery] int? audioChannels,
 1131        [FromQuery] int? maxAudioChannels,
 1132        [FromQuery] string? profile,
 1133        [FromQuery] string? level,
 1134        [FromQuery] float? framerate,
 1135        [FromQuery] float? maxFramerate,
 1136        [FromQuery] bool? copyTimestamps,
 1137        [FromQuery] long? startTimeTicks,
 1138        [FromQuery] int? width,
 1139        [FromQuery] int? height,
 1140        [FromQuery] int? maxWidth,
 1141        [FromQuery] int? maxHeight,
 1142        [FromQuery] int? videoBitRate,
 1143        [FromQuery] int? subtitleStreamIndex,
 1144        [FromQuery] SubtitleDeliveryMethod? subtitleMethod,
 1145        [FromQuery] int? maxRefFrames,
 1146        [FromQuery] int? maxVideoBitDepth,
 1147        [FromQuery] bool? requireAvc,
 1148        [FromQuery] bool? deInterlace,
 1149        [FromQuery] bool? requireNonAnamorphic,
 1150        [FromQuery] int? transcodingMaxAudioChannels,
 1151        [FromQuery] int? cpuCoreLimit,
 1152        [FromQuery] string? liveStreamId,
 1153        [FromQuery] bool? enableMpegtsM2TsMode,
 1154        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? videoCodec,
 1155        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? subtitleCodec,
 1156        [FromQuery] string? transcodeReasons,
 1157        [FromQuery] int? audioStreamIndex,
 1158        [FromQuery] int? videoStreamIndex,
 1159        [FromQuery] EncodingContext? context,
 1160        [FromQuery] Dictionary<string, string> streamOptions,
 1161        [FromQuery] bool enableAudioVbrEncoding = true,
 1162        [FromQuery] bool alwaysBurnInSubtitleWhenTranscoding = false)
 1163    {
 1164        var streamingRequest = new VideoRequestDto
 1165        {
 1166            Id = itemId,
 1167            CurrentRuntimeTicks = runtimeTicks,
 1168            ActualSegmentLengthTicks = actualSegmentLengthTicks,
 1169            Container = container,
 1170            Static = @static ?? false,
 1171            Params = @params,
 1172            Tag = tag,
 1173            PlaySessionId = playSessionId,
 1174            SegmentContainer = segmentContainer,
 1175            SegmentLength = segmentLength,
 1176            MinSegments = minSegments,
 1177            MediaSourceId = mediaSourceId,
 1178            DeviceId = deviceId,
 1179            AudioCodec = audioCodec,
 1180            EnableAutoStreamCopy = enableAutoStreamCopy ?? true,
 1181            AllowAudioStreamCopy = allowAudioStreamCopy ?? true,
 1182            AllowVideoStreamCopy = allowVideoStreamCopy ?? true,
 1183            BreakOnNonKeyFrames = breakOnNonKeyFrames ?? false,
 1184            AudioSampleRate = audioSampleRate,
 1185            MaxAudioChannels = maxAudioChannels,
 1186            AudioBitRate = audioBitRate,
 1187            MaxAudioBitDepth = maxAudioBitDepth,
 1188            AudioChannels = audioChannels,
 1189            Profile = profile,
 1190            Level = level,
 1191            Framerate = framerate,
 1192            MaxFramerate = maxFramerate,
 1193            CopyTimestamps = copyTimestamps ?? false,
 1194            StartTimeTicks = startTimeTicks,
 1195            Width = width,
 1196            Height = height,
 1197            MaxWidth = maxWidth,
 1198            MaxHeight = maxHeight,
 1199            VideoBitRate = videoBitRate,
 1200            SubtitleStreamIndex = subtitleStreamIndex,
 1201            SubtitleMethod = subtitleMethod ?? SubtitleDeliveryMethod.External,
 1202            MaxRefFrames = maxRefFrames,
 1203            MaxVideoBitDepth = maxVideoBitDepth,
 1204            RequireAvc = requireAvc ?? false,
 1205            DeInterlace = deInterlace ?? false,
 1206            RequireNonAnamorphic = requireNonAnamorphic ?? false,
 1207            TranscodingMaxAudioChannels = transcodingMaxAudioChannels,
 1208            CpuCoreLimit = cpuCoreLimit,
 1209            LiveStreamId = liveStreamId,
 1210            EnableMpegtsM2TsMode = enableMpegtsM2TsMode ?? false,
 1211            VideoCodec = videoCodec,
 1212            SubtitleCodec = subtitleCodec,
 1213            TranscodeReasons = transcodeReasons,
 1214            AudioStreamIndex = audioStreamIndex,
 1215            VideoStreamIndex = videoStreamIndex,
 1216            Context = context ?? EncodingContext.Streaming,
 1217            StreamOptions = streamOptions,
 1218            EnableAudioVbrEncoding = enableAudioVbrEncoding,
 1219            AlwaysBurnInSubtitleWhenTranscoding = alwaysBurnInSubtitleWhenTranscoding
 1220        };
 1221
 1222        return await GetDynamicSegment(streamingRequest, segmentId)
 1223            .ConfigureAwait(false);
 1224    }
 1225
 1226    /// <summary>
 1227    /// Gets a video stream using HTTP live streaming.
 1228    /// </summary>
 1229    /// <param name="itemId">The item id.</param>
 1230    /// <param name="playlistId">The playlist id.</param>
 1231    /// <param name="segmentId">The segment id.</param>
 1232    /// <param name="container">The video container. Possible values are: ts, webm, asf, wmv, ogv, mp4, m4v, mkv, mpeg, 
 1233    /// <param name="runtimeTicks">The position of the requested segment in ticks.</param>
 1234    /// <param name="actualSegmentLengthTicks">The length of the requested segment in ticks.</param>
 1235    /// <param name="static">Optional. If true, the original file will be streamed statically without any encoding. Use 
 1236    /// <param name="params">The streaming parameters.</param>
 1237    /// <param name="tag">The tag.</param>
 1238    /// <param name="deviceProfileId">Optional. The dlna device profile id to utilize.</param>
 1239    /// <param name="playSessionId">The play session id.</param>
 1240    /// <param name="segmentContainer">The segment container.</param>
 1241    /// <param name="segmentLength">The segment length.</param>
 1242    /// <param name="minSegments">The minimum number of segments.</param>
 1243    /// <param name="mediaSourceId">The media version id, if playing an alternate version.</param>
 1244    /// <param name="deviceId">The device id of the client requesting. Used to stop encoding processes when needed.</par
 1245    /// <param name="audioCodec">Optional. Specify an audio codec to encode to, e.g. mp3.</param>
 1246    /// <param name="enableAutoStreamCopy">Whether or not to allow automatic stream copy if requested values match the o
 1247    /// <param name="allowVideoStreamCopy">Whether or not to allow copying of the video stream url.</param>
 1248    /// <param name="allowAudioStreamCopy">Whether or not to allow copying of the audio stream url.</param>
 1249    /// <param name="breakOnNonKeyFrames">Optional. Whether to break on non key frames.</param>
 1250    /// <param name="audioSampleRate">Optional. Specify a specific audio sample rate, e.g. 44100.</param>
 1251    /// <param name="maxAudioBitDepth">Optional. The maximum audio bit depth.</param>
 1252    /// <param name="maxStreamingBitrate">Optional. The maximum streaming bitrate.</param>
 1253    /// <param name="audioBitRate">Optional. Specify an audio bitrate to encode to, e.g. 128000. If omitted this will be
 1254    /// <param name="audioChannels">Optional. Specify a specific number of audio channels to encode to, e.g. 2.</param>
 1255    /// <param name="maxAudioChannels">Optional. Specify a maximum number of audio channels to encode to, e.g. 2.</param
 1256    /// <param name="profile">Optional. Specify a specific an encoder profile (varies by encoder), e.g. main, baseline, 
 1257    /// <param name="level">Optional. Specify a level for the encoder profile (varies by encoder), e.g. 3, 3.1.</param>
 1258    /// <param name="framerate">Optional. A specific video framerate to encode to, e.g. 23.976. Generally this should be
 1259    /// <param name="maxFramerate">Optional. A specific maximum video framerate to encode to, e.g. 23.976. Generally thi
 1260    /// <param name="copyTimestamps">Whether or not to copy timestamps when transcoding with an offset. Defaults to fals
 1261    /// <param name="startTimeTicks">Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.</param>
 1262    /// <param name="width">Optional. The fixed horizontal resolution of the encoded video.</param>
 1263    /// <param name="height">Optional. The fixed vertical resolution of the encoded video.</param>
 1264    /// <param name="videoBitRate">Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this will be 
 1265    /// <param name="subtitleStreamIndex">Optional. The index of the subtitle stream to use. If omitted no subtitles wil
 1266    /// <param name="subtitleMethod">Optional. Specify the subtitle delivery method.</param>
 1267    /// <param name="maxRefFrames">Optional.</param>
 1268    /// <param name="maxVideoBitDepth">Optional. The maximum video bit depth.</param>
 1269    /// <param name="requireAvc">Optional. Whether to require avc.</param>
 1270    /// <param name="deInterlace">Optional. Whether to deinterlace the video.</param>
 1271    /// <param name="requireNonAnamorphic">Optional. Whether to require a non anamorphic stream.</param>
 1272    /// <param name="transcodingMaxAudioChannels">Optional. The maximum number of audio channels to transcode.</param>
 1273    /// <param name="cpuCoreLimit">Optional. The limit of how many cpu cores to use.</param>
 1274    /// <param name="liveStreamId">The live stream id.</param>
 1275    /// <param name="enableMpegtsM2TsMode">Optional. Whether to enable the MpegtsM2Ts mode.</param>
 1276    /// <param name="videoCodec">Optional. Specify a video codec to encode to, e.g. h264.</param>
 1277    /// <param name="subtitleCodec">Optional. Specify a subtitle codec to encode to.</param>
 1278    /// <param name="transcodeReasons">Optional. The transcoding reason.</param>
 1279    /// <param name="audioStreamIndex">Optional. The index of the audio stream to use. If omitted the first audio stream
 1280    /// <param name="videoStreamIndex">Optional. The index of the video stream to use. If omitted the first video stream
 1281    /// <param name="context">Optional. The <see cref="EncodingContext"/>.</param>
 1282    /// <param name="streamOptions">Optional. The streaming options.</param>
 1283    /// <param name="enableAudioVbrEncoding">Optional. Whether to enable Audio Encoding.</param>
 1284    /// <response code="200">Video stream returned.</response>
 1285    /// <returns>A <see cref="FileResult"/> containing the audio file.</returns>
 1286    [HttpGet("Audio/{itemId}/hls1/{playlistId}/{segmentId}.{container}")]
 1287    [ProducesResponseType(StatusCodes.Status200OK)]
 1288    [ProducesAudioFile]
 1289    [SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId = "playlistId", Justification =
 1290    public async Task<ActionResult> GetHlsAudioSegment(
 1291        [FromRoute, Required] Guid itemId,
 1292        [FromRoute, Required] string playlistId,
 1293        [FromRoute, Required] int segmentId,
 1294        [FromRoute, Required] string container,
 1295        [FromQuery, Required] long runtimeTicks,
 1296        [FromQuery, Required] long actualSegmentLengthTicks,
 1297        [FromQuery] bool? @static,
 1298        [FromQuery] string? @params,
 1299        [FromQuery] string? tag,
 1300        [FromQuery, ParameterObsolete] string? deviceProfileId,
 1301        [FromQuery] string? playSessionId,
 1302        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? segmentContainer,
 1303        [FromQuery] int? segmentLength,
 1304        [FromQuery] int? minSegments,
 1305        [FromQuery] string? mediaSourceId,
 1306        [FromQuery] string? deviceId,
 1307        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? audioCodec,
 1308        [FromQuery] bool? enableAutoStreamCopy,
 1309        [FromQuery] bool? allowVideoStreamCopy,
 1310        [FromQuery] bool? allowAudioStreamCopy,
 1311        [FromQuery] bool? breakOnNonKeyFrames,
 1312        [FromQuery] int? audioSampleRate,
 1313        [FromQuery] int? maxAudioBitDepth,
 1314        [FromQuery] int? maxStreamingBitrate,
 1315        [FromQuery] int? audioBitRate,
 1316        [FromQuery] int? audioChannels,
 1317        [FromQuery] int? maxAudioChannels,
 1318        [FromQuery] string? profile,
 1319        [FromQuery] string? level,
 1320        [FromQuery] float? framerate,
 1321        [FromQuery] float? maxFramerate,
 1322        [FromQuery] bool? copyTimestamps,
 1323        [FromQuery] long? startTimeTicks,
 1324        [FromQuery] int? width,
 1325        [FromQuery] int? height,
 1326        [FromQuery] int? videoBitRate,
 1327        [FromQuery] int? subtitleStreamIndex,
 1328        [FromQuery] SubtitleDeliveryMethod? subtitleMethod,
 1329        [FromQuery] int? maxRefFrames,
 1330        [FromQuery] int? maxVideoBitDepth,
 1331        [FromQuery] bool? requireAvc,
 1332        [FromQuery] bool? deInterlace,
 1333        [FromQuery] bool? requireNonAnamorphic,
 1334        [FromQuery] int? transcodingMaxAudioChannels,
 1335        [FromQuery] int? cpuCoreLimit,
 1336        [FromQuery] string? liveStreamId,
 1337        [FromQuery] bool? enableMpegtsM2TsMode,
 1338        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? videoCodec,
 1339        [FromQuery] [RegularExpression(EncodingHelper.ValidationRegex)] string? subtitleCodec,
 1340        [FromQuery] string? transcodeReasons,
 1341        [FromQuery] int? audioStreamIndex,
 1342        [FromQuery] int? videoStreamIndex,
 1343        [FromQuery] EncodingContext? context,
 1344        [FromQuery] Dictionary<string, string> streamOptions,
 1345        [FromQuery] bool enableAudioVbrEncoding = true)
 1346    {
 1347        var streamingRequest = new StreamingRequestDto
 1348        {
 1349            Id = itemId,
 1350            Container = container,
 1351            CurrentRuntimeTicks = runtimeTicks,
 1352            ActualSegmentLengthTicks = actualSegmentLengthTicks,
 1353            Static = @static ?? false,
 1354            Params = @params,
 1355            Tag = tag,
 1356            PlaySessionId = playSessionId,
 1357            SegmentContainer = segmentContainer,
 1358            SegmentLength = segmentLength,
 1359            MinSegments = minSegments,
 1360            MediaSourceId = mediaSourceId,
 1361            DeviceId = deviceId,
 1362            AudioCodec = audioCodec,
 1363            EnableAutoStreamCopy = enableAutoStreamCopy ?? true,
 1364            AllowAudioStreamCopy = allowAudioStreamCopy ?? true,
 1365            AllowVideoStreamCopy = allowVideoStreamCopy ?? true,
 1366            BreakOnNonKeyFrames = breakOnNonKeyFrames ?? false,
 1367            AudioSampleRate = audioSampleRate,
 1368            MaxAudioChannels = maxAudioChannels,
 1369            AudioBitRate = audioBitRate ?? maxStreamingBitrate,
 1370            MaxAudioBitDepth = maxAudioBitDepth,
 1371            AudioChannels = audioChannels,
 1372            Profile = profile,
 1373            Level = level,
 1374            Framerate = framerate,
 1375            MaxFramerate = maxFramerate,
 1376            CopyTimestamps = copyTimestamps ?? false,
 1377            StartTimeTicks = startTimeTicks,
 1378            Width = width,
 1379            Height = height,
 1380            VideoBitRate = videoBitRate,
 1381            SubtitleStreamIndex = subtitleStreamIndex,
 1382            SubtitleMethod = subtitleMethod ?? SubtitleDeliveryMethod.External,
 1383            MaxRefFrames = maxRefFrames,
 1384            MaxVideoBitDepth = maxVideoBitDepth,
 1385            RequireAvc = requireAvc ?? false,
 1386            DeInterlace = deInterlace ?? false,
 1387            RequireNonAnamorphic = requireNonAnamorphic ?? false,
 1388            TranscodingMaxAudioChannels = transcodingMaxAudioChannels,
 1389            CpuCoreLimit = cpuCoreLimit,
 1390            LiveStreamId = liveStreamId,
 1391            EnableMpegtsM2TsMode = enableMpegtsM2TsMode ?? false,
 1392            VideoCodec = videoCodec,
 1393            SubtitleCodec = subtitleCodec,
 1394            TranscodeReasons = transcodeReasons,
 1395            AudioStreamIndex = audioStreamIndex,
 1396            VideoStreamIndex = videoStreamIndex,
 1397            Context = context ?? EncodingContext.Streaming,
 1398            StreamOptions = streamOptions,
 1399            EnableAudioVbrEncoding = enableAudioVbrEncoding,
 1400            AlwaysBurnInSubtitleWhenTranscoding = false
 1401        };
 1402
 1403        return await GetDynamicSegment(streamingRequest, segmentId)
 1404            .ConfigureAwait(false);
 1405    }
 1406
 1407    private async Task<ActionResult> GetVariantPlaylistInternal(StreamingRequestDto streamingRequest, CancellationTokenS
 1408    {
 1409        using var state = await StreamingHelpers.GetStreamingState(
 1410                streamingRequest,
 1411                HttpContext,
 1412                _mediaSourceManager,
 1413                _userManager,
 1414                _libraryManager,
 1415                _serverConfigurationManager,
 1416                _mediaEncoder,
 1417                _encodingHelper,
 1418                _transcodeManager,
 1419                TranscodingJobType,
 1420                cancellationTokenSource.Token)
 1421            .ConfigureAwait(false);
 1422
 1423        var request = new CreateMainPlaylistRequest(
 1424            state.MediaPath,
 1425            state.SegmentLength * 1000,
 1426            state.RunTimeTicks ?? 0,
 1427            state.Request.SegmentContainer ?? string.Empty,
 1428            "hls1/main/",
 1429            Request.QueryString.ToString(),
 1430            EncodingHelper.IsCopyCodec(state.OutputVideoCodec));
 1431        var playlist = _dynamicHlsPlaylistGenerator.CreateMainPlaylist(request);
 1432
 1433        return new FileContentResult(Encoding.UTF8.GetBytes(playlist), MimeTypes.GetMimeType("playlist.m3u8"));
 1434    }
 1435
 1436    private async Task<ActionResult> GetDynamicSegment(StreamingRequestDto streamingRequest, int segmentId)
 1437    {
 1438        if ((streamingRequest.StartTimeTicks ?? 0) > 0)
 1439        {
 1440            throw new ArgumentException("StartTimeTicks is not allowed.");
 1441        }
 1442
 1443        // CTS lifecycle is managed internally.
 1444        var cancellationTokenSource = new CancellationTokenSource();
 1445        var cancellationToken = cancellationTokenSource.Token;
 1446
 1447        var state = await StreamingHelpers.GetStreamingState(
 1448                streamingRequest,
 1449                HttpContext,
 1450                _mediaSourceManager,
 1451                _userManager,
 1452                _libraryManager,
 1453                _serverConfigurationManager,
 1454                _mediaEncoder,
 1455                _encodingHelper,
 1456                _transcodeManager,
 1457                TranscodingJobType,
 1458                cancellationToken)
 1459            .ConfigureAwait(false);
 1460
 1461        var playlistPath = Path.ChangeExtension(state.OutputFilePath, ".m3u8");
 1462
 1463        var segmentPath = GetSegmentPath(state, playlistPath, segmentId);
 1464
 1465        var segmentExtension = EncodingHelper.GetSegmentFileExtension(state.Request.SegmentContainer);
 1466
 1467        TranscodingJob? job;
 1468
 1469        if (System.IO.File.Exists(segmentPath))
 1470        {
 1471            job = _transcodeManager.OnTranscodeBeginRequest(playlistPath, TranscodingJobType);
 1472            _logger.LogDebug("returning {0} [it exists, try 1]", segmentPath);
 1473            return await GetSegmentResult(state, playlistPath, segmentPath, segmentExtension, segmentId, job, cancellati
 1474        }
 1475
 1476        using (await _transcodeManager.LockAsync(playlistPath, cancellationToken).ConfigureAwait(false))
 1477        {
 1478            var startTranscoding = false;
 1479            if (System.IO.File.Exists(segmentPath))
 1480            {
 1481                job = _transcodeManager.OnTranscodeBeginRequest(playlistPath, TranscodingJobType);
 1482                _logger.LogDebug("returning {0} [it exists, try 2]", segmentPath);
 1483                return await GetSegmentResult(state, playlistPath, segmentPath, segmentExtension, segmentId, job, cancel
 1484            }
 1485
 1486            var currentTranscodingIndex = GetCurrentTranscodingIndex(playlistPath, segmentExtension);
 1487            var segmentGapRequiringTranscodingChange = 24 / state.SegmentLength;
 1488
 1489            if (segmentId == -1)
 1490            {
 1491                _logger.LogDebug("Starting transcoding because fmp4 init file is being requested");
 1492                startTranscoding = true;
 1493                segmentId = 0;
 1494            }
 1495            else if (currentTranscodingIndex is null)
 1496            {
 1497                _logger.LogDebug("Starting transcoding because currentTranscodingIndex=null");
 1498                startTranscoding = true;
 1499            }
 1500            else if (segmentId < currentTranscodingIndex.Value)
 1501            {
 1502                _logger.LogDebug("Starting transcoding because requestedIndex={0} and currentTranscodingIndex={1}", segm
 1503                startTranscoding = true;
 1504            }
 1505            else if (segmentId - currentTranscodingIndex.Value > segmentGapRequiringTranscodingChange)
 1506            {
 1507                _logger.LogDebug("Starting transcoding because segmentGap is {0} and max allowed gap is {1}. requestedIn
 1508                startTranscoding = true;
 1509            }
 1510
 1511            if (startTranscoding)
 1512            {
 1513                // If the playlist doesn't already exist, startup ffmpeg
 1514                try
 1515                {
 1516                    await _transcodeManager.KillTranscodingJobs(streamingRequest.DeviceId, streamingRequest.PlaySessionI
 1517                        .ConfigureAwait(false);
 1518
 1519                    if (currentTranscodingIndex.HasValue)
 1520                    {
 1521                        await DeleteLastFile(playlistPath, segmentExtension, 0).ConfigureAwait(false);
 1522                    }
 1523
 1524                    streamingRequest.StartTimeTicks = streamingRequest.CurrentRuntimeTicks;
 1525
 1526                    state.WaitForPath = segmentPath;
 1527                    job = await _transcodeManager.StartFfMpeg(
 1528                        state,
 1529                        playlistPath,
 1530                        GetCommandLineArguments(playlistPath, state, false, segmentId),
 1531                        Request.HttpContext.User.GetUserId(),
 1532                        TranscodingJobType,
 1533                        cancellationTokenSource).ConfigureAwait(false);
 1534                }
 1535                catch
 1536                {
 1537                    state.Dispose();
 1538                    throw;
 1539                }
 1540
 1541                // await WaitForMinimumSegmentCount(playlistPath, 1, cancellationTokenSource.Token).ConfigureAwait(false
 1542            }
 1543            else
 1544            {
 1545                job = _transcodeManager.OnTranscodeBeginRequest(playlistPath, TranscodingJobType);
 1546                if (job?.TranscodingThrottler is not null)
 1547                {
 1548                    await job.TranscodingThrottler.UnpauseTranscoding().ConfigureAwait(false);
 1549                }
 1550            }
 1551        }
 1552
 1553        _logger.LogDebug("returning {0} [general case]", segmentPath);
 1554        job ??= _transcodeManager.OnTranscodeBeginRequest(playlistPath, TranscodingJobType);
 1555        return await GetSegmentResult(state, playlistPath, segmentPath, segmentExtension, segmentId, job, cancellationTo
 1556    }
 1557
 1558    private static double[] GetSegmentLengths(StreamState state)
 01559        => GetSegmentLengthsInternal(state.RunTimeTicks ?? 0, state.SegmentLength);
 1560
 1561    internal static double[] GetSegmentLengthsInternal(long runtimeTicks, int segmentlength)
 1562    {
 51563        var segmentLengthTicks = TimeSpan.FromSeconds(segmentlength).Ticks;
 51564        var wholeSegments = runtimeTicks / segmentLengthTicks;
 51565        var remainingTicks = runtimeTicks % segmentLengthTicks;
 1566
 51567        var segmentsLen = wholeSegments + (remainingTicks == 0 ? 0 : 1);
 51568        var segments = new double[segmentsLen];
 141569        for (int i = 0; i < wholeSegments; i++)
 1570        {
 21571            segments[i] = segmentlength;
 1572        }
 1573
 51574        if (remainingTicks != 0)
 1575        {
 31576            segments[^1] = TimeSpan.FromTicks(remainingTicks).TotalSeconds;
 1577        }
 1578
 51579        return segments;
 1580    }
 1581
 1582    private string GetCommandLineArguments(string outputPath, StreamState state, bool isEventPlaylist, int startNumber)
 1583    {
 01584        var videoCodec = _encodingHelper.GetVideoEncoder(state, _encodingOptions);
 01585        var threads = EncodingHelper.GetNumberOfThreads(state, _encodingOptions, videoCodec);
 1586
 01587        if (state.BaseRequest.BreakOnNonKeyFrames)
 1588        {
 1589            // FIXME: this is actually a workaround, as ideally it really should be the client which decides whether non
 1590            //        breakpoints are supported; but current implementation always uses "ffmpeg input seeking" which is 
 1591            //        to produce a missing part of video stream before first keyframe is encountered, which may lead to
 1592            //        awkward cases like a few starting HLS segments having no video whatsoever, which breaks hls.js
 01593            _logger.LogInformation("Current HLS implementation doesn't support non-keyframe breaks but one is requested,
 01594            state.BaseRequest.BreakOnNonKeyFrames = false;
 1595        }
 1596
 01597        var mapArgs = state.IsOutputVideo ? _encodingHelper.GetMapArgs(state) : string.Empty;
 1598
 01599        var directory = Path.GetDirectoryName(outputPath) ?? throw new ArgumentException($"Provided path ({outputPath}) 
 01600        var outputFileNameWithoutExtension = Path.GetFileNameWithoutExtension(outputPath);
 01601        var outputPrefix = Path.Combine(directory, outputFileNameWithoutExtension);
 01602        var outputExtension = EncodingHelper.GetSegmentFileExtension(state.Request.SegmentContainer);
 01603        var outputTsArg = outputPrefix + "%d" + outputExtension;
 1604
 01605        var segmentFormat = string.Empty;
 01606        var segmentContainer = outputExtension.TrimStart('.');
 01607        var inputModifier = _encodingHelper.GetInputModifier(state, _encodingOptions, segmentContainer);
 1608
 01609        if (string.Equals(segmentContainer, "ts", StringComparison.OrdinalIgnoreCase))
 1610        {
 01611            segmentFormat = "mpegts";
 1612        }
 01613        else if (string.Equals(segmentContainer, "mp4", StringComparison.OrdinalIgnoreCase))
 1614        {
 01615            var outputFmp4HeaderArg = OperatingSystem.IsWindows() switch
 01616            {
 01617                // on Windows, the path of fmp4 header file needs to be configured
 01618                true => " -hls_fmp4_init_filename \"" + outputPrefix + "-1" + outputExtension + "\"",
 01619                // on Linux/Unix, ffmpeg generate fmp4 header file to m3u8 output folder
 01620                false => " -hls_fmp4_init_filename \"" + outputFileNameWithoutExtension + "-1" + outputExtension + "\""
 01621            };
 1622
 01623            segmentFormat = "fmp4" + outputFmp4HeaderArg;
 1624        }
 1625        else
 1626        {
 01627            _logger.LogError("Invalid HLS segment container: {SegmentContainer}, default to mpegts", segmentContainer);
 01628            segmentFormat = "mpegts";
 1629        }
 1630
 01631        var maxMuxingQueueSize = _encodingOptions.MaxMuxingQueueSize > 128
 01632            ? _encodingOptions.MaxMuxingQueueSize.ToString(CultureInfo.InvariantCulture)
 01633            : "128";
 1634
 01635        var baseUrlParam = string.Empty;
 01636        if (isEventPlaylist)
 1637        {
 01638            baseUrlParam = string.Format(
 01639                CultureInfo.InvariantCulture,
 01640                " -hls_base_url \"hls/{0}/\"",
 01641                Path.GetFileNameWithoutExtension(outputPath));
 1642        }
 1643
 01644        var hlsArguments = $"-hls_playlist_type {(isEventPlaylist ? "event" : "vod")} -hls_list_size 0";
 1645
 01646        return string.Format(
 01647            CultureInfo.InvariantCulture,
 01648            "{0} {1} -map_metadata -1 -map_chapters -1 -threads {2} {3} {4} {5} -copyts -avoid_negative_ts disabled -max
 01649            inputModifier,
 01650            _encodingHelper.GetInputArgument(state, _encodingOptions, segmentContainer),
 01651            threads,
 01652            mapArgs,
 01653            GetVideoArguments(state, startNumber, isEventPlaylist, segmentContainer),
 01654            GetAudioArguments(state),
 01655            maxMuxingQueueSize,
 01656            state.SegmentLength.ToString(CultureInfo.InvariantCulture),
 01657            segmentFormat,
 01658            startNumber.ToString(CultureInfo.InvariantCulture),
 01659            baseUrlParam,
 01660            EncodingUtils.NormalizePath(outputTsArg),
 01661            hlsArguments,
 01662            EncodingUtils.NormalizePath(outputPath)).Trim();
 1663    }
 1664
 1665    /// <summary>
 1666    /// Gets the audio arguments for transcoding.
 1667    /// </summary>
 1668    /// <param name="state">The <see cref="StreamState"/>.</param>
 1669    /// <returns>The command line arguments for audio transcoding.</returns>
 1670    private string GetAudioArguments(StreamState state)
 1671    {
 01672        if (state.AudioStream is null)
 1673        {
 01674            return string.Empty;
 1675        }
 1676
 01677        var audioCodec = _encodingHelper.GetAudioEncoder(state);
 01678        var bitStreamArgs = EncodingHelper.GetAudioBitStreamArguments(state, state.Request.SegmentContainer, state.Media
 1679
 1680        // opus, dts, truehd and flac (in FFmpeg 5 and older) are experimental in mp4 muxer
 01681        var strictArgs = string.Empty;
 01682        var actualOutputAudioCodec = state.ActualOutputAudioCodec;
 01683        if (string.Equals(actualOutputAudioCodec, "opus", StringComparison.OrdinalIgnoreCase)
 01684            || string.Equals(actualOutputAudioCodec, "dts", StringComparison.OrdinalIgnoreCase)
 01685            || string.Equals(actualOutputAudioCodec, "truehd", StringComparison.OrdinalIgnoreCase)
 01686            || (string.Equals(actualOutputAudioCodec, "flac", StringComparison.OrdinalIgnoreCase)
 01687                && _mediaEncoder.EncoderVersion < _minFFmpegFlacInMp4))
 1688        {
 01689            strictArgs = " -strict -2";
 1690        }
 1691
 01692        if (!state.IsOutputVideo)
 1693        {
 01694            var audioTranscodeParams = string.Empty;
 1695
 1696            // -vn to drop any video streams
 01697            audioTranscodeParams += "-vn";
 1698
 01699            if (EncodingHelper.IsCopyCodec(audioCodec))
 1700            {
 01701                return audioTranscodeParams + " -acodec copy" + bitStreamArgs + strictArgs;
 1702            }
 1703
 01704            audioTranscodeParams += " -acodec " + audioCodec + bitStreamArgs + strictArgs;
 1705
 01706            var audioBitrate = state.OutputAudioBitrate;
 01707            var audioChannels = state.OutputAudioChannels;
 1708
 01709            if (audioBitrate.HasValue && !EncodingHelper.LosslessAudioCodecs.Contains(state.ActualOutputAudioCodec, Stri
 1710            {
 01711                var vbrParam = _encodingHelper.GetAudioVbrModeParam(audioCodec, audioBitrate.Value, audioChannels ?? 2);
 01712                if (_encodingOptions.EnableAudioVbr && state.EnableAudioVbrEncoding && vbrParam is not null)
 1713                {
 01714                    audioTranscodeParams += vbrParam;
 1715                }
 1716                else
 1717                {
 01718                    audioTranscodeParams += " -ab " + audioBitrate.Value.ToString(CultureInfo.InvariantCulture);
 1719                }
 1720            }
 1721
 01722            if (audioChannels.HasValue)
 1723            {
 01724                audioTranscodeParams += " -ac " + audioChannels.Value.ToString(CultureInfo.InvariantCulture);
 1725            }
 1726
 01727            if (state.OutputAudioSampleRate.HasValue)
 1728            {
 01729                audioTranscodeParams += " -ar " + state.OutputAudioSampleRate.Value.ToString(CultureInfo.InvariantCultur
 1730            }
 1731
 01732            return audioTranscodeParams;
 1733        }
 1734
 01735        if (EncodingHelper.IsCopyCodec(audioCodec))
 1736        {
 01737            var videoCodec = _encodingHelper.GetVideoEncoder(state, _encodingOptions);
 01738            var copyArgs = "-codec:a:0 copy" + bitStreamArgs + strictArgs;
 1739
 01740            if (EncodingHelper.IsCopyCodec(videoCodec) && state.EnableBreakOnNonKeyFrames(videoCodec))
 1741            {
 01742                return copyArgs + " -copypriorss:a:0 0";
 1743            }
 1744
 01745            return copyArgs;
 1746        }
 1747
 01748        var args = "-codec:a:0 " + audioCodec + bitStreamArgs + strictArgs;
 1749
 01750        var channels = state.OutputAudioChannels;
 1751
 01752        var useDownMixAlgorithm = DownMixAlgorithmsHelper.AlgorithmFilterStrings.ContainsKey((_encodingOptions.DownMixSt
 1753
 01754        if (channels.HasValue
 01755            && (channels.Value != 2
 01756                || (state.AudioStream?.Channels is not null && !useDownMixAlgorithm)))
 1757        {
 01758            args += " -ac " + channels.Value;
 1759        }
 1760
 01761        var bitrate = state.OutputAudioBitrate;
 01762        if (bitrate.HasValue && !EncodingHelper.LosslessAudioCodecs.Contains(actualOutputAudioCodec, StringComparison.Or
 1763        {
 01764            var vbrParam = _encodingHelper.GetAudioVbrModeParam(audioCodec, bitrate.Value, channels ?? 2);
 01765            if (_encodingOptions.EnableAudioVbr && state.EnableAudioVbrEncoding && vbrParam is not null)
 1766            {
 01767                args += vbrParam;
 1768            }
 1769            else
 1770            {
 01771                args += " -ab " + bitrate.Value.ToString(CultureInfo.InvariantCulture);
 1772            }
 1773        }
 1774
 01775        if (state.OutputAudioSampleRate.HasValue)
 1776        {
 01777            args += " -ar " + state.OutputAudioSampleRate.Value.ToString(CultureInfo.InvariantCulture);
 1778        }
 01779        else if (state.AudioStream?.CodecTag is not null && state.AudioStream.CodecTag.Equals("ac-4", StringComparison.O
 1780        {
 1781            // ac-4 audio tends to have a super weird sample rate that will fail most encoders
 1782            // force resample it to 48KHz
 01783            args += " -ar 48000";
 1784        }
 1785
 01786        args += _encodingHelper.GetAudioFilterParam(state, _encodingOptions);
 1787
 01788        return args;
 1789    }
 1790
 1791    /// <summary>
 1792    /// Gets the video arguments for transcoding.
 1793    /// </summary>
 1794    /// <param name="state">The <see cref="StreamState"/>.</param>
 1795    /// <param name="startNumber">The first number in the hls sequence.</param>
 1796    /// <param name="isEventPlaylist">Whether the playlist is EVENT or VOD.</param>
 1797    /// <param name="segmentContainer">The segment container.</param>
 1798    /// <returns>The command line arguments for video transcoding.</returns>
 1799    private string GetVideoArguments(StreamState state, int startNumber, bool isEventPlaylist, string segmentContainer)
 1800    {
 01801        if (state.VideoStream is null)
 1802        {
 01803            return string.Empty;
 1804        }
 1805
 01806        if (!state.IsOutputVideo)
 1807        {
 01808            return string.Empty;
 1809        }
 1810
 01811        var codec = _encodingHelper.GetVideoEncoder(state, _encodingOptions);
 1812
 01813        var args = "-codec:v:0 " + codec;
 1814
 01815        var isActualOutputVideoCodecAv1 = string.Equals(state.ActualOutputVideoCodec, "av1", StringComparison.OrdinalIgn
 01816        var isActualOutputVideoCodecHevc = string.Equals(state.ActualOutputVideoCodec, "h265", StringComparison.OrdinalI
 01817                                           || string.Equals(state.ActualOutputVideoCodec, "hevc", StringComparison.Ordin
 1818
 01819        if (isActualOutputVideoCodecHevc || isActualOutputVideoCodecAv1)
 1820        {
 01821            var requestedRange = state.GetRequestedRangeTypes(state.ActualOutputVideoCodec);
 1822            // Clients reporting Dolby Vision capabilities with fallbacks may only support the fallback layer.
 1823            // Only enable Dolby Vision remuxing if the client explicitly declares support for profiles without fallback
 01824            var clientSupportsDoVi = requestedRange.Contains(VideoRangeType.DOVI.ToString(), StringComparison.OrdinalIgn
 01825            var videoIsDoVi = state.VideoStream.VideoRangeType is VideoRangeType.DOVI or VideoRangeType.DOVIWithHDR10 or
 1826
 01827            if (EncodingHelper.IsCopyCodec(codec)
 01828                && (videoIsDoVi && clientSupportsDoVi))
 1829            {
 01830                if (isActualOutputVideoCodecHevc)
 1831                {
 1832                    // Prefer dvh1 to dvhe
 01833                    args += " -tag:v:0 dvh1 -strict -2";
 1834                }
 01835                else if (isActualOutputVideoCodecAv1)
 1836                {
 01837                    args += " -tag:v:0 dav1 -strict -2";
 1838                }
 1839            }
 01840            else if (isActualOutputVideoCodecHevc)
 1841            {
 1842                // Prefer hvc1 to hev1
 01843                args += " -tag:v:0 hvc1";
 1844            }
 1845        }
 1846
 1847        // if  (state.EnableMpegtsM2TsMode)
 1848        // {
 1849        //     args += " -mpegts_m2ts_mode 1";
 1850        // }
 1851
 1852        // See if we can save come cpu cycles by avoiding encoding.
 01853        if (EncodingHelper.IsCopyCodec(codec))
 1854        {
 1855            // If h264_mp4toannexb is ever added, do not use it for live tv.
 01856            if (state.VideoStream is not null && !string.Equals(state.VideoStream.NalLengthSize, "0", StringComparison.O
 1857            {
 01858                string bitStreamArgs = EncodingHelper.GetBitStreamArgs(state.VideoStream);
 01859                if (!string.IsNullOrEmpty(bitStreamArgs))
 1860                {
 01861                    args += " " + bitStreamArgs;
 1862                }
 1863            }
 1864
 01865            args += " -start_at_zero";
 1866        }
 1867        else
 1868        {
 01869            args += _encodingHelper.GetVideoQualityParam(state, codec, _encodingOptions, isEventPlaylist ? DefaultEventE
 1870
 1871            // Set the key frame params for video encoding to match the hls segment time.
 01872            args += _encodingHelper.GetHlsVideoKeyFrameArguments(state, codec, state.SegmentLength, isEventPlaylist, sta
 1873
 1874            // Currently b-frames in libx265 breaks the FMP4-HLS playback on iOS, disable it for now.
 01875            if (string.Equals(codec, "libx265", StringComparison.OrdinalIgnoreCase)
 01876                && _mediaEncoder.EncoderVersion < _minFFmpegX265BframeInFmp4)
 1877            {
 01878                args += " -bf 0";
 1879            }
 1880
 1881            // video processing filters.
 01882            var videoProcessParam = _encodingHelper.GetVideoProcessingFilterParam(state, _encodingOptions, codec);
 1883
 01884            var negativeMapArgs = _encodingHelper.GetNegativeMapArgsByFilters(state, videoProcessParam);
 1885
 01886            args = negativeMapArgs + args + videoProcessParam;
 1887
 1888            // -start_at_zero is necessary to use with -ss when seeking,
 1889            // otherwise the target position cannot be determined.
 01890            if (state.SubtitleStream is not null)
 1891            {
 1892                // Disable start_at_zero for external graphical subs
 01893                if (!(state.SubtitleStream.IsExternal && !state.SubtitleStream.IsTextSubtitleStream))
 1894                {
 01895                    args += " -start_at_zero";
 1896                }
 1897            }
 1898        }
 1899
 1900        // TODO why was this not enabled for VOD?
 01901        if (isEventPlaylist && string.Equals(segmentContainer, "ts", StringComparison.OrdinalIgnoreCase))
 1902        {
 01903            args += " -flags -global_header";
 1904        }
 1905
 01906        if (!string.IsNullOrEmpty(state.OutputVideoSync))
 1907        {
 01908            args += EncodingHelper.GetVideoSyncOption(state.OutputVideoSync, _mediaEncoder.EncoderVersion);
 1909        }
 1910
 01911        args += _encodingHelper.GetOutputFFlags(state);
 1912
 01913        return args;
 1914    }
 1915
 1916    private string GetSegmentPath(StreamState state, string playlist, int index)
 1917    {
 01918        var folder = Path.GetDirectoryName(playlist) ?? throw new ArgumentException($"Provided path ({playlist}) is not 
 01919        var filename = Path.GetFileNameWithoutExtension(playlist);
 1920
 01921        return Path.Combine(folder, filename + index.ToString(CultureInfo.InvariantCulture) + EncodingHelper.GetSegmentF
 1922    }
 1923
 1924    private async Task<ActionResult> GetSegmentResult(
 1925        StreamState state,
 1926        string playlistPath,
 1927        string segmentPath,
 1928        string segmentExtension,
 1929        int segmentIndex,
 1930        TranscodingJob? transcodingJob,
 1931        CancellationToken cancellationToken)
 1932    {
 1933        var segmentExists = System.IO.File.Exists(segmentPath);
 1934        if (segmentExists)
 1935        {
 1936            if (transcodingJob is not null && transcodingJob.HasExited)
 1937            {
 1938                // Transcoding job is over, so assume all existing files are ready
 1939                _logger.LogDebug("serving up {0} as transcode is over", segmentPath);
 1940                return GetSegmentResult(state, segmentPath, transcodingJob);
 1941            }
 1942
 1943            var currentTranscodingIndex = GetCurrentTranscodingIndex(playlistPath, segmentExtension);
 1944
 1945            // If requested segment is less than transcoding position, we can't transcode backwards, so assume it's read
 1946            if (segmentIndex < currentTranscodingIndex)
 1947            {
 1948                _logger.LogDebug("serving up {0} as transcode index {1} is past requested point {2}", segmentPath, curre
 1949                return GetSegmentResult(state, segmentPath, transcodingJob);
 1950            }
 1951        }
 1952
 1953        var nextSegmentPath = GetSegmentPath(state, playlistPath, segmentIndex + 1);
 1954        if (transcodingJob is not null)
 1955        {
 1956            while (!cancellationToken.IsCancellationRequested && !transcodingJob.HasExited)
 1957            {
 1958                // To be considered ready, the segment file has to exist AND
 1959                // either the transcoding job should be done or next segment should also exist
 1960                if (segmentExists)
 1961                {
 1962                    if (transcodingJob.HasExited || System.IO.File.Exists(nextSegmentPath))
 1963                    {
 1964                        _logger.LogDebug("Serving up {SegmentPath} as it deemed ready", segmentPath);
 1965                        return GetSegmentResult(state, segmentPath, transcodingJob);
 1966                    }
 1967                }
 1968                else
 1969                {
 1970                    segmentExists = System.IO.File.Exists(segmentPath);
 1971                    if (segmentExists)
 1972                    {
 1973                        continue; // avoid unnecessary waiting if segment just became available
 1974                    }
 1975                }
 1976
 1977                await Task.Delay(100, cancellationToken).ConfigureAwait(false);
 1978            }
 1979
 1980            if (!System.IO.File.Exists(segmentPath))
 1981            {
 1982                _logger.LogWarning("cannot serve {0} as transcoding quit before we got there", segmentPath);
 1983            }
 1984            else
 1985            {
 1986                _logger.LogDebug("serving {0} as it's on disk and transcoding stopped", segmentPath);
 1987            }
 1988
 1989            cancellationToken.ThrowIfCancellationRequested();
 1990        }
 1991        else
 1992        {
 1993            _logger.LogWarning("cannot serve {0} as it doesn't exist and no transcode is running", segmentPath);
 1994        }
 1995
 1996        return GetSegmentResult(state, segmentPath, transcodingJob);
 1997    }
 1998
 1999    private ActionResult GetSegmentResult(StreamState state, string segmentPath, TranscodingJob? transcodingJob)
 2000    {
 02001        var segmentEndingPositionTicks = state.Request.CurrentRuntimeTicks + state.Request.ActualSegmentLengthTicks;
 2002
 02003        Response.OnCompleted(() =>
 02004        {
 02005            _logger.LogDebug("Finished serving {SegmentPath}", segmentPath);
 02006            if (transcodingJob is not null)
 02007            {
 02008                transcodingJob.DownloadPositionTicks = Math.Max(transcodingJob.DownloadPositionTicks ?? segmentEndingPos
 02009                _transcodeManager.OnTranscodeEndRequest(transcodingJob);
 02010            }
 02011
 02012            return Task.CompletedTask;
 02013        });
 2014
 02015        return FileStreamResponseHelpers.GetStaticFileResult(segmentPath, MimeTypes.GetMimeType(segmentPath));
 2016    }
 2017
 2018    private int? GetCurrentTranscodingIndex(string playlist, string segmentExtension)
 2019    {
 02020        var job = _transcodeManager.GetTranscodingJob(playlist, TranscodingJobType);
 2021
 02022        if (job is null || job.HasExited)
 2023        {
 02024            return null;
 2025        }
 2026
 02027        var file = GetLastTranscodingFile(playlist, segmentExtension, _fileSystem);
 2028
 02029        if (file is null)
 2030        {
 02031            return null;
 2032        }
 2033
 02034        var playlistFilename = Path.GetFileNameWithoutExtension(playlist.AsSpan());
 2035
 02036        var indexString = Path.GetFileNameWithoutExtension(file.Name.AsSpan()).Slice(playlistFilename.Length);
 2037
 02038        return int.Parse(indexString, NumberStyles.Integer, CultureInfo.InvariantCulture);
 2039    }
 2040
 2041    private static FileSystemMetadata? GetLastTranscodingFile(string playlist, string segmentExtension, IFileSystem file
 2042    {
 02043        var folder = Path.GetDirectoryName(playlist) ?? throw new ArgumentException("Path can't be a root directory.", n
 2044
 02045        var filePrefix = Path.GetFileNameWithoutExtension(playlist);
 2046
 2047        try
 2048        {
 02049            return fileSystem.GetFiles(folder, new[] { segmentExtension }, true, false)
 02050                .Where(i => Path.GetFileNameWithoutExtension(i.Name).StartsWith(filePrefix, StringComparison.OrdinalIgno
 02051                .MaxBy(fileSystem.GetLastWriteTimeUtc);
 2052        }
 02053        catch (IOException)
 2054        {
 02055            return null;
 2056        }
 02057    }
 2058
 2059    private async Task DeleteLastFile(string playlistPath, string segmentExtension, int retryCount)
 2060    {
 2061        var file = GetLastTranscodingFile(playlistPath, segmentExtension, _fileSystem);
 2062
 2063        if (file is null)
 2064        {
 2065            return;
 2066        }
 2067
 2068        await DeleteFile(file.FullName, retryCount).ConfigureAwait(false);
 2069    }
 2070
 2071    private async Task DeleteFile(string path, int retryCount)
 2072    {
 2073        if (retryCount >= 5)
 2074        {
 2075            return;
 2076        }
 2077
 2078        _logger.LogDebug("Deleting partial HLS file {Path}", path);
 2079
 2080        try
 2081        {
 2082            _fileSystem.DeleteFile(path);
 2083        }
 2084        catch (IOException ex)
 2085        {
 2086            _logger.LogError(ex, "Error deleting partial stream file(s) {Path}", path);
 2087
 2088            await Task.Delay(100).ConfigureAwait(false);
 2089            await DeleteFile(path, retryCount + 1).ConfigureAwait(false);
 2090        }
 2091        catch (Exception ex)
 2092        {
 2093            _logger.LogError(ex, "Error deleting partial stream file(s) {Path}", path);
 2094        }
 2095    }
 2096}