| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Globalization; |
| | 4 | | using System.Linq; |
| | 5 | | using Jellyfin.Data.Enums; |
| | 6 | | using Jellyfin.Extensions; |
| | 7 | | using MediaBrowser.Model.Dto; |
| | 8 | | using MediaBrowser.Model.Entities; |
| | 9 | | using MediaBrowser.Model.Extensions; |
| | 10 | | using MediaBrowser.Model.MediaInfo; |
| | 11 | | using MediaBrowser.Model.Session; |
| | 12 | | using Microsoft.Extensions.Logging; |
| | 13 | |
|
| | 14 | | namespace MediaBrowser.Model.Dlna |
| | 15 | | { |
| | 16 | | /// <summary> |
| | 17 | | /// Class StreamBuilder. |
| | 18 | | /// </summary> |
| | 19 | | public class StreamBuilder |
| | 20 | | { |
| | 21 | | // Aliases |
| | 22 | | internal const TranscodeReason ContainerReasons = TranscodeReason.ContainerNotSupported | TranscodeReason.Contai |
| | 23 | | internal const TranscodeReason AudioCodecReasons = TranscodeReason.AudioBitrateNotSupported | TranscodeReason.Au |
| | 24 | | internal const TranscodeReason AudioReasons = TranscodeReason.AudioCodecNotSupported | AudioCodecReasons; |
| | 25 | | internal const TranscodeReason VideoCodecReasons = TranscodeReason.VideoResolutionNotSupported | TranscodeReason |
| | 26 | | internal const TranscodeReason VideoReasons = TranscodeReason.VideoCodecNotSupported | VideoCodecReasons; |
| | 27 | | internal const TranscodeReason DirectStreamReasons = AudioReasons | TranscodeReason.ContainerNotSupported | Tran |
| | 28 | |
|
| | 29 | | private readonly ILogger _logger; |
| | 30 | | private readonly ITranscoderSupport _transcoderSupport; |
| 1 | 31 | | private static readonly string[] _supportedHlsVideoCodecs = ["h264", "hevc", "vp9", "av1"]; |
| 1 | 32 | | private static readonly string[] _supportedHlsAudioCodecsTs = ["aac", "ac3", "eac3", "mp3"]; |
| 1 | 33 | | private static readonly string[] _supportedHlsAudioCodecsMp4 = ["aac", "ac3", "eac3", "mp3", "alac", "flac", "op |
| | 34 | |
|
| | 35 | | /// <summary> |
| | 36 | | /// Initializes a new instance of the <see cref="StreamBuilder"/> class. |
| | 37 | | /// </summary> |
| | 38 | | /// <param name="transcoderSupport">The <see cref="ITranscoderSupport"/> object.</param> |
| | 39 | | /// <param name="logger">The <see cref="ILogger"/> object.</param> |
| | 40 | | public StreamBuilder(ITranscoderSupport transcoderSupport, ILogger logger) |
| | 41 | | { |
| 278 | 42 | | _transcoderSupport = transcoderSupport; |
| 278 | 43 | | _logger = logger; |
| 278 | 44 | | } |
| | 45 | |
|
| | 46 | | /// <summary> |
| | 47 | | /// Gets the optimal audio stream. |
| | 48 | | /// </summary> |
| | 49 | | /// <param name="options">The <see cref="MediaOptions"/> object to get the audio stream from.</param> |
| | 50 | | /// <returns>The <see cref="StreamInfo"/> of the optimal audio stream.</returns> |
| | 51 | | public StreamInfo? GetOptimalAudioStream(MediaOptions options) |
| | 52 | | { |
| 0 | 53 | | ValidateMediaOptions(options, false); |
| | 54 | |
|
| 0 | 55 | | List<StreamInfo> streams = []; |
| 0 | 56 | | foreach (var mediaSource in options.MediaSources) |
| | 57 | | { |
| 0 | 58 | | if (!(string.IsNullOrEmpty(options.MediaSourceId) |
| 0 | 59 | | || string.Equals(mediaSource.Id, options.MediaSourceId, StringComparison.OrdinalIgnoreCase))) |
| | 60 | | { |
| | 61 | | continue; |
| | 62 | | } |
| | 63 | |
|
| 0 | 64 | | StreamInfo? streamInfo = GetOptimalAudioStream(mediaSource, options); |
| 0 | 65 | | if (streamInfo is not null) |
| | 66 | | { |
| 0 | 67 | | streamInfo.DeviceId = options.DeviceId; |
| 0 | 68 | | streamInfo.DeviceProfileId = options.Profile.Id?.ToString("N", CultureInfo.InvariantCulture); |
| 0 | 69 | | streams.Add(streamInfo); |
| | 70 | | } |
| | 71 | | } |
| | 72 | |
|
| 0 | 73 | | return GetOptimalStream(streams, options.GetMaxBitrate(true) ?? 0); |
| | 74 | | } |
| | 75 | |
|
| | 76 | | private StreamInfo? GetOptimalAudioStream(MediaSourceInfo item, MediaOptions options) |
| | 77 | | { |
| 0 | 78 | | var playlistItem = new StreamInfo |
| 0 | 79 | | { |
| 0 | 80 | | ItemId = options.ItemId, |
| 0 | 81 | | MediaType = DlnaProfileType.Audio, |
| 0 | 82 | | MediaSource = item, |
| 0 | 83 | | RunTimeTicks = item.RunTimeTicks, |
| 0 | 84 | | Context = options.Context, |
| 0 | 85 | | DeviceProfile = options.Profile |
| 0 | 86 | | }; |
| | 87 | |
|
| 0 | 88 | | if (options.ForceDirectPlay) |
| | 89 | | { |
| 0 | 90 | | playlistItem.PlayMethod = PlayMethod.DirectPlay; |
| 0 | 91 | | playlistItem.Container = NormalizeMediaSourceFormatIntoSingleContainer(item.Container, options.Profile, |
| 0 | 92 | | return playlistItem; |
| | 93 | | } |
| | 94 | |
|
| 0 | 95 | | if (options.ForceDirectStream) |
| | 96 | | { |
| 0 | 97 | | playlistItem.PlayMethod = PlayMethod.DirectStream; |
| 0 | 98 | | playlistItem.Container = NormalizeMediaSourceFormatIntoSingleContainer(item.Container, options.Profile, |
| 0 | 99 | | return playlistItem; |
| | 100 | | } |
| | 101 | |
|
| 0 | 102 | | MediaStream audioStream = item.GetDefaultAudioStream(null); |
| | 103 | |
|
| 0 | 104 | | ArgumentNullException.ThrowIfNull(audioStream); |
| | 105 | |
|
| 0 | 106 | | var directPlayInfo = GetAudioDirectPlayProfile(item, audioStream, options); |
| | 107 | |
|
| 0 | 108 | | var directPlayMethod = directPlayInfo.PlayMethod; |
| 0 | 109 | | var transcodeReasons = directPlayInfo.TranscodeReasons; |
| | 110 | |
|
| 0 | 111 | | if (directPlayMethod is PlayMethod.DirectPlay) |
| | 112 | | { |
| 0 | 113 | | var audioFailureReasons = GetCompatibilityAudioCodec(options, item, item.Container, audioStream, null, f |
| 0 | 114 | | transcodeReasons |= audioFailureReasons; |
| | 115 | |
|
| 0 | 116 | | if (audioFailureReasons == 0) |
| | 117 | | { |
| 0 | 118 | | playlistItem.PlayMethod = directPlayMethod.Value; |
| 0 | 119 | | playlistItem.Container = NormalizeMediaSourceFormatIntoSingleContainer(item.Container, options.Profi |
| | 120 | |
|
| 0 | 121 | | return playlistItem; |
| | 122 | | } |
| | 123 | | } |
| | 124 | |
|
| 0 | 125 | | if (directPlayMethod is PlayMethod.DirectStream) |
| | 126 | | { |
| 0 | 127 | | var remuxContainer = item.TranscodingContainer ?? "ts"; |
| 0 | 128 | | string[] supportedHlsContainers = ["ts", "mp4"]; |
| | 129 | | // If the container specified for the profile is an HLS supported container, use that container instead, |
| | 130 | | // The client should be responsible to ensure this container is compatible |
| 0 | 131 | | remuxContainer = Array.Exists(supportedHlsContainers, element => string.Equals(element, directPlayInfo.P |
| | 132 | | bool codeIsSupported; |
| 0 | 133 | | if (item.TranscodingSubProtocol == MediaStreamProtocol.hls) |
| | 134 | | { |
| | 135 | | // Enforce HLS audio codec restrictions |
| 0 | 136 | | if (string.Equals(remuxContainer, "mp4", StringComparison.OrdinalIgnoreCase)) |
| | 137 | | { |
| 0 | 138 | | codeIsSupported = _supportedHlsAudioCodecsMp4.Contains(directPlayInfo.Profile?.AudioCodec ?? dir |
| | 139 | | } |
| | 140 | | else |
| | 141 | | { |
| 0 | 142 | | codeIsSupported = _supportedHlsAudioCodecsTs.Contains(directPlayInfo.Profile?.AudioCodec ?? dire |
| | 143 | | } |
| | 144 | | } |
| | 145 | | else |
| | 146 | | { |
| | 147 | | // Let's assume the client has given a correct container for http |
| 0 | 148 | | codeIsSupported = true; |
| | 149 | | } |
| | 150 | |
|
| 0 | 151 | | if (codeIsSupported) |
| | 152 | | { |
| 0 | 153 | | playlistItem.PlayMethod = directPlayMethod.Value; |
| 0 | 154 | | playlistItem.Container = remuxContainer; |
| 0 | 155 | | playlistItem.TranscodeReasons = transcodeReasons; |
| 0 | 156 | | playlistItem.SubProtocol = item.TranscodingSubProtocol; |
| 0 | 157 | | item.TranscodingContainer = remuxContainer; |
| 0 | 158 | | return playlistItem; |
| | 159 | | } |
| | 160 | |
|
| 0 | 161 | | transcodeReasons |= TranscodeReason.AudioCodecNotSupported; |
| 0 | 162 | | playlistItem.TranscodeReasons = transcodeReasons; |
| | 163 | | } |
| | 164 | |
|
| 0 | 165 | | TranscodingProfile? transcodingProfile = null; |
| 0 | 166 | | foreach (var tcProfile in options.Profile.TranscodingProfiles) |
| | 167 | | { |
| 0 | 168 | | if (tcProfile.Type == playlistItem.MediaType |
| 0 | 169 | | && tcProfile.Context == options.Context |
| 0 | 170 | | && _transcoderSupport.CanEncodeToAudioCodec(tcProfile.AudioCodec ?? tcProfile.Container)) |
| | 171 | | { |
| 0 | 172 | | transcodingProfile = tcProfile; |
| 0 | 173 | | break; |
| | 174 | | } |
| | 175 | | } |
| | 176 | |
|
| 0 | 177 | | if (transcodingProfile is not null) |
| | 178 | | { |
| 0 | 179 | | if (!item.SupportsTranscoding) |
| | 180 | | { |
| 0 | 181 | | return null; |
| | 182 | | } |
| | 183 | |
|
| 0 | 184 | | SetStreamInfoOptionsFromTranscodingProfile(item, playlistItem, transcodingProfile); |
| | 185 | |
|
| 0 | 186 | | var inputAudioChannels = audioStream.Channels; |
| 0 | 187 | | var inputAudioBitrate = audioStream.BitRate; |
| 0 | 188 | | var inputAudioSampleRate = audioStream.SampleRate; |
| 0 | 189 | | var inputAudioBitDepth = audioStream.BitDepth; |
| | 190 | |
|
| 0 | 191 | | var audioTranscodingConditions = GetProfileConditionsForAudio(options.Profile.CodecProfiles, transcoding |
| 0 | 192 | | ApplyTranscodingConditions(playlistItem, audioTranscodingConditions, null, true, true); |
| | 193 | |
|
| | 194 | | // Honor requested max channels |
| 0 | 195 | | playlistItem.GlobalMaxAudioChannels = options.MaxAudioChannels; |
| | 196 | |
|
| 0 | 197 | | var configuredBitrate = options.GetMaxBitrate(true); |
| | 198 | |
|
| 0 | 199 | | long transcodingBitrate = options.AudioTranscodingBitrate |
| 0 | 200 | | ?? (options.Context == EncodingContext.Streaming ? options.Profile.MusicStreamingTranscodingBitrate |
| 0 | 201 | | ?? configuredBitrate |
| 0 | 202 | | ?? 128000; |
| | 203 | |
|
| 0 | 204 | | if (configuredBitrate.HasValue) |
| | 205 | | { |
| 0 | 206 | | transcodingBitrate = Math.Min(configuredBitrate.Value, transcodingBitrate); |
| | 207 | | } |
| | 208 | |
|
| 0 | 209 | | var longBitrate = Math.Min(transcodingBitrate, playlistItem.AudioBitrate ?? transcodingBitrate); |
| 0 | 210 | | playlistItem.AudioBitrate = longBitrate > int.MaxValue ? int.MaxValue : Convert.ToInt32(longBitrate); |
| | 211 | |
|
| | 212 | | // Pure audio transcoding does not support comma separated list of transcoding codec at the moment. |
| | 213 | | // So just use the AudioCodec as is would be safe enough as the _transcoderSupport.CanEncodeToAudioCodec |
| | 214 | | // would fail so this profile will not even be picked up. |
| 0 | 215 | | if (playlistItem.AudioCodecs.Count == 0 && !string.IsNullOrWhiteSpace(transcodingProfile.AudioCodec)) |
| | 216 | | { |
| 0 | 217 | | playlistItem.AudioCodecs = [transcodingProfile.AudioCodec]; |
| | 218 | | } |
| | 219 | | } |
| | 220 | |
|
| 0 | 221 | | playlistItem.TranscodeReasons = transcodeReasons; |
| 0 | 222 | | return playlistItem; |
| | 223 | | } |
| | 224 | |
|
| | 225 | | /// <summary> |
| | 226 | | /// Gets the optimal video stream. |
| | 227 | | /// </summary> |
| | 228 | | /// <param name="options">The <see cref="MediaOptions"/> object to get the video stream from.</param> |
| | 229 | | /// <returns>The <see cref="StreamInfo"/> of the optimal video stream.</returns> |
| | 230 | | public StreamInfo? GetOptimalVideoStream(MediaOptions options) |
| | 231 | | { |
| 278 | 232 | | ValidateMediaOptions(options, true); |
| | 233 | |
|
| 278 | 234 | | var mediaSources = string.IsNullOrEmpty(options.MediaSourceId) |
| 278 | 235 | | ? options.MediaSources |
| 278 | 236 | | : options.MediaSources.Where(x => string.Equals(x.Id, options.MediaSourceId, StringComparison.OrdinalIgn |
| | 237 | |
|
| 278 | 238 | | List<StreamInfo> streams = []; |
| 1112 | 239 | | foreach (var mediaSourceInfo in mediaSources) |
| | 240 | | { |
| 278 | 241 | | var streamInfo = BuildVideoItem(mediaSourceInfo, options); |
| 278 | 242 | | if (streamInfo is not null) |
| | 243 | | { |
| 278 | 244 | | streams.Add(streamInfo); |
| | 245 | | } |
| | 246 | | } |
| | 247 | |
|
| 1112 | 248 | | foreach (var stream in streams) |
| | 249 | | { |
| 278 | 250 | | stream.DeviceId = options.DeviceId; |
| 278 | 251 | | stream.DeviceProfileId = options.Profile.Id?.ToString("N", CultureInfo.InvariantCulture); |
| | 252 | | } |
| | 253 | |
|
| 278 | 254 | | return GetOptimalStream(streams, options.GetMaxBitrate(false) ?? 0); |
| | 255 | | } |
| | 256 | |
|
| | 257 | | private static StreamInfo? GetOptimalStream(List<StreamInfo> streams, long maxBitrate) |
| 278 | 258 | | => SortMediaSources(streams, maxBitrate).FirstOrDefault(); |
| | 259 | |
|
| | 260 | | private static IOrderedEnumerable<StreamInfo> SortMediaSources(List<StreamInfo> streams, long maxBitrate) |
| | 261 | | { |
| 278 | 262 | | return streams.OrderBy(i => |
| 278 | 263 | | { |
| 278 | 264 | | // Nothing beats direct playing a file |
| 278 | 265 | | if (i.PlayMethod == PlayMethod.DirectPlay && i.MediaSource?.Protocol == MediaProtocol.File) |
| 278 | 266 | | { |
| 278 | 267 | | return 0; |
| 278 | 268 | | } |
| 278 | 269 | |
|
| 278 | 270 | | return 1; |
| 278 | 271 | | }).ThenBy(i => |
| 278 | 272 | | { |
| 278 | 273 | | switch (i.PlayMethod) |
| 278 | 274 | | { |
| 278 | 275 | | // Let's assume direct streaming a file is just as desirable as direct playing a remote url |
| 278 | 276 | | case PlayMethod.DirectStream: |
| 278 | 277 | | case PlayMethod.DirectPlay: |
| 278 | 278 | | return 0; |
| 278 | 279 | | default: |
| 278 | 280 | | return 1; |
| 278 | 281 | | } |
| 278 | 282 | | }).ThenBy(i => |
| 278 | 283 | | { |
| 278 | 284 | | switch (i.MediaSource?.Protocol) |
| 278 | 285 | | { |
| 278 | 286 | | case MediaProtocol.File: |
| 278 | 287 | | return 0; |
| 278 | 288 | | default: |
| 278 | 289 | | return 1; |
| 278 | 290 | | } |
| 278 | 291 | | }).ThenBy(i => |
| 278 | 292 | | { |
| 278 | 293 | | if (maxBitrate > 0) |
| 278 | 294 | | { |
| 278 | 295 | | if (i.MediaSource?.Bitrate is not null) |
| 278 | 296 | | { |
| 278 | 297 | | return Math.Abs(i.MediaSource.Bitrate.Value - maxBitrate); |
| 278 | 298 | | } |
| 278 | 299 | | } |
| 278 | 300 | |
|
| 278 | 301 | | return 0; |
| 278 | 302 | | }).ThenBy(streams.IndexOf); |
| | 303 | | } |
| | 304 | |
|
| | 305 | | private static TranscodeReason GetTranscodeReasonForFailedCondition(ProfileCondition condition) |
| | 306 | | { |
| 247 | 307 | | switch (condition.Property) |
| | 308 | | { |
| | 309 | | case ProfileConditionValue.AudioBitrate: |
| 0 | 310 | | return TranscodeReason.AudioBitrateNotSupported; |
| | 311 | |
|
| | 312 | | case ProfileConditionValue.AudioChannels: |
| 122 | 313 | | return TranscodeReason.AudioChannelsNotSupported; |
| | 314 | |
|
| | 315 | | case ProfileConditionValue.AudioProfile: |
| 0 | 316 | | return TranscodeReason.AudioProfileNotSupported; |
| | 317 | |
|
| | 318 | | case ProfileConditionValue.AudioSampleRate: |
| 0 | 319 | | return TranscodeReason.AudioSampleRateNotSupported; |
| | 320 | |
|
| | 321 | | case ProfileConditionValue.Has64BitOffsets: |
| | 322 | | // TODO |
| 0 | 323 | | return 0; |
| | 324 | |
|
| | 325 | | case ProfileConditionValue.Height: |
| 0 | 326 | | return TranscodeReason.VideoResolutionNotSupported; |
| | 327 | |
|
| | 328 | | case ProfileConditionValue.IsAnamorphic: |
| 0 | 329 | | return TranscodeReason.AnamorphicVideoNotSupported; |
| | 330 | |
|
| | 331 | | case ProfileConditionValue.IsAvc: |
| | 332 | | // TODO |
| 0 | 333 | | return 0; |
| | 334 | |
|
| | 335 | | case ProfileConditionValue.IsInterlaced: |
| 0 | 336 | | return TranscodeReason.InterlacedVideoNotSupported; |
| | 337 | |
|
| | 338 | | case ProfileConditionValue.IsSecondaryAudio: |
| 35 | 339 | | return TranscodeReason.SecondaryAudioNotSupported; |
| | 340 | |
|
| | 341 | | case ProfileConditionValue.NumStreams: |
| 2 | 342 | | return TranscodeReason.StreamCountExceedsLimit; |
| | 343 | |
|
| | 344 | | case ProfileConditionValue.NumAudioStreams: |
| | 345 | | // TODO |
| 0 | 346 | | return 0; |
| | 347 | |
|
| | 348 | | case ProfileConditionValue.NumVideoStreams: |
| | 349 | | // TODO |
| 0 | 350 | | return 0; |
| | 351 | |
|
| | 352 | | case ProfileConditionValue.PacketLength: |
| | 353 | | // TODO |
| 0 | 354 | | return 0; |
| | 355 | |
|
| | 356 | | case ProfileConditionValue.RefFrames: |
| 0 | 357 | | return TranscodeReason.RefFramesNotSupported; |
| | 358 | |
|
| | 359 | | case ProfileConditionValue.VideoBitDepth: |
| 0 | 360 | | return TranscodeReason.VideoBitDepthNotSupported; |
| | 361 | |
|
| | 362 | | case ProfileConditionValue.AudioBitDepth: |
| 0 | 363 | | return TranscodeReason.AudioBitDepthNotSupported; |
| | 364 | |
|
| | 365 | | case ProfileConditionValue.VideoBitrate: |
| 4 | 366 | | return TranscodeReason.VideoBitrateNotSupported; |
| | 367 | |
|
| | 368 | | case ProfileConditionValue.VideoCodecTag: |
| 18 | 369 | | return TranscodeReason.VideoCodecTagNotSupported; |
| | 370 | |
|
| | 371 | | case ProfileConditionValue.VideoFramerate: |
| 0 | 372 | | return TranscodeReason.VideoFramerateNotSupported; |
| | 373 | |
|
| | 374 | | case ProfileConditionValue.VideoLevel: |
| 13 | 375 | | return TranscodeReason.VideoLevelNotSupported; |
| | 376 | |
|
| | 377 | | case ProfileConditionValue.VideoProfile: |
| 25 | 378 | | return TranscodeReason.VideoProfileNotSupported; |
| | 379 | |
|
| | 380 | | case ProfileConditionValue.VideoRangeType: |
| 28 | 381 | | return TranscodeReason.VideoRangeTypeNotSupported; |
| | 382 | |
|
| | 383 | | case ProfileConditionValue.VideoTimestamp: |
| | 384 | | // TODO |
| 0 | 385 | | return 0; |
| | 386 | |
|
| | 387 | | case ProfileConditionValue.Width: |
| 0 | 388 | | return TranscodeReason.VideoResolutionNotSupported; |
| | 389 | |
|
| | 390 | | default: |
| 0 | 391 | | return 0; |
| | 392 | | } |
| | 393 | | } |
| | 394 | |
|
| | 395 | | /// <summary> |
| | 396 | | /// Normalizes input container. |
| | 397 | | /// </summary> |
| | 398 | | /// <param name="inputContainer">The input container.</param> |
| | 399 | | /// <param name="profile">The <see cref="DeviceProfile"/>.</param> |
| | 400 | | /// <param name="type">The <see cref="DlnaProfileType"/>.</param> |
| | 401 | | /// <param name="playProfile">The <see cref="DirectPlayProfile"/> object to get the video stream from.</param> |
| | 402 | | /// <returns>The normalized input container.</returns> |
| | 403 | | public static string? NormalizeMediaSourceFormatIntoSingleContainer(string inputContainer, DeviceProfile? profil |
| | 404 | | { |
| | 405 | | // If the source is Live TV the inputContainer will be null until the mediasource is probed on first access |
| 402 | 406 | | if (profile is null || string.IsNullOrEmpty(inputContainer) || !inputContainer.Contains(',', StringCompariso |
| | 407 | | { |
| 94 | 408 | | return inputContainer; |
| | 409 | | } |
| | 410 | |
|
| 308 | 411 | | var formats = ContainerHelper.Split(inputContainer); |
| 308 | 412 | | var playProfiles = playProfile is null ? profile.DirectPlayProfiles : [playProfile]; |
| 1361 | 413 | | foreach (var format in formats) |
| | 414 | | { |
| 2593 | 415 | | foreach (var directPlayProfile in playProfiles) |
| | 416 | | { |
| 924 | 417 | | if (directPlayProfile.Type != type) |
| | 418 | | { |
| | 419 | | continue; |
| | 420 | | } |
| | 421 | |
|
| 696 | 422 | | if (directPlayProfile.SupportsContainer(format)) |
| | 423 | | { |
| 291 | 424 | | return format; |
| | 425 | | } |
| | 426 | | } |
| | 427 | | } |
| | 428 | |
|
| 17 | 429 | | return inputContainer; |
| | 430 | | } |
| | 431 | |
|
| | 432 | | private (DirectPlayProfile? Profile, PlayMethod? PlayMethod, TranscodeReason TranscodeReasons) GetAudioDirectPla |
| | 433 | | { |
| 0 | 434 | | var directPlayProfile = options.Profile.DirectPlayProfiles |
| 0 | 435 | | .FirstOrDefault(x => x.Type == DlnaProfileType.Audio && IsAudioDirectPlaySupported(x, item, audioStream) |
| | 436 | |
|
| 0 | 437 | | TranscodeReason transcodeReasons = 0; |
| 0 | 438 | | if (directPlayProfile is null) |
| | 439 | | { |
| 0 | 440 | | _logger.LogDebug( |
| 0 | 441 | | "Profile: {0}, No audio direct play profiles found for {1} with codec {2}", |
| 0 | 442 | | options.Profile.Name ?? "Unknown Profile", |
| 0 | 443 | | item.Path ?? "Unknown path", |
| 0 | 444 | | audioStream.Codec ?? "Unknown codec"); |
| | 445 | |
|
| 0 | 446 | | var directStreamProfile = options.Profile.DirectPlayProfiles |
| 0 | 447 | | .FirstOrDefault(x => x.Type == DlnaProfileType.Audio && IsAudioDirectStreamSupported(x, item, audioS |
| | 448 | |
|
| 0 | 449 | | if (directStreamProfile is not null) |
| | 450 | | { |
| 0 | 451 | | directPlayProfile = directStreamProfile; |
| 0 | 452 | | transcodeReasons |= TranscodeReason.ContainerNotSupported; |
| | 453 | | } |
| | 454 | | else |
| | 455 | | { |
| 0 | 456 | | return (null, null, GetTranscodeReasonsFromDirectPlayProfile(item, null, audioStream, options.Profil |
| | 457 | | } |
| | 458 | | } |
| | 459 | |
|
| | 460 | | // The profile describes what the device supports |
| | 461 | | // If device requirements are satisfied then allow both direct stream and direct play |
| | 462 | | // Note: As of 10.10 codebase, SupportsDirectPlay is always true because the MediaSourceInfo initializes thi |
| | 463 | | // Need to check additionally for current transcode reasons |
| 0 | 464 | | if (item.SupportsDirectPlay && transcodeReasons == 0) |
| | 465 | | { |
| 0 | 466 | | if (!IsBitrateLimitExceeded(item, options.GetMaxBitrate(true) ?? 0)) |
| | 467 | | { |
| 0 | 468 | | if (options.EnableDirectPlay) |
| | 469 | | { |
| 0 | 470 | | return (directPlayProfile, PlayMethod.DirectPlay, 0); |
| | 471 | | } |
| | 472 | | } |
| | 473 | | else |
| | 474 | | { |
| 0 | 475 | | transcodeReasons |= TranscodeReason.ContainerBitrateExceedsLimit; |
| | 476 | | } |
| | 477 | | } |
| | 478 | |
|
| | 479 | | // While options takes the network and other factors into account. Only applies to direct stream |
| 0 | 480 | | if (item.SupportsDirectStream) |
| | 481 | | { |
| 0 | 482 | | if (!IsBitrateLimitExceeded(item, options.GetMaxBitrate(true) ?? 0)) |
| | 483 | | { |
| | 484 | | // Note: as of 10.10 codebase, the options.EnableDirectStream is always false due to |
| | 485 | | // "direct-stream http streaming is currently broken" |
| | 486 | | // Don't check that option for audio as we always assume that is supported |
| 0 | 487 | | if (transcodeReasons == TranscodeReason.ContainerNotSupported) |
| | 488 | | { |
| 0 | 489 | | return (directPlayProfile, PlayMethod.DirectStream, transcodeReasons); |
| | 490 | | } |
| | 491 | | } |
| | 492 | | else |
| | 493 | | { |
| 0 | 494 | | transcodeReasons |= TranscodeReason.ContainerBitrateExceedsLimit; |
| | 495 | | } |
| | 496 | | } |
| | 497 | |
|
| 0 | 498 | | return (directPlayProfile, null, transcodeReasons); |
| | 499 | | } |
| | 500 | |
|
| | 501 | | private static TranscodeReason GetTranscodeReasonsFromDirectPlayProfile(MediaSourceInfo item, MediaStream? video |
| | 502 | | { |
| 0 | 503 | | var mediaType = videoStream is null ? DlnaProfileType.Audio : DlnaProfileType.Video; |
| | 504 | |
|
| 0 | 505 | | var containerSupported = false; |
| 0 | 506 | | var audioSupported = false; |
| 0 | 507 | | var videoSupported = false; |
| | 508 | |
|
| 0 | 509 | | foreach (var profile in directPlayProfiles) |
| | 510 | | { |
| | 511 | | // Check container type |
| 0 | 512 | | if (profile.Type == mediaType && profile.SupportsContainer(item.Container)) |
| | 513 | | { |
| 0 | 514 | | containerSupported = true; |
| | 515 | |
|
| 0 | 516 | | videoSupported = videoStream is null || profile.SupportsVideoCodec(videoStream.Codec); |
| | 517 | |
|
| 0 | 518 | | audioSupported = audioStream is null || profile.SupportsAudioCodec(audioStream.Codec); |
| | 519 | |
|
| 0 | 520 | | if (videoSupported && audioSupported) |
| | 521 | | { |
| 0 | 522 | | break; |
| | 523 | | } |
| | 524 | | } |
| | 525 | | } |
| | 526 | |
|
| 0 | 527 | | TranscodeReason reasons = 0; |
| 0 | 528 | | if (!containerSupported) |
| | 529 | | { |
| 0 | 530 | | reasons |= TranscodeReason.ContainerNotSupported; |
| | 531 | | } |
| | 532 | |
|
| 0 | 533 | | if (!videoSupported) |
| | 534 | | { |
| 0 | 535 | | reasons |= TranscodeReason.VideoCodecNotSupported; |
| | 536 | | } |
| | 537 | |
|
| 0 | 538 | | if (!audioSupported) |
| | 539 | | { |
| 0 | 540 | | reasons |= TranscodeReason.AudioCodecNotSupported; |
| | 541 | | } |
| | 542 | |
|
| 0 | 543 | | return reasons; |
| | 544 | | } |
| | 545 | |
|
| | 546 | | private static int? GetDefaultSubtitleStreamIndex(MediaSourceInfo item, SubtitleProfile[] subtitleProfiles) |
| | 547 | | { |
| 175 | 548 | | int highestScore = -1; |
| 1788 | 549 | | foreach (var stream in item.MediaStreams) |
| | 550 | | { |
| 719 | 551 | | if (stream.Type == MediaStreamType.Subtitle |
| 719 | 552 | | && stream.Score.HasValue |
| 719 | 553 | | && stream.Score.Value > highestScore) |
| | 554 | | { |
| 144 | 555 | | highestScore = stream.Score.Value; |
| | 556 | | } |
| | 557 | | } |
| | 558 | |
|
| 175 | 559 | | List<MediaStream> topStreams = []; |
| 1788 | 560 | | foreach (var stream in item.MediaStreams) |
| | 561 | | { |
| 719 | 562 | | if (stream.Type == MediaStreamType.Subtitle && stream.Score.HasValue && stream.Score.Value == highestSco |
| | 563 | | { |
| 321 | 564 | | topStreams.Add(stream); |
| | 565 | | } |
| | 566 | | } |
| | 567 | |
|
| | 568 | | // If multiple streams have an equal score, try to pick the most efficient one |
| 175 | 569 | | if (topStreams.Count > 1) |
| | 570 | | { |
| 378 | 571 | | foreach (var stream in topStreams) |
| | 572 | | { |
| 1464 | 573 | | foreach (var profile in subtitleProfiles) |
| | 574 | | { |
| 549 | 575 | | if (profile.Method == SubtitleDeliveryMethod.External && string.Equals(profile.Format, stream.Co |
| | 576 | | { |
| 0 | 577 | | return stream.Index; |
| | 578 | | } |
| | 579 | | } |
| | 580 | | } |
| | 581 | | } |
| | 582 | |
|
| | 583 | | // If no optimization panned out, just use the original default |
| 175 | 584 | | return item.DefaultSubtitleStreamIndex; |
| 0 | 585 | | } |
| | 586 | |
|
| | 587 | | private static void SetStreamInfoOptionsFromTranscodingProfile(MediaSourceInfo item, StreamInfo playlistItem, Tr |
| | 588 | | { |
| 146 | 589 | | var container = transcodingProfile.Container; |
| 146 | 590 | | var protocol = transcodingProfile.Protocol; |
| | 591 | |
|
| 146 | 592 | | item.TranscodingContainer = container; |
| 146 | 593 | | item.TranscodingSubProtocol = protocol; |
| | 594 | |
|
| 146 | 595 | | if (playlistItem.PlayMethod == PlayMethod.Transcode) |
| | 596 | | { |
| 146 | 597 | | playlistItem.Container = container; |
| 146 | 598 | | playlistItem.SubProtocol = protocol; |
| | 599 | | } |
| | 600 | |
|
| 146 | 601 | | playlistItem.TranscodeSeekInfo = transcodingProfile.TranscodeSeekInfo; |
| 146 | 602 | | if (int.TryParse(transcodingProfile.MaxAudioChannels, CultureInfo.InvariantCulture, out int transcodingMaxAu |
| | 603 | | { |
| 133 | 604 | | playlistItem.TranscodingMaxAudioChannels = transcodingMaxAudioChannels; |
| | 605 | | } |
| | 606 | |
|
| 146 | 607 | | playlistItem.EstimateContentLength = transcodingProfile.EstimateContentLength; |
| | 608 | |
|
| 146 | 609 | | playlistItem.CopyTimestamps = transcodingProfile.CopyTimestamps; |
| 146 | 610 | | playlistItem.EnableSubtitlesInManifest = transcodingProfile.EnableSubtitlesInManifest; |
| 146 | 611 | | playlistItem.EnableMpegtsM2TsMode = transcodingProfile.EnableMpegtsM2TsMode; |
| | 612 | |
|
| 146 | 613 | | playlistItem.BreakOnNonKeyFrames = transcodingProfile.BreakOnNonKeyFrames; |
| 146 | 614 | | playlistItem.EnableAudioVbrEncoding = transcodingProfile.EnableAudioVbrEncoding; |
| | 615 | |
|
| 146 | 616 | | if (transcodingProfile.MinSegments > 0) |
| | 617 | | { |
| 102 | 618 | | playlistItem.MinSegments = transcodingProfile.MinSegments; |
| | 619 | | } |
| | 620 | |
|
| 146 | 621 | | if (transcodingProfile.SegmentLength > 0) |
| | 622 | | { |
| 0 | 623 | | playlistItem.SegmentLength = transcodingProfile.SegmentLength; |
| | 624 | | } |
| 146 | 625 | | } |
| | 626 | |
|
| | 627 | | private static void SetStreamInfoOptionsFromDirectPlayProfile(MediaOptions options, MediaSourceInfo item, Stream |
| | 628 | | { |
| 0 | 629 | | var container = NormalizeMediaSourceFormatIntoSingleContainer(item.Container, options.Profile, DlnaProfileTy |
| 0 | 630 | | var protocol = MediaStreamProtocol.http; |
| | 631 | |
|
| 0 | 632 | | item.TranscodingContainer = container; |
| 0 | 633 | | item.TranscodingSubProtocol = protocol; |
| | 634 | |
|
| 0 | 635 | | playlistItem.Container = container; |
| 0 | 636 | | playlistItem.SubProtocol = protocol; |
| | 637 | |
|
| 0 | 638 | | playlistItem.VideoCodecs = [item.VideoStream.Codec]; |
| 0 | 639 | | playlistItem.AudioCodecs = ContainerHelper.Split(directPlayProfile?.AudioCodec); |
| 0 | 640 | | } |
| | 641 | |
|
| | 642 | | private StreamInfo BuildVideoItem(MediaSourceInfo item, MediaOptions options) |
| | 643 | | { |
| 278 | 644 | | ArgumentNullException.ThrowIfNull(item); |
| | 645 | |
|
| 278 | 646 | | StreamInfo playlistItem = new StreamInfo |
| 278 | 647 | | { |
| 278 | 648 | | ItemId = options.ItemId, |
| 278 | 649 | | MediaType = DlnaProfileType.Video, |
| 278 | 650 | | MediaSource = item, |
| 278 | 651 | | RunTimeTicks = item.RunTimeTicks, |
| 278 | 652 | | Context = options.Context, |
| 278 | 653 | | DeviceProfile = options.Profile, |
| 278 | 654 | | SubtitleStreamIndex = options.SubtitleStreamIndex ?? GetDefaultSubtitleStreamIndex(item, options.Profile |
| 278 | 655 | | AlwaysBurnInSubtitleWhenTranscoding = options.AlwaysBurnInSubtitleWhenTranscoding |
| 278 | 656 | | }; |
| | 657 | |
|
| 278 | 658 | | var subtitleStream = playlistItem.SubtitleStreamIndex.HasValue ? item.GetMediaStream(MediaStreamType.Subtitl |
| | 659 | |
|
| 278 | 660 | | var audioStream = item.GetDefaultAudioStream(options.AudioStreamIndex ?? item.DefaultAudioStreamIndex); |
| 278 | 661 | | if (audioStream is not null) |
| | 662 | | { |
| 277 | 663 | | playlistItem.AudioStreamIndex = audioStream.Index; |
| | 664 | | } |
| | 665 | |
|
| | 666 | | // Collect candidate audio streams |
| 278 | 667 | | ICollection<MediaStream> candidateAudioStreams = audioStream is null ? [] : [audioStream]; |
| 278 | 668 | | if (!options.AudioStreamIndex.HasValue || options.AudioStreamIndex < 0) |
| | 669 | | { |
| 175 | 670 | | if (audioStream?.IsDefault == true) |
| | 671 | | { |
| 174 | 672 | | candidateAudioStreams = item.MediaStreams.Where(stream => stream.Type == MediaStreamType.Audio && st |
| | 673 | | } |
| | 674 | | else |
| | 675 | | { |
| 1 | 676 | | candidateAudioStreams = item.MediaStreams.Where(stream => stream.Type == MediaStreamType.Audio && st |
| | 677 | | } |
| | 678 | | } |
| | 679 | |
|
| 278 | 680 | | var videoStream = item.VideoStream; |
| | 681 | |
|
| 278 | 682 | | var bitrateLimitExceeded = IsBitrateLimitExceeded(item, options.GetMaxBitrate(false) ?? 0); |
| 278 | 683 | | var isEligibleForDirectPlay = options.EnableDirectPlay && (options.ForceDirectPlay || !bitrateLimitExceeded) |
| 278 | 684 | | var isEligibleForDirectStream = options.EnableDirectStream && (options.ForceDirectStream || !bitrateLimitExc |
| 278 | 685 | | TranscodeReason transcodeReasons = 0; |
| | 686 | |
|
| | 687 | | // Force transcode or remux for BD/DVD folders |
| 278 | 688 | | if (item.VideoType == VideoType.Dvd || item.VideoType == VideoType.BluRay) |
| | 689 | | { |
| 0 | 690 | | isEligibleForDirectPlay = false; |
| | 691 | | } |
| | 692 | |
|
| 278 | 693 | | if (bitrateLimitExceeded) |
| | 694 | | { |
| 24 | 695 | | transcodeReasons = TranscodeReason.ContainerBitrateExceedsLimit; |
| | 696 | | } |
| | 697 | |
|
| 278 | 698 | | _logger.LogDebug( |
| 278 | 699 | | "Profile: {0}, Path: {1}, isEligibleForDirectPlay: {2}, isEligibleForDirectStream: {3}", |
| 278 | 700 | | options.Profile.Name ?? "Unknown Profile", |
| 278 | 701 | | item.Path ?? "Unknown path", |
| 278 | 702 | | isEligibleForDirectPlay, |
| 278 | 703 | | isEligibleForDirectStream); |
| | 704 | |
|
| 278 | 705 | | DirectPlayProfile? directPlayProfile = null; |
| 278 | 706 | | if (isEligibleForDirectPlay || isEligibleForDirectStream) |
| | 707 | | { |
| | 708 | | // See if it can be direct played |
| 254 | 709 | | var directPlayInfo = GetVideoDirectPlayProfile(options, item, videoStream, audioStream, candidateAudioSt |
| 254 | 710 | | var directPlay = directPlayInfo.PlayMethod; |
| 254 | 711 | | transcodeReasons |= directPlayInfo.TranscodeReasons; |
| | 712 | |
|
| 254 | 713 | | if (directPlay.HasValue) |
| | 714 | | { |
| 124 | 715 | | directPlayProfile = directPlayInfo.Profile; |
| 124 | 716 | | playlistItem.PlayMethod = directPlay.Value; |
| 124 | 717 | | playlistItem.Container = NormalizeMediaSourceFormatIntoSingleContainer(item.Container, options.Profi |
| 124 | 718 | | var videoCodec = videoStream?.Codec; |
| 124 | 719 | | playlistItem.VideoCodecs = videoCodec is null ? [] : [videoCodec]; |
| | 720 | |
|
| 124 | 721 | | if (directPlay == PlayMethod.DirectPlay) |
| | 722 | | { |
| 124 | 723 | | playlistItem.SubProtocol = MediaStreamProtocol.http; |
| | 724 | |
|
| 124 | 725 | | var audioStreamIndex = directPlayInfo.AudioStreamIndex ?? audioStream?.Index; |
| 124 | 726 | | if (audioStreamIndex.HasValue) |
| | 727 | | { |
| 124 | 728 | | playlistItem.AudioStreamIndex = audioStreamIndex; |
| 124 | 729 | | var audioCodec = item.GetMediaStream(MediaStreamType.Audio, audioStreamIndex.Value)?.Codec; |
| 124 | 730 | | playlistItem.AudioCodecs = audioCodec is null ? [] : [audioCodec]; |
| | 731 | | } |
| | 732 | | } |
| 0 | 733 | | else if (directPlay == PlayMethod.DirectStream) |
| | 734 | | { |
| 0 | 735 | | playlistItem.AudioStreamIndex = audioStream?.Index; |
| 0 | 736 | | if (audioStream is not null) |
| | 737 | | { |
| 0 | 738 | | playlistItem.AudioCodecs = ContainerHelper.Split(directPlayProfile?.AudioCodec); |
| | 739 | | } |
| | 740 | |
|
| 0 | 741 | | SetStreamInfoOptionsFromDirectPlayProfile(options, item, playlistItem, directPlayProfile); |
| 0 | 742 | | BuildStreamVideoItem(playlistItem, options, item, videoStream, audioStream, candidateAudioStream |
| | 743 | | } |
| | 744 | |
|
| 124 | 745 | | if (subtitleStream is not null) |
| | 746 | | { |
| 116 | 747 | | var subtitleProfile = GetSubtitleProfile(item, subtitleStream, options.Profile.SubtitleProfiles, |
| | 748 | |
|
| 116 | 749 | | playlistItem.SubtitleDeliveryMethod = subtitleProfile.Method; |
| 116 | 750 | | playlistItem.SubtitleFormat = subtitleProfile.Format; |
| | 751 | | } |
| | 752 | | } |
| | 753 | |
|
| 254 | 754 | | _logger.LogDebug( |
| 254 | 755 | | "DirectPlay Result for Profile: {0}, Path: {1}, PlayMethod: {2}, AudioStreamIndex: {3}, SubtitleStre |
| 254 | 756 | | options.Profile.Name ?? "Anonymous Profile", |
| 254 | 757 | | item.Path ?? "Unknown path", |
| 254 | 758 | | directPlayInfo.PlayMethod, |
| 254 | 759 | | directPlayInfo.AudioStreamIndex ?? audioStream?.Index, |
| 254 | 760 | | playlistItem.SubtitleStreamIndex, |
| 254 | 761 | | directPlayInfo.TranscodeReasons); |
| | 762 | | } |
| | 763 | |
|
| 278 | 764 | | playlistItem.TranscodeReasons = transcodeReasons; |
| | 765 | |
|
| 278 | 766 | | if (playlistItem.PlayMethod != PlayMethod.DirectStream && playlistItem.PlayMethod != PlayMethod.DirectPlay) |
| | 767 | | { |
| | 768 | | // Can't direct play, find the transcoding profile |
| | 769 | | // If we do this for direct-stream we will overwrite the info |
| 154 | 770 | | var (transcodingProfile, playMethod) = GetVideoTranscodeProfile(item, options, videoStream, audioStream, |
| | 771 | |
|
| 154 | 772 | | if (transcodingProfile is not null && playMethod.HasValue) |
| | 773 | | { |
| 146 | 774 | | SetStreamInfoOptionsFromTranscodingProfile(item, playlistItem, transcodingProfile); |
| | 775 | |
|
| 146 | 776 | | BuildStreamVideoItem(playlistItem, options, item, videoStream, audioStream, candidateAudioStreams, t |
| | 777 | |
|
| 146 | 778 | | playlistItem.PlayMethod = PlayMethod.Transcode; |
| | 779 | |
|
| 146 | 780 | | if (subtitleStream is not null) |
| | 781 | | { |
| 123 | 782 | | var subtitleProfile = GetSubtitleProfile(item, subtitleStream, options.Profile.SubtitleProfiles, |
| 123 | 783 | | playlistItem.SubtitleDeliveryMethod = subtitleProfile.Method; |
| 123 | 784 | | playlistItem.SubtitleFormat = subtitleProfile.Format; |
| 123 | 785 | | playlistItem.SubtitleCodecs = [subtitleProfile.Format]; |
| | 786 | | } |
| | 787 | |
|
| 146 | 788 | | if ((playlistItem.TranscodeReasons & (VideoReasons | TranscodeReason.ContainerBitrateExceedsLimit)) |
| | 789 | | { |
| 44 | 790 | | ApplyTranscodingConditions(playlistItem, transcodingProfile.Conditions, null, true, true); |
| | 791 | | } |
| | 792 | | } |
| | 793 | | } |
| | 794 | |
|
| 278 | 795 | | _logger.LogDebug( |
| 278 | 796 | | "StreamBuilder.BuildVideoItem( Profile={0}, Path={1}, AudioStreamIndex={2}, SubtitleStreamIndex={3} ) => |
| 278 | 797 | | options.Profile.Name ?? "Anonymous Profile", |
| 278 | 798 | | item.Path ?? "Unknown path", |
| 278 | 799 | | options.AudioStreamIndex, |
| 278 | 800 | | options.SubtitleStreamIndex, |
| 278 | 801 | | playlistItem.PlayMethod, |
| 278 | 802 | | playlistItem.TranscodeReasons, |
| 278 | 803 | | playlistItem.ToUrl("media:", "<token>", null)); |
| | 804 | |
|
| 278 | 805 | | item.Container = NormalizeMediaSourceFormatIntoSingleContainer(item.Container, options.Profile, DlnaProfileT |
| 278 | 806 | | return playlistItem; |
| | 807 | | } |
| | 808 | |
|
| | 809 | | private (TranscodingProfile? Profile, PlayMethod? PlayMethod) GetVideoTranscodeProfile( |
| | 810 | | MediaSourceInfo item, |
| | 811 | | MediaOptions options, |
| | 812 | | MediaStream? videoStream, |
| | 813 | | MediaStream? audioStream, |
| | 814 | | StreamInfo playlistItem) |
| | 815 | | { |
| 154 | 816 | | var mediaSource = playlistItem.MediaSource; |
| | 817 | |
|
| 154 | 818 | | ArgumentNullException.ThrowIfNull(mediaSource); |
| | 819 | |
|
| 154 | 820 | | if (!(item.SupportsTranscoding || item.SupportsDirectStream)) |
| | 821 | | { |
| 0 | 822 | | return (null, null); |
| | 823 | | } |
| | 824 | |
|
| 154 | 825 | | var transcodingProfiles = options.Profile.TranscodingProfiles |
| 154 | 826 | | .Where(i => i.Type == playlistItem.MediaType && i.Context == options.Context); |
| | 827 | |
|
| 154 | 828 | | if (item.UseMostCompatibleTranscodingProfile) |
| | 829 | | { |
| 0 | 830 | | transcodingProfiles = transcodingProfiles.Where(i => string.Equals(i.Container, "ts", StringComparison.O |
| | 831 | | } |
| | 832 | |
|
| 154 | 833 | | var videoCodec = videoStream?.Codec; |
| 154 | 834 | | var audioCodec = audioStream?.Codec; |
| | 835 | |
|
| 154 | 836 | | var analyzedProfiles = transcodingProfiles |
| 154 | 837 | | .Select(transcodingProfile => |
| 154 | 838 | | { |
| 154 | 839 | | var rank = (Video: 3, Audio: 3); |
| 154 | 840 | |
|
| 154 | 841 | | var container = transcodingProfile.Container; |
| 154 | 842 | |
|
| 154 | 843 | | if (videoStream is not null |
| 154 | 844 | | && options.AllowVideoStreamCopy |
| 154 | 845 | | && ContainerHelper.ContainsContainer(transcodingProfile.VideoCodec, videoCodec)) |
| 154 | 846 | | { |
| 154 | 847 | | var failures = GetCompatibilityVideoCodec(options, mediaSource, container, videoStream); |
| 154 | 848 | | rank.Video = failures == 0 ? 1 : 2; |
| 154 | 849 | | } |
| 154 | 850 | |
|
| 154 | 851 | | if (audioStream is not null |
| 154 | 852 | | && options.AllowAudioStreamCopy) |
| 154 | 853 | | { |
| 154 | 854 | | // For Audio stream, we prefer the audio codec that can be directly copied, then the codec that |
| 154 | 855 | | // the transcoding conditions, then the one does not satisfy the transcoding conditions. |
| 154 | 856 | | // For example: A client can support both aac and flac, but flac only supports 2 channels while |
| 154 | 857 | | // When the source audio is 6 channel flac, we should transcode to 6 channel aac, instead of dow |
| 154 | 858 | | var transcodingAudioCodecs = ContainerHelper.Split(transcodingProfile.AudioCodec); |
| 154 | 859 | |
|
| 154 | 860 | | foreach (var transcodingAudioCodec in transcodingAudioCodecs) |
| 154 | 861 | | { |
| 154 | 862 | | var failures = GetCompatibilityAudioCodec(options, mediaSource, container, audioStream, tran |
| 154 | 863 | |
|
| 154 | 864 | | var rankAudio = 3; |
| 154 | 865 | |
|
| 154 | 866 | | if (failures == 0) |
| 154 | 867 | | { |
| 154 | 868 | | rankAudio = string.Equals(transcodingAudioCodec, audioCodec, StringComparison.OrdinalIgn |
| 154 | 869 | | } |
| 154 | 870 | |
|
| 154 | 871 | | rank.Audio = Math.Min(rank.Audio, rankAudio); |
| 154 | 872 | |
|
| 154 | 873 | | if (rank.Audio == 1) |
| 154 | 874 | | { |
| 154 | 875 | | break; |
| 154 | 876 | | } |
| 154 | 877 | | } |
| 154 | 878 | | } |
| 154 | 879 | |
|
| 154 | 880 | | PlayMethod playMethod = PlayMethod.Transcode; |
| 154 | 881 | |
|
| 154 | 882 | | if (rank.Video == 1) |
| 154 | 883 | | { |
| 154 | 884 | | playMethod = PlayMethod.DirectStream; |
| 154 | 885 | | } |
| 154 | 886 | |
|
| 154 | 887 | | return (Profile: transcodingProfile, PlayMethod: playMethod, Rank: rank); |
| 154 | 888 | | }) |
| 154 | 889 | | .OrderBy(analysis => analysis.Rank); |
| | 890 | |
|
| 154 | 891 | | var profileMatch = analyzedProfiles.FirstOrDefault(); |
| | 892 | |
|
| 154 | 893 | | return (profileMatch.Profile, profileMatch.PlayMethod); |
| | 894 | | } |
| | 895 | |
|
| | 896 | | private void BuildStreamVideoItem( |
| | 897 | | StreamInfo playlistItem, |
| | 898 | | MediaOptions options, |
| | 899 | | MediaSourceInfo item, |
| | 900 | | MediaStream? videoStream, |
| | 901 | | MediaStream? audioStream, |
| | 902 | | IEnumerable<MediaStream> candidateAudioStreams, |
| | 903 | | string? container, |
| | 904 | | string? videoCodec, |
| | 905 | | string? audioCodec) |
| | 906 | | { |
| | 907 | | // Prefer matching video codecs |
| 146 | 908 | | var videoCodecs = ContainerHelper.Split(videoCodec).ToList(); |
| | 909 | |
|
| 146 | 910 | | if (videoCodecs.Count == 0 && videoStream is not null) |
| | 911 | | { |
| | 912 | | // Add the original codec if no codec is specified |
| 0 | 913 | | videoCodecs.Add(videoStream.Codec); |
| | 914 | | } |
| | 915 | |
|
| | 916 | | // Enforce HLS video codec restrictions |
| 146 | 917 | | if (playlistItem.SubProtocol == MediaStreamProtocol.hls) |
| | 918 | | { |
| 132 | 919 | | videoCodecs = videoCodecs.Where(codec => _supportedHlsVideoCodecs.Contains(codec)).ToList(); |
| | 920 | | } |
| | 921 | |
|
| 146 | 922 | | playlistItem.VideoCodecs = videoCodecs; |
| | 923 | |
|
| | 924 | | // Copy video codec options as a starting point, this applies to transcode and direct-stream |
| 146 | 925 | | playlistItem.MaxFramerate = videoStream?.ReferenceFrameRate; |
| 146 | 926 | | var qualifier = videoStream?.Codec; |
| 146 | 927 | | if (videoStream?.Level is not null) |
| | 928 | | { |
| 145 | 929 | | playlistItem.SetOption(qualifier, "level", videoStream.Level.Value.ToString(CultureInfo.InvariantCulture |
| | 930 | | } |
| | 931 | |
|
| 146 | 932 | | if (videoStream?.BitDepth is not null) |
| | 933 | | { |
| 145 | 934 | | playlistItem.SetOption(qualifier, "videobitdepth", videoStream.BitDepth.Value.ToString(CultureInfo.Invar |
| | 935 | | } |
| | 936 | |
|
| 146 | 937 | | if (!string.IsNullOrEmpty(videoStream?.Profile)) |
| | 938 | | { |
| 145 | 939 | | playlistItem.SetOption(qualifier, "profile", videoStream.Profile.ToLowerInvariant()); |
| | 940 | | } |
| | 941 | |
|
| | 942 | | // Prefer matching audio codecs, could do better here |
| 146 | 943 | | var audioCodecs = ContainerHelper.Split(audioCodec).ToList(); |
| | 944 | |
|
| 146 | 945 | | if (audioCodecs.Count == 0 && audioStream is not null) |
| | 946 | | { |
| | 947 | | // Add the original codec if no codec is specified |
| 0 | 948 | | audioCodecs.Add(audioStream.Codec); |
| | 949 | | } |
| | 950 | |
|
| | 951 | | // Enforce HLS audio codec restrictions |
| 146 | 952 | | if (playlistItem.SubProtocol == MediaStreamProtocol.hls) |
| | 953 | | { |
| 132 | 954 | | if (string.Equals(playlistItem.Container, "mp4", StringComparison.OrdinalIgnoreCase)) |
| | 955 | | { |
| 72 | 956 | | audioCodecs = audioCodecs.Where(codec => _supportedHlsAudioCodecsMp4.Contains(codec)).ToList(); |
| | 957 | | } |
| | 958 | | else |
| | 959 | | { |
| 60 | 960 | | audioCodecs = audioCodecs.Where(codec => _supportedHlsAudioCodecsTs.Contains(codec)).ToList(); |
| | 961 | | } |
| | 962 | | } |
| | 963 | |
|
| 146 | 964 | | var audioStreamWithSupportedCodec = candidateAudioStreams.Where(stream => ContainerHelper.ContainsContainer( |
| | 965 | |
|
| 146 | 966 | | var channelsExceedsLimit = audioStreamWithSupportedCodec is not null && audioStreamWithSupportedCodec.Channe |
| | 967 | |
|
| 146 | 968 | | var directAudioFailures = audioStreamWithSupportedCodec is null ? default : GetCompatibilityAudioCodec(optio |
| | 969 | |
|
| 146 | 970 | | playlistItem.TranscodeReasons |= directAudioFailures; |
| | 971 | |
|
| 146 | 972 | | var directAudioStreamSatisfied = audioStreamWithSupportedCodec is not null && !channelsExceedsLimit |
| 146 | 973 | | && directAudioFailures == 0; |
| | 974 | |
|
| 146 | 975 | | directAudioStreamSatisfied = directAudioStreamSatisfied && !playlistItem.TranscodeReasons.HasFlag(TranscodeR |
| | 976 | |
|
| 146 | 977 | | var directAudioStream = directAudioStreamSatisfied ? audioStreamWithSupportedCodec : null; |
| | 978 | |
|
| 146 | 979 | | if (channelsExceedsLimit && playlistItem.TargetAudioStream is not null) |
| | 980 | | { |
| 10 | 981 | | playlistItem.TranscodeReasons |= TranscodeReason.AudioChannelsNotSupported; |
| 10 | 982 | | playlistItem.TargetAudioStream.Channels = playlistItem.TranscodingMaxAudioChannels; |
| | 983 | | } |
| | 984 | |
|
| 146 | 985 | | playlistItem.AudioCodecs = audioCodecs; |
| 146 | 986 | | if (directAudioStream is not null) |
| | 987 | | { |
| 55 | 988 | | audioStream = directAudioStream; |
| 55 | 989 | | playlistItem.AudioStreamIndex = audioStream.Index; |
| 55 | 990 | | audioCodecs = [audioStream.Codec]; |
| 55 | 991 | | playlistItem.AudioCodecs = audioCodecs; |
| | 992 | |
|
| | 993 | | // Copy matching audio codec options |
| 55 | 994 | | playlistItem.AudioSampleRate = audioStream.SampleRate; |
| 55 | 995 | | playlistItem.SetOption(qualifier, "audiochannels", audioStream.Channels?.ToString(CultureInfo.InvariantC |
| | 996 | |
|
| 55 | 997 | | if (!string.IsNullOrEmpty(audioStream.Profile)) |
| | 998 | | { |
| 53 | 999 | | playlistItem.SetOption(audioStream.Codec, "profile", audioStream.Profile.ToLowerInvariant()); |
| | 1000 | | } |
| | 1001 | |
|
| 55 | 1002 | | if (audioStream.Level.HasValue && audioStream.Level.Value != 0) |
| | 1003 | | { |
| 0 | 1004 | | playlistItem.SetOption(audioStream.Codec, "level", audioStream.Level.Value.ToString(CultureInfo.Inva |
| | 1005 | | } |
| | 1006 | | } |
| | 1007 | |
|
| 146 | 1008 | | int? width = videoStream?.Width; |
| 146 | 1009 | | int? height = videoStream?.Height; |
| 146 | 1010 | | int? bitDepth = videoStream?.BitDepth; |
| 146 | 1011 | | int? videoBitrate = videoStream?.BitRate; |
| 146 | 1012 | | double? videoLevel = videoStream?.Level; |
| 146 | 1013 | | string? videoProfile = videoStream?.Profile; |
| 146 | 1014 | | VideoRangeType? videoRangeType = videoStream?.VideoRangeType; |
| 146 | 1015 | | float videoFramerate = videoStream is null ? 0 : videoStream.ReferenceFrameRate ?? 0; |
| 146 | 1016 | | bool? isAnamorphic = videoStream?.IsAnamorphic; |
| 146 | 1017 | | bool? isInterlaced = videoStream?.IsInterlaced; |
| 146 | 1018 | | string? videoCodecTag = videoStream?.CodecTag; |
| 146 | 1019 | | bool? isAvc = videoStream?.IsAVC; |
| | 1020 | |
|
| 146 | 1021 | | TransportStreamTimestamp? timestamp = videoStream is null ? TransportStreamTimestamp.None : item.Timestamp; |
| 146 | 1022 | | int? packetLength = videoStream?.PacketLength; |
| 146 | 1023 | | int? refFrames = videoStream?.RefFrames; |
| | 1024 | |
|
| 146 | 1025 | | int numStreams = item.MediaStreams.Count; |
| 146 | 1026 | | int? numAudioStreams = item.GetStreamCount(MediaStreamType.Audio); |
| 146 | 1027 | | int? numVideoStreams = item.GetStreamCount(MediaStreamType.Video); |
| | 1028 | |
|
| 146 | 1029 | | var useSubContainer = playlistItem.SubProtocol == MediaStreamProtocol.hls; |
| | 1030 | |
|
| 146 | 1031 | | var appliedVideoConditions = options.Profile.CodecProfiles |
| 146 | 1032 | | .Where(i => i.Type == CodecType.Video && |
| 146 | 1033 | | i.ContainsAnyCodec(playlistItem.VideoCodecs, container, useSubContainer) && |
| 146 | 1034 | | i.ApplyConditions.All(applyCondition => ConditionProcessor.IsVideoConditionSatisfied(applyCondition, |
| 146 | 1035 | | // Reverse codec profiles for backward compatibility - first codec profile has higher priority |
| 146 | 1036 | | .Reverse(); |
| 888 | 1037 | | foreach (var condition in appliedVideoConditions) |
| | 1038 | | { |
| 2416 | 1039 | | foreach (var transcodingVideoCodec in playlistItem.VideoCodecs) |
| | 1040 | | { |
| 910 | 1041 | | if (condition.ContainsAnyCodec(transcodingVideoCodec, container, useSubContainer)) |
| | 1042 | | { |
| 306 | 1043 | | ApplyTranscodingConditions(playlistItem, condition.Conditions, transcodingVideoCodec, true, true |
| | 1044 | | continue; |
| | 1045 | | } |
| | 1046 | | } |
| | 1047 | | } |
| | 1048 | |
|
| | 1049 | | // Honor requested max channels |
| 146 | 1050 | | playlistItem.GlobalMaxAudioChannels = channelsExceedsLimit ? playlistItem.TranscodingMaxAudioChannels : opti |
| | 1051 | |
|
| 146 | 1052 | | int audioBitrate = GetAudioBitrate(options.GetMaxBitrate(true) ?? 0, playlistItem.TargetAudioCodec, audioStr |
| 146 | 1053 | | playlistItem.AudioBitrate = Math.Min(playlistItem.AudioBitrate ?? audioBitrate, audioBitrate); |
| | 1054 | |
|
| 146 | 1055 | | bool? isSecondaryAudio = audioStream is null ? null : item.IsSecondaryAudio(audioStream); |
| 146 | 1056 | | int? inputAudioBitrate = audioStream?.BitRate; |
| 146 | 1057 | | int? audioChannels = audioStream?.Channels; |
| 146 | 1058 | | string? audioProfile = audioStream?.Profile; |
| 146 | 1059 | | int? inputAudioSampleRate = audioStream?.SampleRate; |
| 146 | 1060 | | int? inputAudioBitDepth = audioStream?.BitDepth; |
| | 1061 | |
|
| 146 | 1062 | | var appliedAudioConditions = options.Profile.CodecProfiles |
| 146 | 1063 | | .Where(i => i.Type == CodecType.VideoAudio && |
| 146 | 1064 | | i.ContainsAnyCodec(playlistItem.AudioCodecs, container) && |
| 146 | 1065 | | i.ApplyConditions.All(applyCondition => ConditionProcessor.IsVideoAudioConditionSatisfied(applyCondi |
| 146 | 1066 | | // Reverse codec profiles for backward compatibility - first codec profile has higher priority |
| 146 | 1067 | | .Reverse(); |
| | 1068 | |
|
| 596 | 1069 | | foreach (var codecProfile in appliedAudioConditions) |
| | 1070 | | { |
| 456 | 1071 | | foreach (var transcodingAudioCodec in playlistItem.AudioCodecs) |
| | 1072 | | { |
| 152 | 1073 | | if (codecProfile.ContainsAnyCodec(transcodingAudioCodec, container)) |
| | 1074 | | { |
| 152 | 1075 | | ApplyTranscodingConditions(playlistItem, codecProfile.Conditions, transcodingAudioCodec, true, t |
| 152 | 1076 | | break; |
| | 1077 | | } |
| | 1078 | | } |
| | 1079 | | } |
| | 1080 | |
|
| 146 | 1081 | | var maxBitrateSetting = options.GetMaxBitrate(false); |
| | 1082 | | // Honor max rate |
| 146 | 1083 | | if (maxBitrateSetting.HasValue) |
| | 1084 | | { |
| 146 | 1085 | | var availableBitrateForVideo = maxBitrateSetting.Value; |
| | 1086 | |
|
| 146 | 1087 | | if (playlistItem.AudioBitrate.HasValue) |
| | 1088 | | { |
| 146 | 1089 | | availableBitrateForVideo -= playlistItem.AudioBitrate.Value; |
| | 1090 | | } |
| | 1091 | |
|
| | 1092 | | // Make sure the video bitrate is lower than bitrate settings but at least 64k |
| | 1093 | | // Don't use Math.Clamp as availableBitrateForVideo can be lower then 64k. |
| 146 | 1094 | | var currentValue = playlistItem.VideoBitrate ?? availableBitrateForVideo; |
| 146 | 1095 | | playlistItem.VideoBitrate = Math.Max(Math.Min(availableBitrateForVideo, currentValue), 64_000); |
| | 1096 | | } |
| | 1097 | |
|
| 146 | 1098 | | _logger.LogDebug( |
| 146 | 1099 | | "Transcode Result for Profile: {Profile}, Path: {Path}, PlayMethod: {PlayMethod}, AudioStreamIndex: {Aud |
| 146 | 1100 | | options.Profile.Name ?? "Anonymous Profile", |
| 146 | 1101 | | item.Path ?? "Unknown path", |
| 146 | 1102 | | playlistItem.PlayMethod, |
| 146 | 1103 | | audioStream?.Index, |
| 146 | 1104 | | playlistItem.SubtitleStreamIndex, |
| 146 | 1105 | | playlistItem.TranscodeReasons); |
| 146 | 1106 | | } |
| | 1107 | |
|
| | 1108 | | private static int GetDefaultAudioBitrate(string? audioCodec, int? audioChannels) |
| | 1109 | | { |
| 60 | 1110 | | if (!string.IsNullOrEmpty(audioCodec)) |
| | 1111 | | { |
| | 1112 | | // Default to a higher bitrate for stream copy |
| 60 | 1113 | | if (string.Equals(audioCodec, "aac", StringComparison.OrdinalIgnoreCase) |
| 60 | 1114 | | || string.Equals(audioCodec, "mp3", StringComparison.OrdinalIgnoreCase) |
| 60 | 1115 | | || string.Equals(audioCodec, "ac3", StringComparison.OrdinalIgnoreCase) |
| 60 | 1116 | | || string.Equals(audioCodec, "eac3", StringComparison.OrdinalIgnoreCase)) |
| | 1117 | | { |
| 55 | 1118 | | if ((audioChannels ?? 0) < 2) |
| | 1119 | | { |
| 0 | 1120 | | return 128000; |
| | 1121 | | } |
| | 1122 | |
|
| 55 | 1123 | | return (audioChannels ?? 0) >= 6 ? 640000 : 384000; |
| | 1124 | | } |
| | 1125 | |
|
| 5 | 1126 | | if (string.Equals(audioCodec, "flac", StringComparison.OrdinalIgnoreCase) |
| 5 | 1127 | | || string.Equals(audioCodec, "alac", StringComparison.OrdinalIgnoreCase)) |
| | 1128 | | { |
| 0 | 1129 | | if ((audioChannels ?? 0) < 2) |
| | 1130 | | { |
| 0 | 1131 | | return 768000; |
| | 1132 | | } |
| | 1133 | |
|
| 0 | 1134 | | return (audioChannels ?? 0) >= 6 ? 3584000 : 1536000; |
| | 1135 | | } |
| | 1136 | | } |
| | 1137 | |
|
| 5 | 1138 | | return 192000; |
| | 1139 | | } |
| | 1140 | |
|
| | 1141 | | private static int GetAudioBitrate(long maxTotalBitrate, IReadOnlyList<string> targetAudioCodecs, MediaStream? a |
| | 1142 | | { |
| 146 | 1143 | | string? targetAudioCodec = targetAudioCodecs.Count == 0 ? null : targetAudioCodecs[0]; |
| | 1144 | |
|
| 146 | 1145 | | int? targetAudioChannels = item.GetTargetAudioChannels(targetAudioCodec); |
| | 1146 | |
|
| | 1147 | | int defaultBitrate; |
| 146 | 1148 | | int encoderAudioBitrateLimit = int.MaxValue; |
| | 1149 | |
|
| 146 | 1150 | | if (audioStream is null) |
| | 1151 | | { |
| 1 | 1152 | | defaultBitrate = 192000; |
| | 1153 | | } |
| | 1154 | | else |
| | 1155 | | { |
| 145 | 1156 | | if (targetAudioChannels.HasValue |
| 145 | 1157 | | && audioStream.Channels.HasValue |
| 145 | 1158 | | && audioStream.Channels.Value > targetAudioChannels.Value) |
| | 1159 | | { |
| | 1160 | | // Reduce the bitrate if we're down mixing. |
| 46 | 1161 | | defaultBitrate = GetDefaultAudioBitrate(targetAudioCodec, targetAudioChannels); |
| | 1162 | | } |
| 99 | 1163 | | else if (targetAudioChannels.HasValue |
| 99 | 1164 | | && audioStream.Channels.HasValue |
| 99 | 1165 | | && audioStream.Channels.Value <= targetAudioChannels.Value |
| 99 | 1166 | | && !string.IsNullOrEmpty(audioStream.Codec) |
| 99 | 1167 | | && targetAudioCodecs is not null |
| 99 | 1168 | | && targetAudioCodecs.Count > 0 |
| 99 | 1169 | | && !targetAudioCodecs.Any(elem => string.Equals(audioStream.Codec, elem, StringComparison.Ordin |
| | 1170 | | { |
| | 1171 | | // Shift the bitrate if we're transcoding to a different audio codec. |
| 14 | 1172 | | defaultBitrate = GetDefaultAudioBitrate(targetAudioCodec, audioStream.Channels.Value); |
| | 1173 | | } |
| | 1174 | | else |
| | 1175 | | { |
| 85 | 1176 | | defaultBitrate = audioStream.BitRate ?? GetDefaultAudioBitrate(targetAudioCodec, targetAudioChannels |
| | 1177 | | } |
| | 1178 | |
|
| | 1179 | | // Seeing webm encoding failures when source has 1 audio channel and 22k bitrate. |
| | 1180 | | // Any attempts to transcode over 64k will fail |
| 145 | 1181 | | if (audioStream.Channels == 1 |
| 145 | 1182 | | && (audioStream.BitRate ?? 0) < 64000) |
| | 1183 | | { |
| 0 | 1184 | | encoderAudioBitrateLimit = 64000; |
| | 1185 | | } |
| | 1186 | | } |
| | 1187 | |
|
| 146 | 1188 | | if (maxTotalBitrate > 0) |
| | 1189 | | { |
| 146 | 1190 | | defaultBitrate = Math.Min(GetMaxAudioBitrateForTotalBitrate(maxTotalBitrate), defaultBitrate); |
| | 1191 | | } |
| | 1192 | |
|
| 146 | 1193 | | return Math.Min(defaultBitrate, encoderAudioBitrateLimit); |
| | 1194 | | } |
| | 1195 | |
|
| | 1196 | | private static int GetMaxAudioBitrateForTotalBitrate(long totalBitrate) |
| | 1197 | | { |
| 146 | 1198 | | if (totalBitrate <= 640000) |
| | 1199 | | { |
| 8 | 1200 | | return 128000; |
| | 1201 | | } |
| | 1202 | |
|
| 138 | 1203 | | if (totalBitrate <= 2000000) |
| | 1204 | | { |
| 0 | 1205 | | return 384000; |
| | 1206 | | } |
| | 1207 | |
|
| 138 | 1208 | | if (totalBitrate <= 3000000) |
| | 1209 | | { |
| 0 | 1210 | | return 448000; |
| | 1211 | | } |
| | 1212 | |
|
| 138 | 1213 | | if (totalBitrate <= 4000000) |
| | 1214 | | { |
| 0 | 1215 | | return 640000; |
| | 1216 | | } |
| | 1217 | |
|
| 138 | 1218 | | if (totalBitrate <= 5000000) |
| | 1219 | | { |
| 0 | 1220 | | return 768000; |
| | 1221 | | } |
| | 1222 | |
|
| 138 | 1223 | | if (totalBitrate <= 10000000) |
| | 1224 | | { |
| 8 | 1225 | | return 1536000; |
| | 1226 | | } |
| | 1227 | |
|
| 130 | 1228 | | if (totalBitrate <= 15000000) |
| | 1229 | | { |
| 0 | 1230 | | return 2304000; |
| | 1231 | | } |
| | 1232 | |
|
| 130 | 1233 | | if (totalBitrate <= 20000000) |
| | 1234 | | { |
| 14 | 1235 | | return 3584000; |
| | 1236 | | } |
| | 1237 | |
|
| 116 | 1238 | | return 7168000; |
| | 1239 | | } |
| | 1240 | |
|
| | 1241 | | private (DirectPlayProfile? Profile, PlayMethod? PlayMethod, int? AudioStreamIndex, TranscodeReason TranscodeRea |
| | 1242 | | MediaOptions options, |
| | 1243 | | MediaSourceInfo mediaSource, |
| | 1244 | | MediaStream? videoStream, |
| | 1245 | | MediaStream? audioStream, |
| | 1246 | | ICollection<MediaStream> candidateAudioStreams, |
| | 1247 | | MediaStream? subtitleStream, |
| | 1248 | | bool isEligibleForDirectPlay, |
| | 1249 | | bool isEligibleForDirectStream) |
| | 1250 | | { |
| 254 | 1251 | | if (options.ForceDirectPlay) |
| | 1252 | | { |
| 0 | 1253 | | return (null, PlayMethod.DirectPlay, audioStream?.Index, 0); |
| | 1254 | | } |
| | 1255 | |
|
| 254 | 1256 | | if (options.ForceDirectStream) |
| | 1257 | | { |
| 0 | 1258 | | return (null, PlayMethod.DirectStream, audioStream?.Index, 0); |
| | 1259 | | } |
| | 1260 | |
|
| 254 | 1261 | | DeviceProfile profile = options.Profile; |
| 254 | 1262 | | string container = mediaSource.Container; |
| | 1263 | |
|
| | 1264 | | // Check container conditions |
| 254 | 1265 | | var containerProfileReasons = GetCompatibilityContainer(options, mediaSource, container, videoStream); |
| | 1266 | |
|
| | 1267 | | // Check video conditions |
| 254 | 1268 | | var videoCodecProfileReasons = videoStream is null ? default : GetCompatibilityVideoCodec(options, mediaSour |
| | 1269 | |
|
| | 1270 | | // Check audio candidates profile conditions |
| 254 | 1271 | | var audioStreamMatches = candidateAudioStreams.ToDictionary(s => s, audioStream => GetCompatibilityAudioCode |
| | 1272 | |
|
| 254 | 1273 | | TranscodeReason subtitleProfileReasons = 0; |
| 254 | 1274 | | if (subtitleStream is not null) |
| | 1275 | | { |
| 223 | 1276 | | var subtitleProfile = GetSubtitleProfile(mediaSource, subtitleStream, options.Profile.SubtitleProfiles, |
| | 1277 | |
|
| 223 | 1278 | | if (subtitleProfile.Method != SubtitleDeliveryMethod.Drop |
| 223 | 1279 | | && subtitleProfile.Method != SubtitleDeliveryMethod.External |
| 223 | 1280 | | && subtitleProfile.Method != SubtitleDeliveryMethod.Embed) |
| | 1281 | | { |
| 0 | 1282 | | _logger.LogDebug("Not eligible for {0} due to unsupported subtitles", PlayMethod.DirectPlay); |
| 0 | 1283 | | subtitleProfileReasons |= TranscodeReason.SubtitleCodecNotSupported; |
| | 1284 | | } |
| | 1285 | | } |
| | 1286 | |
|
| 254 | 1287 | | var containerSupported = false; |
| 254 | 1288 | | TranscodeReason[] rankings = [TranscodeReason.VideoCodecNotSupported, VideoCodecReasons, TranscodeReason.Aud |
| | 1289 | |
|
| | 1290 | | // Check DirectPlay profiles to see if it can be direct played |
| 254 | 1291 | | var analyzedProfiles = profile.DirectPlayProfiles |
| 254 | 1292 | | .Where(directPlayProfile => directPlayProfile.Type == DlnaProfileType.Video) |
| 254 | 1293 | | .Select((directPlayProfile, order) => |
| 254 | 1294 | | { |
| 254 | 1295 | | TranscodeReason directPlayProfileReasons = 0; |
| 254 | 1296 | | TranscodeReason audioCodecProfileReasons = 0; |
| 254 | 1297 | |
|
| 254 | 1298 | | // Check container type |
| 254 | 1299 | | if (!directPlayProfile.SupportsContainer(container)) |
| 254 | 1300 | | { |
| 254 | 1301 | | directPlayProfileReasons |= TranscodeReason.ContainerNotSupported; |
| 254 | 1302 | | } |
| 254 | 1303 | | else |
| 254 | 1304 | | { |
| 254 | 1305 | | containerSupported = true; |
| 254 | 1306 | | } |
| 254 | 1307 | |
|
| 254 | 1308 | | // Check video codec |
| 254 | 1309 | | string? videoCodec = videoStream?.Codec; |
| 254 | 1310 | | if (!directPlayProfile.SupportsVideoCodec(videoCodec)) |
| 254 | 1311 | | { |
| 254 | 1312 | | directPlayProfileReasons |= TranscodeReason.VideoCodecNotSupported; |
| 254 | 1313 | | } |
| 254 | 1314 | |
|
| 254 | 1315 | | // Check audio codec |
| 254 | 1316 | | MediaStream? selectedAudioStream = null; |
| 254 | 1317 | | if (candidateAudioStreams.Count != 0) |
| 254 | 1318 | | { |
| 254 | 1319 | | selectedAudioStream = candidateAudioStreams.FirstOrDefault(audioStream => directPlayProfile.Supp |
| 254 | 1320 | | if (selectedAudioStream is null) |
| 254 | 1321 | | { |
| 254 | 1322 | | directPlayProfileReasons |= TranscodeReason.AudioCodecNotSupported; |
| 254 | 1323 | | } |
| 254 | 1324 | | else |
| 254 | 1325 | | { |
| 254 | 1326 | | audioCodecProfileReasons = audioStreamMatches.GetValueOrDefault(selectedAudioStream); |
| 254 | 1327 | | } |
| 254 | 1328 | | } |
| 254 | 1329 | |
|
| 254 | 1330 | | var failureReasons = directPlayProfileReasons | containerProfileReasons | subtitleProfileReasons; |
| 254 | 1331 | |
|
| 254 | 1332 | | if ((failureReasons & TranscodeReason.VideoCodecNotSupported) == 0) |
| 254 | 1333 | | { |
| 254 | 1334 | | failureReasons |= videoCodecProfileReasons; |
| 254 | 1335 | | } |
| 254 | 1336 | |
|
| 254 | 1337 | | if ((failureReasons & TranscodeReason.AudioCodecNotSupported) == 0) |
| 254 | 1338 | | { |
| 254 | 1339 | | failureReasons |= audioCodecProfileReasons; |
| 254 | 1340 | | } |
| 254 | 1341 | |
|
| 254 | 1342 | | var directStreamFailureReasons = failureReasons & (~DirectStreamReasons); |
| 254 | 1343 | |
|
| 254 | 1344 | | PlayMethod? playMethod = null; |
| 254 | 1345 | | if (failureReasons == 0 && isEligibleForDirectPlay && mediaSource.SupportsDirectPlay) |
| 254 | 1346 | | { |
| 254 | 1347 | | playMethod = PlayMethod.DirectPlay; |
| 254 | 1348 | | } |
| 254 | 1349 | | else if (directStreamFailureReasons == 0 && isEligibleForDirectStream && mediaSource.SupportsDirectS |
| 254 | 1350 | | { |
| 254 | 1351 | | playMethod = PlayMethod.DirectStream; |
| 254 | 1352 | | } |
| 254 | 1353 | |
|
| 254 | 1354 | | var ranked = GetRank(ref failureReasons, rankings); |
| 254 | 1355 | |
|
| 254 | 1356 | | return (Result: (Profile: directPlayProfile, PlayMethod: playMethod, AudioStreamIndex: selectedAudio |
| 254 | 1357 | | }) |
| 254 | 1358 | | .OrderByDescending(analysis => analysis.Result.PlayMethod) |
| 254 | 1359 | | .ThenByDescending(analysis => analysis.Rank) |
| 254 | 1360 | | .ThenBy(analysis => analysis.Order) |
| 254 | 1361 | | .ToArray() |
| 254 | 1362 | | .ToLookup(analysis => analysis.Result.PlayMethod is not null); |
| | 1363 | |
|
| 254 | 1364 | | var profileMatch = analyzedProfiles[true] |
| 254 | 1365 | | .Select(analysis => analysis.Result) |
| 254 | 1366 | | .FirstOrDefault(); |
| 254 | 1367 | | if (profileMatch.Profile is not null) |
| | 1368 | | { |
| 124 | 1369 | | return profileMatch; |
| | 1370 | | } |
| | 1371 | |
|
| 130 | 1372 | | var failureReasons = analyzedProfiles[false] |
| 130 | 1373 | | .Select(analysis => analysis.Result) |
| 130 | 1374 | | .Where(result => !containerSupported || !result.TranscodeReason.HasFlag(TranscodeReason.ContainerNotSupp |
| 130 | 1375 | | .FirstOrDefault().TranscodeReason; |
| 130 | 1376 | | if (failureReasons == 0) |
| | 1377 | | { |
| 14 | 1378 | | failureReasons = TranscodeReason.DirectPlayError; |
| | 1379 | | } |
| | 1380 | |
|
| 130 | 1381 | | return (Profile: null, PlayMethod: null, AudioStreamIndex: null, TranscodeReasons: failureReasons); |
| | 1382 | | } |
| | 1383 | |
|
| | 1384 | | private TranscodeReason AggregateFailureConditions(MediaSourceInfo mediaSource, DeviceProfile profile, string ty |
| | 1385 | | { |
| 1661 | 1386 | | return conditions.Aggregate<ProfileCondition, TranscodeReason>(0, (reasons, i) => |
| 1661 | 1387 | | { |
| 1661 | 1388 | | LogConditionFailure(profile, type, i, mediaSource); |
| 1661 | 1389 | | var transcodeReasons = GetTranscodeReasonForFailedCondition(i); |
| 1661 | 1390 | | return reasons | transcodeReasons; |
| 1661 | 1391 | | }); |
| | 1392 | | } |
| | 1393 | |
|
| | 1394 | | private void LogConditionFailure(DeviceProfile profile, string type, ProfileCondition condition, MediaSourceInfo |
| | 1395 | | { |
| 247 | 1396 | | _logger.LogDebug( |
| 247 | 1397 | | "Profile: {0}, DirectPlay=false. Reason={1}.{2} Condition: {3}. ConditionValue: {4}. IsRequired: {5}. Pa |
| 247 | 1398 | | type, |
| 247 | 1399 | | profile.Name ?? "Unknown Profile", |
| 247 | 1400 | | condition.Property, |
| 247 | 1401 | | condition.Condition, |
| 247 | 1402 | | condition.Value ?? string.Empty, |
| 247 | 1403 | | condition.IsRequired, |
| 247 | 1404 | | mediaSource.Path ?? "Unknown path"); |
| 247 | 1405 | | } |
| | 1406 | |
|
| | 1407 | | /// <summary> |
| | 1408 | | /// Normalizes input container. |
| | 1409 | | /// </summary> |
| | 1410 | | /// <param name="mediaSource">The <see cref="MediaSourceInfo"/>.</param> |
| | 1411 | | /// <param name="subtitleStream">The <see cref="MediaStream"/> of the subtitle stream.</param> |
| | 1412 | | /// <param name="subtitleProfiles">The list of supported <see cref="SubtitleProfile"/>s.</param> |
| | 1413 | | /// <param name="playMethod">The <see cref="PlayMethod"/>.</param> |
| | 1414 | | /// <param name="transcoderSupport">The <see cref="ITranscoderSupport"/>.</param> |
| | 1415 | | /// <param name="outputContainer">The output container.</param> |
| | 1416 | | /// <param name="transcodingSubProtocol">The subtitle transcoding protocol.</param> |
| | 1417 | | /// <returns>The normalized input container.</returns> |
| | 1418 | | public static SubtitleProfile GetSubtitleProfile( |
| | 1419 | | MediaSourceInfo mediaSource, |
| | 1420 | | MediaStream subtitleStream, |
| | 1421 | | SubtitleProfile[] subtitleProfiles, |
| | 1422 | | PlayMethod playMethod, |
| | 1423 | | ITranscoderSupport transcoderSupport, |
| | 1424 | | string? outputContainer, |
| | 1425 | | MediaStreamProtocol? transcodingSubProtocol) |
| | 1426 | | { |
| 462 | 1427 | | if (!subtitleStream.IsExternal && (playMethod != PlayMethod.Transcode || transcodingSubProtocol != MediaStre |
| | 1428 | | { |
| | 1429 | | // Look for supported embedded subs of the same format |
| 0 | 1430 | | foreach (var profile in subtitleProfiles) |
| | 1431 | | { |
| 0 | 1432 | | if (!profile.SupportsLanguage(subtitleStream.Language)) |
| | 1433 | | { |
| | 1434 | | continue; |
| | 1435 | | } |
| | 1436 | |
|
| 0 | 1437 | | if (profile.Method != SubtitleDeliveryMethod.Embed) |
| | 1438 | | { |
| | 1439 | | continue; |
| | 1440 | | } |
| | 1441 | |
|
| 0 | 1442 | | if (!ContainerHelper.ContainsContainer(profile.Container, outputContainer)) |
| | 1443 | | { |
| | 1444 | | continue; |
| | 1445 | | } |
| | 1446 | |
|
| 0 | 1447 | | if (playMethod == PlayMethod.Transcode && !IsSubtitleEmbedSupported(outputContainer)) |
| | 1448 | | { |
| | 1449 | | continue; |
| | 1450 | | } |
| | 1451 | |
|
| 0 | 1452 | | if (subtitleStream.IsTextSubtitleStream == MediaStream.IsTextFormat(profile.Format) && string.Equals |
| | 1453 | | { |
| 0 | 1454 | | return profile; |
| | 1455 | | } |
| | 1456 | | } |
| | 1457 | |
|
| | 1458 | | // Look for supported embedded subs of a convertible format |
| 0 | 1459 | | foreach (var profile in subtitleProfiles) |
| | 1460 | | { |
| 0 | 1461 | | if (!profile.SupportsLanguage(subtitleStream.Language)) |
| | 1462 | | { |
| | 1463 | | continue; |
| | 1464 | | } |
| | 1465 | |
|
| 0 | 1466 | | if (profile.Method != SubtitleDeliveryMethod.Embed) |
| | 1467 | | { |
| | 1468 | | continue; |
| | 1469 | | } |
| | 1470 | |
|
| 0 | 1471 | | if (!ContainerHelper.ContainsContainer(profile.Container, outputContainer)) |
| | 1472 | | { |
| | 1473 | | continue; |
| | 1474 | | } |
| | 1475 | |
|
| 0 | 1476 | | if (playMethod == PlayMethod.Transcode && !IsSubtitleEmbedSupported(outputContainer)) |
| | 1477 | | { |
| | 1478 | | continue; |
| | 1479 | | } |
| | 1480 | |
|
| 0 | 1481 | | if (subtitleStream.IsTextSubtitleStream && subtitleStream.SupportsSubtitleConversionTo(profile.Forma |
| | 1482 | | { |
| 0 | 1483 | | return profile; |
| | 1484 | | } |
| | 1485 | | } |
| | 1486 | | } |
| | 1487 | |
|
| | 1488 | | // Look for an external or hls profile that matches the stream type (text/graphical) and doesn't require con |
| 462 | 1489 | | return GetExternalSubtitleProfile(mediaSource, subtitleStream, subtitleProfiles, playMethod, transcoderSuppo |
| 462 | 1490 | | GetExternalSubtitleProfile(mediaSource, subtitleStream, subtitleProfiles, playMethod, transcoderSupport, |
| 462 | 1491 | | new SubtitleProfile |
| 462 | 1492 | | { |
| 462 | 1493 | | Method = SubtitleDeliveryMethod.Encode, |
| 462 | 1494 | | Format = subtitleStream.Codec |
| 462 | 1495 | | }; |
| | 1496 | | } |
| | 1497 | |
|
| | 1498 | | private static bool IsSubtitleEmbedSupported(string? transcodingContainer) |
| | 1499 | | { |
| 0 | 1500 | | if (!string.IsNullOrEmpty(transcodingContainer)) |
| | 1501 | | { |
| 0 | 1502 | | if (ContainerHelper.ContainsContainer(transcodingContainer, "ts,mpegts,mp4")) |
| | 1503 | | { |
| 0 | 1504 | | return false; |
| | 1505 | | } |
| | 1506 | |
|
| 0 | 1507 | | if (ContainerHelper.ContainsContainer(transcodingContainer, "mkv,matroska")) |
| | 1508 | | { |
| 0 | 1509 | | return true; |
| | 1510 | | } |
| | 1511 | | } |
| | 1512 | |
|
| 0 | 1513 | | return false; |
| | 1514 | | } |
| | 1515 | |
|
| | 1516 | | private static SubtitleProfile? GetExternalSubtitleProfile(MediaSourceInfo mediaSource, MediaStream subtitleStre |
| | 1517 | | { |
| 5066 | 1518 | | foreach (var profile in subtitleProfiles) |
| | 1519 | | { |
| 2016 | 1520 | | if (profile.Method != SubtitleDeliveryMethod.External && profile.Method != SubtitleDeliveryMethod.Hls) |
| | 1521 | | { |
| | 1522 | | continue; |
| | 1523 | | } |
| | 1524 | |
|
| 1382 | 1525 | | if (profile.Method == SubtitleDeliveryMethod.Hls && playMethod != PlayMethod.Transcode) |
| | 1526 | | { |
| | 1527 | | continue; |
| | 1528 | | } |
| | 1529 | |
|
| 1382 | 1530 | | if (!profile.SupportsLanguage(subtitleStream.Language)) |
| | 1531 | | { |
| | 1532 | | continue; |
| | 1533 | | } |
| | 1534 | |
|
| 1382 | 1535 | | if (!subtitleStream.IsExternal && !transcoderSupport.CanExtractSubtitles(subtitleStream.Codec)) |
| | 1536 | | { |
| | 1537 | | continue; |
| | 1538 | | } |
| | 1539 | |
|
| 1382 | 1540 | | if ((profile.Method == SubtitleDeliveryMethod.External && subtitleStream.IsTextSubtitleStream == MediaSt |
| 1382 | 1541 | | (profile.Method == SubtitleDeliveryMethod.Hls && subtitleStream.IsTextSubtitleStream)) |
| | 1542 | | { |
| 1364 | 1543 | | bool requiresConversion = !string.Equals(subtitleStream.Codec, profile.Format, StringComparison.Ordi |
| | 1544 | |
|
| 1364 | 1545 | | if (!requiresConversion) |
| | 1546 | | { |
| 176 | 1547 | | return profile; |
| | 1548 | | } |
| | 1549 | |
|
| 1188 | 1550 | | if (!allowConversion) |
| | 1551 | | { |
| | 1552 | | continue; |
| | 1553 | | } |
| | 1554 | |
|
| | 1555 | | // TODO: Build this into subtitleStream.SupportsExternalStream |
| 286 | 1556 | | if (mediaSource.IsInfiniteStream) |
| | 1557 | | { |
| | 1558 | | continue; |
| | 1559 | | } |
| | 1560 | |
|
| 286 | 1561 | | if (subtitleStream.IsTextSubtitleStream && subtitleStream.SupportsExternalStream && subtitleStream.S |
| | 1562 | | { |
| 286 | 1563 | | return profile; |
| | 1564 | | } |
| | 1565 | | } |
| | 1566 | | } |
| | 1567 | |
|
| 286 | 1568 | | return null; |
| | 1569 | | } |
| | 1570 | |
|
| | 1571 | | private bool IsBitrateLimitExceeded(MediaSourceInfo item, long maxBitrate) |
| | 1572 | | { |
| | 1573 | | // Don't restrict bitrate if item is remote. |
| 278 | 1574 | | if (item.IsRemote) |
| | 1575 | | { |
| 0 | 1576 | | return false; |
| | 1577 | | } |
| | 1578 | |
|
| | 1579 | | // If no maximum bitrate is set, default to no maximum bitrate. |
| 278 | 1580 | | long requestedMaxBitrate = maxBitrate > 0 ? maxBitrate : int.MaxValue; |
| | 1581 | |
|
| | 1582 | | // If we don't know the item bitrate, then force a transcode if requested max bitrate is under 40 mbps |
| 278 | 1583 | | int itemBitrate = item.Bitrate ?? 40000000; |
| | 1584 | |
|
| 278 | 1585 | | if (itemBitrate > requestedMaxBitrate) |
| | 1586 | | { |
| 24 | 1587 | | _logger.LogDebug( |
| 24 | 1588 | | "Bitrate exceeds limit: media bitrate: {MediaBitrate}, max bitrate: {MaxBitrate}", |
| 24 | 1589 | | itemBitrate, |
| 24 | 1590 | | requestedMaxBitrate); |
| 24 | 1591 | | return true; |
| | 1592 | | } |
| | 1593 | |
|
| 254 | 1594 | | return false; |
| | 1595 | | } |
| | 1596 | |
|
| | 1597 | | private static void ValidateMediaOptions(MediaOptions options, bool isMediaSource) |
| | 1598 | | { |
| 278 | 1599 | | if (options.ItemId.IsEmpty()) |
| | 1600 | | { |
| 0 | 1601 | | ArgumentException.ThrowIfNullOrEmpty(options.DeviceId); |
| | 1602 | | } |
| | 1603 | |
|
| 278 | 1604 | | if (options.Profile is null) |
| | 1605 | | { |
| 0 | 1606 | | throw new ArgumentException("Profile is required"); |
| | 1607 | | } |
| | 1608 | |
|
| 278 | 1609 | | if (options.MediaSources is null) |
| | 1610 | | { |
| 0 | 1611 | | throw new ArgumentException("MediaSources is required"); |
| | 1612 | | } |
| | 1613 | |
|
| 278 | 1614 | | if (isMediaSource) |
| | 1615 | | { |
| 278 | 1616 | | if (options.AudioStreamIndex.HasValue && string.IsNullOrEmpty(options.MediaSourceId)) |
| | 1617 | | { |
| 0 | 1618 | | throw new ArgumentException("MediaSourceId is required when a specific audio stream is requested"); |
| | 1619 | | } |
| | 1620 | |
|
| 278 | 1621 | | if (options.SubtitleStreamIndex.HasValue && string.IsNullOrEmpty(options.MediaSourceId)) |
| | 1622 | | { |
| 0 | 1623 | | throw new ArgumentException("MediaSourceId is required when a specific subtitle stream is requested" |
| | 1624 | | } |
| | 1625 | | } |
| 278 | 1626 | | } |
| | 1627 | |
|
| | 1628 | | private static IEnumerable<ProfileCondition> GetProfileConditionsForVideoAudio( |
| | 1629 | | IEnumerable<CodecProfile> codecProfiles, |
| | 1630 | | string container, |
| | 1631 | | string codec, |
| | 1632 | | int? audioChannels, |
| | 1633 | | int? audioBitrate, |
| | 1634 | | int? audioSampleRate, |
| | 1635 | | int? audioBitDepth, |
| | 1636 | | string audioProfile, |
| | 1637 | | bool? isSecondaryAudio) |
| | 1638 | | { |
| 1005 | 1639 | | return codecProfiles |
| 1005 | 1640 | | .Where(profile => profile.Type == CodecType.VideoAudio && |
| 1005 | 1641 | | profile.ContainsAnyCodec(codec, container) && |
| 1005 | 1642 | | profile.ApplyConditions.All(applyCondition => ConditionProcessor.IsVideoAudioConditionSatisfied(appl |
| 1005 | 1643 | | .SelectMany(profile => profile.Conditions) |
| 1005 | 1644 | | .Where(condition => !ConditionProcessor.IsVideoAudioConditionSatisfied(condition, audioChannels, audioBi |
| | 1645 | | } |
| | 1646 | |
|
| | 1647 | | private static IEnumerable<ProfileCondition> GetProfileConditionsForAudio( |
| | 1648 | | IEnumerable<CodecProfile> codecProfiles, |
| | 1649 | | string container, |
| | 1650 | | string? codec, |
| | 1651 | | int? audioChannels, |
| | 1652 | | int? audioBitrate, |
| | 1653 | | int? audioSampleRate, |
| | 1654 | | int? audioBitDepth, |
| | 1655 | | bool checkConditions) |
| | 1656 | | { |
| 0 | 1657 | | var conditions = codecProfiles |
| 0 | 1658 | | .Where(profile => profile.Type == CodecType.Audio && |
| 0 | 1659 | | profile.ContainsAnyCodec(codec, container) && |
| 0 | 1660 | | profile.ApplyConditions.All(applyCondition => ConditionProcessor.IsAudioConditionSatisfied(applyCond |
| 0 | 1661 | | .SelectMany(profile => profile.Conditions); |
| | 1662 | |
|
| 0 | 1663 | | if (!checkConditions) |
| | 1664 | | { |
| 0 | 1665 | | return conditions; |
| | 1666 | | } |
| | 1667 | |
|
| 0 | 1668 | | return conditions.Where(condition => !ConditionProcessor.IsAudioConditionSatisfied(condition, audioChannels, |
| | 1669 | | } |
| | 1670 | |
|
| | 1671 | | private void ApplyTranscodingConditions(StreamInfo item, IEnumerable<ProfileCondition> conditions, string? quali |
| | 1672 | | { |
| 3492 | 1673 | | foreach (ProfileCondition condition in conditions) |
| | 1674 | | { |
| 1244 | 1675 | | string value = condition.Value; |
| | 1676 | |
|
| 1244 | 1677 | | if (string.IsNullOrEmpty(value)) |
| | 1678 | | { |
| | 1679 | | continue; |
| | 1680 | | } |
| | 1681 | |
|
| | 1682 | | // No way to express this |
| 1244 | 1683 | | if (condition.Condition == ProfileConditionType.GreaterThanEqual) |
| | 1684 | | { |
| | 1685 | | continue; |
| | 1686 | | } |
| | 1687 | |
|
| 1244 | 1688 | | switch (condition.Property) |
| | 1689 | | { |
| | 1690 | | case ProfileConditionValue.AudioBitrate: |
| | 1691 | | { |
| 0 | 1692 | | if (!enableNonQualifiedConditions) |
| | 1693 | | { |
| | 1694 | | continue; |
| | 1695 | | } |
| | 1696 | |
|
| 0 | 1697 | | if (int.TryParse(value, CultureInfo.InvariantCulture, out var num)) |
| | 1698 | | { |
| 0 | 1699 | | if (condition.Condition == ProfileConditionType.Equals) |
| | 1700 | | { |
| 0 | 1701 | | item.AudioBitrate = num; |
| | 1702 | | } |
| 0 | 1703 | | else if (condition.Condition == ProfileConditionType.LessThanEqual) |
| | 1704 | | { |
| 0 | 1705 | | item.AudioBitrate = Math.Min(num, item.AudioBitrate ?? num); |
| | 1706 | | } |
| 0 | 1707 | | else if (condition.Condition == ProfileConditionType.GreaterThanEqual) |
| | 1708 | | { |
| 0 | 1709 | | item.AudioBitrate = Math.Max(num, item.AudioBitrate ?? num); |
| | 1710 | | } |
| | 1711 | | } |
| | 1712 | |
|
| 0 | 1713 | | break; |
| | 1714 | | } |
| | 1715 | |
|
| | 1716 | | case ProfileConditionValue.AudioSampleRate: |
| | 1717 | | { |
| 0 | 1718 | | if (!enableNonQualifiedConditions) |
| | 1719 | | { |
| | 1720 | | continue; |
| | 1721 | | } |
| | 1722 | |
|
| 0 | 1723 | | if (int.TryParse(value, CultureInfo.InvariantCulture, out var num)) |
| | 1724 | | { |
| 0 | 1725 | | if (condition.Condition == ProfileConditionType.Equals) |
| | 1726 | | { |
| 0 | 1727 | | item.AudioSampleRate = num; |
| | 1728 | | } |
| 0 | 1729 | | else if (condition.Condition == ProfileConditionType.LessThanEqual) |
| | 1730 | | { |
| 0 | 1731 | | item.AudioSampleRate = Math.Min(num, item.AudioSampleRate ?? num); |
| | 1732 | | } |
| 0 | 1733 | | else if (condition.Condition == ProfileConditionType.GreaterThanEqual) |
| | 1734 | | { |
| 0 | 1735 | | item.AudioSampleRate = Math.Max(num, item.AudioSampleRate ?? num); |
| | 1736 | | } |
| | 1737 | | } |
| | 1738 | |
|
| 0 | 1739 | | break; |
| | 1740 | | } |
| | 1741 | |
|
| | 1742 | | case ProfileConditionValue.AudioChannels: |
| | 1743 | | { |
| 28 | 1744 | | if (string.IsNullOrEmpty(qualifier)) |
| | 1745 | | { |
| 0 | 1746 | | if (!enableNonQualifiedConditions) |
| | 1747 | | { |
| 0 | 1748 | | continue; |
| | 1749 | | } |
| | 1750 | | } |
| | 1751 | | else |
| | 1752 | | { |
| 28 | 1753 | | if (!enableQualifiedConditions) |
| | 1754 | | { |
| | 1755 | | continue; |
| | 1756 | | } |
| | 1757 | | } |
| | 1758 | |
|
| 28 | 1759 | | if (int.TryParse(value, CultureInfo.InvariantCulture, out var num)) |
| | 1760 | | { |
| 28 | 1761 | | if (condition.Condition == ProfileConditionType.Equals) |
| | 1762 | | { |
| 0 | 1763 | | item.SetOption(qualifier, "audiochannels", num.ToString(CultureInfo.InvariantCulture |
| | 1764 | | } |
| 28 | 1765 | | else if (condition.Condition == ProfileConditionType.LessThanEqual) |
| | 1766 | | { |
| 28 | 1767 | | item.SetOption(qualifier, "audiochannels", Math.Min(num, item.GetTargetAudioChannels |
| | 1768 | | } |
| 0 | 1769 | | else if (condition.Condition == ProfileConditionType.GreaterThanEqual) |
| | 1770 | | { |
| 0 | 1771 | | item.SetOption(qualifier, "audiochannels", Math.Max(num, item.GetTargetAudioChannels |
| | 1772 | | } |
| | 1773 | | } |
| | 1774 | |
|
| 0 | 1775 | | break; |
| | 1776 | | } |
| | 1777 | |
|
| | 1778 | | case ProfileConditionValue.IsAvc: |
| | 1779 | | { |
| 0 | 1780 | | if (!enableNonQualifiedConditions) |
| | 1781 | | { |
| | 1782 | | continue; |
| | 1783 | | } |
| | 1784 | |
|
| 0 | 1785 | | if (bool.TryParse(value, out var isAvc)) |
| | 1786 | | { |
| 0 | 1787 | | if (isAvc && condition.Condition == ProfileConditionType.Equals) |
| | 1788 | | { |
| 0 | 1789 | | item.RequireAvc = true; |
| | 1790 | | } |
| 0 | 1791 | | else if (!isAvc && condition.Condition == ProfileConditionType.NotEquals) |
| | 1792 | | { |
| 0 | 1793 | | item.RequireAvc = true; |
| | 1794 | | } |
| | 1795 | | } |
| | 1796 | |
|
| 0 | 1797 | | break; |
| | 1798 | | } |
| | 1799 | |
|
| | 1800 | | case ProfileConditionValue.IsAnamorphic: |
| | 1801 | | { |
| 201 | 1802 | | if (!enableNonQualifiedConditions) |
| | 1803 | | { |
| | 1804 | | continue; |
| | 1805 | | } |
| | 1806 | |
|
| 201 | 1807 | | if (bool.TryParse(value, out var isAnamorphic)) |
| | 1808 | | { |
| 201 | 1809 | | if (isAnamorphic && condition.Condition == ProfileConditionType.Equals) |
| | 1810 | | { |
| 0 | 1811 | | item.RequireNonAnamorphic = true; |
| | 1812 | | } |
| 201 | 1813 | | else if (!isAnamorphic && condition.Condition == ProfileConditionType.NotEquals) |
| | 1814 | | { |
| 0 | 1815 | | item.RequireNonAnamorphic = true; |
| | 1816 | | } |
| | 1817 | | } |
| | 1818 | |
|
| 0 | 1819 | | break; |
| | 1820 | | } |
| | 1821 | |
|
| | 1822 | | case ProfileConditionValue.IsInterlaced: |
| | 1823 | | { |
| 109 | 1824 | | if (string.IsNullOrEmpty(qualifier)) |
| | 1825 | | { |
| 0 | 1826 | | if (!enableNonQualifiedConditions) |
| | 1827 | | { |
| 0 | 1828 | | continue; |
| | 1829 | | } |
| | 1830 | | } |
| | 1831 | | else |
| | 1832 | | { |
| 109 | 1833 | | if (!enableQualifiedConditions) |
| | 1834 | | { |
| | 1835 | | continue; |
| | 1836 | | } |
| | 1837 | | } |
| | 1838 | |
|
| 109 | 1839 | | if (bool.TryParse(value, out var isInterlaced)) |
| | 1840 | | { |
| 109 | 1841 | | if (!isInterlaced && condition.Condition == ProfileConditionType.Equals) |
| | 1842 | | { |
| 0 | 1843 | | item.SetOption(qualifier, "deinterlace", "true"); |
| | 1844 | | } |
| 109 | 1845 | | else if (isInterlaced && condition.Condition == ProfileConditionType.NotEquals) |
| | 1846 | | { |
| 109 | 1847 | | item.SetOption(qualifier, "deinterlace", "true"); |
| | 1848 | | } |
| | 1849 | | } |
| | 1850 | |
|
| 109 | 1851 | | break; |
| | 1852 | | } |
| | 1853 | |
|
| | 1854 | | case ProfileConditionValue.AudioProfile: |
| | 1855 | | case ProfileConditionValue.Has64BitOffsets: |
| | 1856 | | case ProfileConditionValue.PacketLength: |
| | 1857 | | case ProfileConditionValue.NumStreams: |
| | 1858 | | case ProfileConditionValue.NumAudioStreams: |
| | 1859 | | case ProfileConditionValue.NumVideoStreams: |
| | 1860 | | case ProfileConditionValue.IsSecondaryAudio: |
| | 1861 | | case ProfileConditionValue.VideoTimestamp: |
| | 1862 | | { |
| | 1863 | | // Not supported yet |
| | 1864 | | break; |
| | 1865 | | } |
| | 1866 | |
|
| | 1867 | | case ProfileConditionValue.RefFrames: |
| | 1868 | | { |
| 2 | 1869 | | if (string.IsNullOrEmpty(qualifier)) |
| | 1870 | | { |
| 0 | 1871 | | if (!enableNonQualifiedConditions) |
| | 1872 | | { |
| 0 | 1873 | | continue; |
| | 1874 | | } |
| | 1875 | | } |
| | 1876 | | else |
| | 1877 | | { |
| 2 | 1878 | | if (!enableQualifiedConditions) |
| | 1879 | | { |
| | 1880 | | continue; |
| | 1881 | | } |
| | 1882 | | } |
| | 1883 | |
|
| 2 | 1884 | | if (int.TryParse(value, CultureInfo.InvariantCulture, out var num)) |
| | 1885 | | { |
| 2 | 1886 | | if (condition.Condition == ProfileConditionType.Equals) |
| | 1887 | | { |
| 0 | 1888 | | item.SetOption(qualifier, "maxrefframes", num.ToString(CultureInfo.InvariantCulture) |
| | 1889 | | } |
| 2 | 1890 | | else if (condition.Condition == ProfileConditionType.LessThanEqual) |
| | 1891 | | { |
| 2 | 1892 | | item.SetOption(qualifier, "maxrefframes", Math.Min(num, item.GetTargetRefFrames(qual |
| | 1893 | | } |
| 0 | 1894 | | else if (condition.Condition == ProfileConditionType.GreaterThanEqual) |
| | 1895 | | { |
| 0 | 1896 | | item.SetOption(qualifier, "maxrefframes", Math.Max(num, item.GetTargetRefFrames(qual |
| | 1897 | | } |
| | 1898 | | } |
| | 1899 | |
|
| 0 | 1900 | | break; |
| | 1901 | | } |
| | 1902 | |
|
| | 1903 | | case ProfileConditionValue.VideoBitDepth: |
| | 1904 | | { |
| 0 | 1905 | | if (string.IsNullOrEmpty(qualifier)) |
| | 1906 | | { |
| 0 | 1907 | | if (!enableNonQualifiedConditions) |
| | 1908 | | { |
| 0 | 1909 | | continue; |
| | 1910 | | } |
| | 1911 | | } |
| | 1912 | | else |
| | 1913 | | { |
| 0 | 1914 | | if (!enableQualifiedConditions) |
| | 1915 | | { |
| | 1916 | | continue; |
| | 1917 | | } |
| | 1918 | | } |
| | 1919 | |
|
| 0 | 1920 | | if (int.TryParse(value, CultureInfo.InvariantCulture, out var num)) |
| | 1921 | | { |
| 0 | 1922 | | if (condition.Condition == ProfileConditionType.Equals) |
| | 1923 | | { |
| 0 | 1924 | | item.SetOption(qualifier, "videobitdepth", num.ToString(CultureInfo.InvariantCulture |
| | 1925 | | } |
| 0 | 1926 | | else if (condition.Condition == ProfileConditionType.LessThanEqual) |
| | 1927 | | { |
| 0 | 1928 | | item.SetOption(qualifier, "videobitdepth", Math.Min(num, item.GetTargetVideoBitDepth |
| | 1929 | | } |
| 0 | 1930 | | else if (condition.Condition == ProfileConditionType.GreaterThanEqual) |
| | 1931 | | { |
| 0 | 1932 | | item.SetOption(qualifier, "videobitdepth", Math.Max(num, item.GetTargetVideoBitDepth |
| | 1933 | | } |
| | 1934 | | } |
| | 1935 | |
|
| 0 | 1936 | | break; |
| | 1937 | | } |
| | 1938 | |
|
| | 1939 | | case ProfileConditionValue.VideoProfile: |
| | 1940 | | { |
| 224 | 1941 | | if (string.IsNullOrEmpty(qualifier)) |
| | 1942 | | { |
| | 1943 | | continue; |
| | 1944 | | } |
| | 1945 | |
|
| | 1946 | | // Change from split by | to comma |
| | 1947 | | // Strip spaces to avoid having to encode |
| 224 | 1948 | | var values = value |
| 224 | 1949 | | .Split('|', StringSplitOptions.RemoveEmptyEntries); |
| | 1950 | |
|
| 224 | 1951 | | if (condition.Condition == ProfileConditionType.Equals) |
| | 1952 | | { |
| 0 | 1953 | | item.SetOption(qualifier, "profile", string.Join(',', values)); |
| | 1954 | | } |
| 224 | 1955 | | else if (condition.Condition == ProfileConditionType.EqualsAny) |
| | 1956 | | { |
| 224 | 1957 | | var currentValue = item.GetOption(qualifier, "profile"); |
| 224 | 1958 | | if (!string.IsNullOrEmpty(currentValue) && values.Any(value => value == currentValue)) |
| | 1959 | | { |
| 71 | 1960 | | item.SetOption(qualifier, "profile", currentValue); |
| | 1961 | | } |
| | 1962 | | else |
| | 1963 | | { |
| 153 | 1964 | | item.SetOption(qualifier, "profile", string.Join(',', values)); |
| | 1965 | | } |
| | 1966 | | } |
| | 1967 | |
|
| 153 | 1968 | | break; |
| | 1969 | | } |
| | 1970 | |
|
| | 1971 | | case ProfileConditionValue.VideoRangeType: |
| | 1972 | | { |
| 258 | 1973 | | if (string.IsNullOrEmpty(qualifier)) |
| | 1974 | | { |
| | 1975 | | continue; |
| | 1976 | | } |
| | 1977 | |
|
| | 1978 | | // change from split by | to comma |
| | 1979 | | // strip spaces to avoid having to encode |
| 258 | 1980 | | var values = value |
| 258 | 1981 | | .Split('|', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries); |
| | 1982 | |
|
| 258 | 1983 | | if (condition.Condition == ProfileConditionType.Equals) |
| | 1984 | | { |
| 0 | 1985 | | item.SetOption(qualifier, "rangetype", string.Join(',', values)); |
| | 1986 | | } |
| 258 | 1987 | | else if (condition.Condition == ProfileConditionType.NotEquals) |
| | 1988 | | { |
| 0 | 1989 | | item.SetOption(qualifier, "rangetype", string.Join(',', Enum.GetNames(typeof(VideoRangeT |
| | 1990 | | } |
| 258 | 1991 | | else if (condition.Condition == ProfileConditionType.EqualsAny) |
| | 1992 | | { |
| 258 | 1993 | | var currentValue = item.GetOption(qualifier, "rangetype"); |
| 258 | 1994 | | if (!string.IsNullOrEmpty(currentValue) && values.Any(v => string.Equals(v, currentValue |
| | 1995 | | { |
| 0 | 1996 | | item.SetOption(qualifier, "rangetype", currentValue); |
| | 1997 | | } |
| | 1998 | | else |
| | 1999 | | { |
| 258 | 2000 | | item.SetOption(qualifier, "rangetype", string.Join(',', values)); |
| | 2001 | | } |
| | 2002 | | } |
| | 2003 | |
|
| 258 | 2004 | | break; |
| | 2005 | | } |
| | 2006 | |
|
| | 2007 | | case ProfileConditionValue.VideoCodecTag: |
| | 2008 | | { |
| 12 | 2009 | | if (string.IsNullOrEmpty(qualifier)) |
| | 2010 | | { |
| | 2011 | | continue; |
| | 2012 | | } |
| | 2013 | |
|
| | 2014 | | // change from split by | to comma |
| | 2015 | | // strip spaces to avoid having to encode |
| 12 | 2016 | | var values = value |
| 12 | 2017 | | .Split('|', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries); |
| | 2018 | |
|
| 12 | 2019 | | if (condition.Condition == ProfileConditionType.Equals) |
| | 2020 | | { |
| 0 | 2021 | | item.SetOption(qualifier, "codectag", string.Join(',', values)); |
| | 2022 | | } |
| 12 | 2023 | | else if (condition.Condition == ProfileConditionType.EqualsAny) |
| | 2024 | | { |
| 12 | 2025 | | var currentValue = item.GetOption(qualifier, "codectag"); |
| 12 | 2026 | | if (!string.IsNullOrEmpty(currentValue) && values.Any(v => string.Equals(v, currentValue |
| | 2027 | | { |
| 0 | 2028 | | item.SetOption(qualifier, "codectag", currentValue); |
| | 2029 | | } |
| | 2030 | | else |
| | 2031 | | { |
| 12 | 2032 | | item.SetOption(qualifier, "codectag", string.Join(',', values)); |
| | 2033 | | } |
| | 2034 | | } |
| | 2035 | |
|
| 12 | 2036 | | break; |
| | 2037 | | } |
| | 2038 | |
|
| | 2039 | | case ProfileConditionValue.Height: |
| | 2040 | | { |
| 0 | 2041 | | if (!enableNonQualifiedConditions) |
| | 2042 | | { |
| | 2043 | | continue; |
| | 2044 | | } |
| | 2045 | |
|
| 0 | 2046 | | if (int.TryParse(value, CultureInfo.InvariantCulture, out var num)) |
| | 2047 | | { |
| 0 | 2048 | | if (condition.Condition == ProfileConditionType.Equals) |
| | 2049 | | { |
| 0 | 2050 | | item.MaxHeight = num; |
| | 2051 | | } |
| 0 | 2052 | | else if (condition.Condition == ProfileConditionType.LessThanEqual) |
| | 2053 | | { |
| 0 | 2054 | | item.MaxHeight = Math.Min(num, item.MaxHeight ?? num); |
| | 2055 | | } |
| 0 | 2056 | | else if (condition.Condition == ProfileConditionType.GreaterThanEqual) |
| | 2057 | | { |
| 0 | 2058 | | item.MaxHeight = Math.Max(num, item.MaxHeight ?? num); |
| | 2059 | | } |
| | 2060 | | } |
| | 2061 | |
|
| 0 | 2062 | | break; |
| | 2063 | | } |
| | 2064 | |
|
| | 2065 | | case ProfileConditionValue.VideoBitrate: |
| | 2066 | | { |
| 32 | 2067 | | if (!enableNonQualifiedConditions) |
| | 2068 | | { |
| | 2069 | | continue; |
| | 2070 | | } |
| | 2071 | |
|
| 32 | 2072 | | if (int.TryParse(value, CultureInfo.InvariantCulture, out var num)) |
| | 2073 | | { |
| 32 | 2074 | | if (condition.Condition == ProfileConditionType.Equals) |
| | 2075 | | { |
| 0 | 2076 | | item.VideoBitrate = num; |
| | 2077 | | } |
| 32 | 2078 | | else if (condition.Condition == ProfileConditionType.LessThanEqual) |
| | 2079 | | { |
| 32 | 2080 | | item.VideoBitrate = Math.Min(num, item.VideoBitrate ?? num); |
| | 2081 | | } |
| 0 | 2082 | | else if (condition.Condition == ProfileConditionType.GreaterThanEqual) |
| | 2083 | | { |
| 0 | 2084 | | item.VideoBitrate = Math.Max(num, item.VideoBitrate ?? num); |
| | 2085 | | } |
| | 2086 | | } |
| | 2087 | |
|
| 0 | 2088 | | break; |
| | 2089 | | } |
| | 2090 | |
|
| | 2091 | | case ProfileConditionValue.VideoFramerate: |
| | 2092 | | { |
| 12 | 2093 | | if (!enableNonQualifiedConditions) |
| | 2094 | | { |
| | 2095 | | continue; |
| | 2096 | | } |
| | 2097 | |
|
| 12 | 2098 | | if (float.TryParse(value, CultureInfo.InvariantCulture, out var num)) |
| | 2099 | | { |
| 12 | 2100 | | if (condition.Condition == ProfileConditionType.Equals) |
| | 2101 | | { |
| 0 | 2102 | | item.MaxFramerate = num; |
| | 2103 | | } |
| 12 | 2104 | | else if (condition.Condition == ProfileConditionType.LessThanEqual) |
| | 2105 | | { |
| 12 | 2106 | | item.MaxFramerate = Math.Min(num, item.MaxFramerate ?? num); |
| | 2107 | | } |
| 0 | 2108 | | else if (condition.Condition == ProfileConditionType.GreaterThanEqual) |
| | 2109 | | { |
| 0 | 2110 | | item.MaxFramerate = Math.Max(num, item.MaxFramerate ?? num); |
| | 2111 | | } |
| | 2112 | | } |
| | 2113 | |
|
| 0 | 2114 | | break; |
| | 2115 | | } |
| | 2116 | |
|
| | 2117 | | case ProfileConditionValue.VideoLevel: |
| | 2118 | | { |
| 212 | 2119 | | if (string.IsNullOrEmpty(qualifier)) |
| | 2120 | | { |
| | 2121 | | continue; |
| | 2122 | | } |
| | 2123 | |
|
| 212 | 2124 | | if (int.TryParse(value, CultureInfo.InvariantCulture, out var num)) |
| | 2125 | | { |
| 212 | 2126 | | if (condition.Condition == ProfileConditionType.Equals) |
| | 2127 | | { |
| 0 | 2128 | | item.SetOption(qualifier, "level", num.ToString(CultureInfo.InvariantCulture)); |
| | 2129 | | } |
| 212 | 2130 | | else if (condition.Condition == ProfileConditionType.LessThanEqual) |
| | 2131 | | { |
| 212 | 2132 | | item.SetOption(qualifier, "level", Math.Min(num, item.GetTargetVideoLevel(qualifier) |
| | 2133 | | } |
| 0 | 2134 | | else if (condition.Condition == ProfileConditionType.GreaterThanEqual) |
| | 2135 | | { |
| 0 | 2136 | | item.SetOption(qualifier, "level", Math.Max(num, item.GetTargetVideoLevel(qualifier) |
| | 2137 | | } |
| | 2138 | | } |
| | 2139 | |
|
| 0 | 2140 | | break; |
| | 2141 | | } |
| | 2142 | |
|
| | 2143 | | case ProfileConditionValue.Width: |
| | 2144 | | { |
| 4 | 2145 | | if (!enableNonQualifiedConditions) |
| | 2146 | | { |
| | 2147 | | continue; |
| | 2148 | | } |
| | 2149 | |
|
| 4 | 2150 | | if (int.TryParse(value, CultureInfo.InvariantCulture, out var num)) |
| | 2151 | | { |
| 4 | 2152 | | if (condition.Condition == ProfileConditionType.Equals) |
| | 2153 | | { |
| 0 | 2154 | | item.MaxWidth = num; |
| | 2155 | | } |
| 4 | 2156 | | else if (condition.Condition == ProfileConditionType.LessThanEqual) |
| | 2157 | | { |
| 4 | 2158 | | item.MaxWidth = Math.Min(num, item.MaxWidth ?? num); |
| | 2159 | | } |
| 0 | 2160 | | else if (condition.Condition == ProfileConditionType.GreaterThanEqual) |
| | 2161 | | { |
| 0 | 2162 | | item.MaxWidth = Math.Max(num, item.MaxWidth ?? num); |
| | 2163 | | } |
| | 2164 | | } |
| | 2165 | |
|
| | 2166 | | break; |
| | 2167 | | } |
| | 2168 | |
|
| | 2169 | | default: |
| | 2170 | | break; |
| | 2171 | | } |
| | 2172 | | } |
| 502 | 2173 | | } |
| | 2174 | |
|
| | 2175 | | private static bool IsAudioContainerSupported(DirectPlayProfile profile, MediaSourceInfo item) |
| | 2176 | | { |
| | 2177 | | // Check container type |
| 0 | 2178 | | if (!profile.SupportsContainer(item.Container)) |
| | 2179 | | { |
| 0 | 2180 | | return false; |
| | 2181 | | } |
| | 2182 | |
|
| | 2183 | | // Never direct play audio in matroska when the device only declare support for webm. |
| | 2184 | | // The first check is not enough because mkv is assumed can be webm. |
| | 2185 | | // See https://github.com/jellyfin/jellyfin/issues/13344 |
| 0 | 2186 | | return !ContainerHelper.ContainsContainer("mkv", item.Container) |
| 0 | 2187 | | || profile.SupportsContainer("mkv"); |
| | 2188 | | } |
| | 2189 | |
|
| | 2190 | | private static bool IsAudioDirectPlaySupported(DirectPlayProfile profile, MediaSourceInfo item, MediaStream audi |
| | 2191 | | { |
| 0 | 2192 | | if (!IsAudioContainerSupported(profile, item)) |
| | 2193 | | { |
| 0 | 2194 | | return false; |
| | 2195 | | } |
| | 2196 | |
|
| | 2197 | | // Check audio codec |
| 0 | 2198 | | string? audioCodec = audioStream?.Codec; |
| 0 | 2199 | | if (!profile.SupportsAudioCodec(audioCodec)) |
| | 2200 | | { |
| 0 | 2201 | | return false; |
| | 2202 | | } |
| | 2203 | |
|
| 0 | 2204 | | return true; |
| | 2205 | | } |
| | 2206 | |
|
| | 2207 | | private static bool IsAudioDirectStreamSupported(DirectPlayProfile profile, MediaSourceInfo item, MediaStream au |
| | 2208 | | { |
| | 2209 | | // Check container type, this should NOT be supported |
| | 2210 | | // If the container is supported, the file should be directly played |
| 0 | 2211 | | if (IsAudioContainerSupported(profile, item)) |
| | 2212 | | { |
| 0 | 2213 | | return false; |
| | 2214 | | } |
| | 2215 | |
|
| | 2216 | | // Check audio codec, we cannot use the SupportsAudioCodec here |
| | 2217 | | // Because that one assumes empty container supports all codec, which is just useless |
| 0 | 2218 | | string? audioCodec = audioStream?.Codec; |
| 0 | 2219 | | return string.Equals(profile.AudioCodec, audioCodec, StringComparison.OrdinalIgnoreCase) |
| 0 | 2220 | | || string.Equals(profile.Container, audioCodec, StringComparison.OrdinalIgnoreCase); |
| | 2221 | | } |
| | 2222 | |
|
| | 2223 | | private int GetRank(ref TranscodeReason a, TranscodeReason[] rankings) |
| | 2224 | | { |
| 1209 | 2225 | | var index = 1; |
| 8740 | 2226 | | foreach (var flag in rankings) |
| | 2227 | | { |
| 3666 | 2228 | | var reason = a & flag; |
| 3666 | 2229 | | if (reason != 0) |
| | 2230 | | { |
| 1010 | 2231 | | return index; |
| | 2232 | | } |
| | 2233 | |
|
| 2656 | 2234 | | index++; |
| | 2235 | | } |
| | 2236 | |
|
| 199 | 2237 | | return index; |
| | 2238 | | } |
| | 2239 | |
|
| | 2240 | | /// <summary> |
| | 2241 | | /// Check the profile conditions. |
| | 2242 | | /// </summary> |
| | 2243 | | /// <param name="conditions">Profile conditions.</param> |
| | 2244 | | /// <param name="mediaSource">Media source.</param> |
| | 2245 | | /// <param name="videoStream">Video stream.</param> |
| | 2246 | | /// <returns>Failed profile conditions.</returns> |
| | 2247 | | private IEnumerable<ProfileCondition> CheckVideoConditions(ProfileCondition[] conditions, MediaSourceInfo mediaS |
| | 2248 | | { |
| 729 | 2249 | | int? width = videoStream?.Width; |
| 729 | 2250 | | int? height = videoStream?.Height; |
| 729 | 2251 | | int? bitDepth = videoStream?.BitDepth; |
| 729 | 2252 | | int? videoBitrate = videoStream?.BitRate; |
| 729 | 2253 | | double? videoLevel = videoStream?.Level; |
| 729 | 2254 | | string? videoProfile = videoStream?.Profile; |
| 729 | 2255 | | VideoRangeType? videoRangeType = videoStream?.VideoRangeType; |
| 729 | 2256 | | float videoFramerate = videoStream is null ? 0 : videoStream.ReferenceFrameRate ?? 0; |
| 729 | 2257 | | bool? isAnamorphic = videoStream?.IsAnamorphic; |
| 729 | 2258 | | bool? isInterlaced = videoStream?.IsInterlaced; |
| 729 | 2259 | | string? videoCodecTag = videoStream?.CodecTag; |
| 729 | 2260 | | bool? isAvc = videoStream?.IsAVC; |
| | 2261 | |
|
| 729 | 2262 | | TransportStreamTimestamp? timestamp = videoStream is null ? TransportStreamTimestamp.None : mediaSource.Time |
| 729 | 2263 | | int? packetLength = videoStream?.PacketLength; |
| 729 | 2264 | | int? refFrames = videoStream?.RefFrames; |
| | 2265 | |
|
| 729 | 2266 | | int numStreams = mediaSource.MediaStreams.Count; |
| 729 | 2267 | | int? numAudioStreams = mediaSource.GetStreamCount(MediaStreamType.Audio); |
| 729 | 2268 | | int? numVideoStreams = mediaSource.GetStreamCount(MediaStreamType.Video); |
| | 2269 | |
|
| 729 | 2270 | | return conditions.Where(applyCondition => !ConditionProcessor.IsVideoConditionSatisfied(applyCondition, widt |
| | 2271 | | } |
| | 2272 | |
|
| | 2273 | | /// <summary> |
| | 2274 | | /// Check the compatibility of the container. |
| | 2275 | | /// </summary> |
| | 2276 | | /// <param name="options">Media options.</param> |
| | 2277 | | /// <param name="mediaSource">Media source.</param> |
| | 2278 | | /// <param name="container">Container.</param> |
| | 2279 | | /// <param name="videoStream">Video stream.</param> |
| | 2280 | | /// <returns>Transcode reasons if the container is not fully compatible.</returns> |
| | 2281 | | private TranscodeReason GetCompatibilityContainer(MediaOptions options, MediaSourceInfo mediaSource, string cont |
| | 2282 | | { |
| 254 | 2283 | | var profile = options.Profile; |
| | 2284 | |
|
| 254 | 2285 | | var failures = AggregateFailureConditions( |
| 254 | 2286 | | mediaSource, |
| 254 | 2287 | | profile, |
| 254 | 2288 | | "VideoCodecProfile", |
| 254 | 2289 | | profile.ContainerProfiles |
| 254 | 2290 | | .Where(containerProfile => containerProfile.Type == DlnaProfileType.Video && containerProfile.Contai |
| 254 | 2291 | | .SelectMany(containerProfile => CheckVideoConditions(containerProfile.Conditions, mediaSource, video |
| | 2292 | |
|
| 254 | 2293 | | return failures; |
| | 2294 | | } |
| | 2295 | |
|
| | 2296 | | /// <summary> |
| | 2297 | | /// Check the compatibility of the video codec. |
| | 2298 | | /// </summary> |
| | 2299 | | /// <param name="options">Media options.</param> |
| | 2300 | | /// <param name="mediaSource">Media source.</param> |
| | 2301 | | /// <param name="container">Container.</param> |
| | 2302 | | /// <param name="videoStream">Video stream.</param> |
| | 2303 | | /// <returns>Transcode reasons if the video stream is not fully compatible.</returns> |
| | 2304 | | private TranscodeReason GetCompatibilityVideoCodec(MediaOptions options, MediaSourceInfo mediaSource, string con |
| | 2305 | | { |
| 402 | 2306 | | var profile = options.Profile; |
| | 2307 | |
|
| 402 | 2308 | | string videoCodec = videoStream.Codec; |
| | 2309 | |
|
| 402 | 2310 | | var failures = AggregateFailureConditions( |
| 402 | 2311 | | mediaSource, |
| 402 | 2312 | | profile, |
| 402 | 2313 | | "VideoCodecProfile", |
| 402 | 2314 | | profile.CodecProfiles |
| 402 | 2315 | | .Where(codecProfile => codecProfile.Type == CodecType.Video && |
| 402 | 2316 | | codecProfile.ContainsAnyCodec(videoCodec, container) && |
| 402 | 2317 | | !CheckVideoConditions(codecProfile.ApplyConditions, mediaSource, videoStream).Any()) |
| 402 | 2318 | | .SelectMany(codecProfile => CheckVideoConditions(codecProfile.Conditions, mediaSource, videoStream)) |
| | 2319 | |
|
| 402 | 2320 | | return failures; |
| | 2321 | | } |
| | 2322 | |
|
| | 2323 | | /// <summary> |
| | 2324 | | /// Check the compatibility of the audio codec. |
| | 2325 | | /// </summary> |
| | 2326 | | /// <param name="options">Media options.</param> |
| | 2327 | | /// <param name="mediaSource">Media source.</param> |
| | 2328 | | /// <param name="container">Container.</param> |
| | 2329 | | /// <param name="audioStream">Audio stream.</param> |
| | 2330 | | /// <param name="transcodingAudioCodec">Override audio codec.</param> |
| | 2331 | | /// <param name="isVideo">The media source is video.</param> |
| | 2332 | | /// <param name="isSecondaryAudio">The audio stream is secondary.</param> |
| | 2333 | | /// <returns>Transcode reasons if the audio stream is not fully compatible.</returns> |
| | 2334 | | private TranscodeReason GetCompatibilityAudioCodec(MediaOptions options, MediaSourceInfo mediaSource, string con |
| | 2335 | | { |
| 1005 | 2336 | | var profile = options.Profile; |
| | 2337 | |
|
| 1005 | 2338 | | var audioCodec = transcodingAudioCodec ?? audioStream.Codec; |
| 1005 | 2339 | | var audioProfile = audioStream.Profile; |
| 1005 | 2340 | | var audioChannels = audioStream.Channels; |
| 1005 | 2341 | | var audioBitrate = audioStream.BitRate; |
| 1005 | 2342 | | var audioSampleRate = audioStream.SampleRate; |
| 1005 | 2343 | | var audioBitDepth = audioStream.BitDepth; |
| | 2344 | |
|
| 1005 | 2345 | | var audioFailureConditions = isVideo |
| 1005 | 2346 | | ? GetProfileConditionsForVideoAudio(profile.CodecProfiles, container, audioCodec, audioChannels, audioBi |
| 1005 | 2347 | | : GetProfileConditionsForAudio(profile.CodecProfiles, container, audioCodec, audioChannels, audioBitrate |
| | 2348 | |
|
| 1005 | 2349 | | var failures = AggregateFailureConditions(mediaSource, profile, "AudioCodecProfile", audioFailureConditions) |
| | 2350 | |
|
| 1005 | 2351 | | return failures; |
| | 2352 | | } |
| | 2353 | |
|
| | 2354 | | /// <summary> |
| | 2355 | | /// Check the compatibility of the audio codec for direct playback. |
| | 2356 | | /// </summary> |
| | 2357 | | /// <param name="options">Media options.</param> |
| | 2358 | | /// <param name="mediaSource">Media source.</param> |
| | 2359 | | /// <param name="container">Container.</param> |
| | 2360 | | /// <param name="audioStream">Audio stream.</param> |
| | 2361 | | /// <param name="isVideo">The media source is video.</param> |
| | 2362 | | /// <param name="isSecondaryAudio">The audio stream is secondary.</param> |
| | 2363 | | /// <returns>Transcode reasons if the audio stream is not fully compatible for direct playback.</returns> |
| | 2364 | | private TranscodeReason GetCompatibilityAudioCodecDirect(MediaOptions options, MediaSourceInfo mediaSource, stri |
| | 2365 | | { |
| 273 | 2366 | | var failures = GetCompatibilityAudioCodec(options, mediaSource, container, audioStream, null, isVideo, isSec |
| | 2367 | |
|
| 273 | 2368 | | if (audioStream.IsExternal) |
| | 2369 | | { |
| 6 | 2370 | | failures |= TranscodeReason.AudioIsExternal; |
| | 2371 | | } |
| | 2372 | |
|
| 273 | 2373 | | return failures; |
| | 2374 | | } |
| | 2375 | | } |
| | 2376 | | } |