| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Concurrent; |
| | 7 | | using System.Collections.Generic; |
| | 8 | | using System.Collections.Immutable; |
| | 9 | | using System.Globalization; |
| | 10 | | using System.IO; |
| | 11 | | using System.Linq; |
| | 12 | | using System.Text.Json; |
| | 13 | | using System.Threading; |
| | 14 | | using System.Threading.Tasks; |
| | 15 | | using AsyncKeyedLock; |
| | 16 | | using Jellyfin.Data; |
| | 17 | | using Jellyfin.Data.Enums; |
| | 18 | | using Jellyfin.Database.Implementations.Entities; |
| | 19 | | using Jellyfin.Database.Implementations.Enums; |
| | 20 | | using Jellyfin.Extensions; |
| | 21 | | using Jellyfin.Extensions.Json; |
| | 22 | | using MediaBrowser.Common.Configuration; |
| | 23 | | using MediaBrowser.Common.Extensions; |
| | 24 | | using MediaBrowser.Controller; |
| | 25 | | using MediaBrowser.Controller.Entities; |
| | 26 | | using MediaBrowser.Controller.Library; |
| | 27 | | using MediaBrowser.Controller.LiveTv; |
| | 28 | | using MediaBrowser.Controller.MediaEncoding; |
| | 29 | | using MediaBrowser.Controller.Persistence; |
| | 30 | | using MediaBrowser.Controller.Providers; |
| | 31 | | using MediaBrowser.Model.Dlna; |
| | 32 | | using MediaBrowser.Model.Dto; |
| | 33 | | using MediaBrowser.Model.Entities; |
| | 34 | | using MediaBrowser.Model.Globalization; |
| | 35 | | using MediaBrowser.Model.IO; |
| | 36 | | using MediaBrowser.Model.MediaInfo; |
| | 37 | | using Microsoft.Extensions.Logging; |
| | 38 | |
|
| | 39 | | namespace Emby.Server.Implementations.Library |
| | 40 | | { |
| | 41 | | public class MediaSourceManager : IMediaSourceManager, IDisposable |
| | 42 | | { |
| | 43 | | // Do not use a pipe here because Roku http requests to the server will fail, without any explicit error message |
| | 44 | | private const char LiveStreamIdDelimiter = '_'; |
| | 45 | |
|
| | 46 | | private readonly IServerApplicationHost _appHost; |
| | 47 | | private readonly IItemRepository _itemRepo; |
| | 48 | | private readonly IUserManager _userManager; |
| | 49 | | private readonly ILibraryManager _libraryManager; |
| | 50 | | private readonly IFileSystem _fileSystem; |
| | 51 | | private readonly ILogger<MediaSourceManager> _logger; |
| | 52 | | private readonly IUserDataManager _userDataManager; |
| | 53 | | private readonly IMediaEncoder _mediaEncoder; |
| | 54 | | private readonly ILocalizationManager _localizationManager; |
| | 55 | | private readonly IApplicationPaths _appPaths; |
| | 56 | | private readonly IDirectoryService _directoryService; |
| | 57 | | private readonly IMediaStreamRepository _mediaStreamRepository; |
| | 58 | | private readonly IMediaAttachmentRepository _mediaAttachmentRepository; |
| 27 | 59 | | private readonly ConcurrentDictionary<string, ILiveStream> _openStreams = new ConcurrentDictionary<string, ILive |
| 27 | 60 | | private readonly AsyncNonKeyedLocker _liveStreamLocker = new(1); |
| 27 | 61 | | private readonly JsonSerializerOptions _jsonOptions = JsonDefaults.Options; |
| | 62 | |
|
| | 63 | | private IMediaSourceProvider[] _providers; |
| | 64 | |
|
| | 65 | | public MediaSourceManager( |
| | 66 | | IServerApplicationHost appHost, |
| | 67 | | IItemRepository itemRepo, |
| | 68 | | IApplicationPaths applicationPaths, |
| | 69 | | ILocalizationManager localizationManager, |
| | 70 | | IUserManager userManager, |
| | 71 | | ILibraryManager libraryManager, |
| | 72 | | ILogger<MediaSourceManager> logger, |
| | 73 | | IFileSystem fileSystem, |
| | 74 | | IUserDataManager userDataManager, |
| | 75 | | IMediaEncoder mediaEncoder, |
| | 76 | | IDirectoryService directoryService, |
| | 77 | | IMediaStreamRepository mediaStreamRepository, |
| | 78 | | IMediaAttachmentRepository mediaAttachmentRepository) |
| | 79 | | { |
| 27 | 80 | | _appHost = appHost; |
| 27 | 81 | | _itemRepo = itemRepo; |
| 27 | 82 | | _userManager = userManager; |
| 27 | 83 | | _libraryManager = libraryManager; |
| 27 | 84 | | _logger = logger; |
| 27 | 85 | | _fileSystem = fileSystem; |
| 27 | 86 | | _userDataManager = userDataManager; |
| 27 | 87 | | _mediaEncoder = mediaEncoder; |
| 27 | 88 | | _localizationManager = localizationManager; |
| 27 | 89 | | _appPaths = applicationPaths; |
| 27 | 90 | | _directoryService = directoryService; |
| 27 | 91 | | _mediaStreamRepository = mediaStreamRepository; |
| 27 | 92 | | _mediaAttachmentRepository = mediaAttachmentRepository; |
| 27 | 93 | | } |
| | 94 | |
|
| | 95 | | public void AddParts(IEnumerable<IMediaSourceProvider> providers) |
| | 96 | | { |
| 21 | 97 | | _providers = providers.ToArray(); |
| 21 | 98 | | } |
| | 99 | |
|
| | 100 | | public IReadOnlyList<MediaStream> GetMediaStreams(MediaStreamQuery query) |
| | 101 | | { |
| 0 | 102 | | var list = _mediaStreamRepository.GetMediaStreams(query); |
| | 103 | |
|
| 0 | 104 | | foreach (var stream in list) |
| | 105 | | { |
| 0 | 106 | | stream.SupportsExternalStream = StreamSupportsExternalStream(stream); |
| | 107 | | } |
| | 108 | |
|
| 0 | 109 | | return list; |
| | 110 | | } |
| | 111 | |
|
| | 112 | | private static bool StreamSupportsExternalStream(MediaStream stream) |
| | 113 | | { |
| 0 | 114 | | if (stream.IsExternal) |
| | 115 | | { |
| 0 | 116 | | return true; |
| | 117 | | } |
| | 118 | |
|
| 0 | 119 | | if (stream.IsTextSubtitleStream) |
| | 120 | | { |
| 0 | 121 | | return true; |
| | 122 | | } |
| | 123 | |
|
| 0 | 124 | | if (stream.IsPgsSubtitleStream) |
| | 125 | | { |
| 0 | 126 | | return true; |
| | 127 | | } |
| | 128 | |
|
| 0 | 129 | | return false; |
| | 130 | | } |
| | 131 | |
|
| | 132 | | public IReadOnlyList<MediaStream> GetMediaStreams(Guid itemId) |
| | 133 | | { |
| 0 | 134 | | var list = GetMediaStreams(new MediaStreamQuery |
| 0 | 135 | | { |
| 0 | 136 | | ItemId = itemId |
| 0 | 137 | | }); |
| | 138 | |
|
| 0 | 139 | | return GetMediaStreamsForItem(list); |
| | 140 | | } |
| | 141 | |
|
| | 142 | | private IReadOnlyList<MediaStream> GetMediaStreamsForItem(IReadOnlyList<MediaStream> streams) |
| | 143 | | { |
| 0 | 144 | | foreach (var stream in streams) |
| | 145 | | { |
| 0 | 146 | | if (stream.Type == MediaStreamType.Subtitle) |
| | 147 | | { |
| 0 | 148 | | stream.SupportsExternalStream = StreamSupportsExternalStream(stream); |
| | 149 | | } |
| | 150 | | } |
| | 151 | |
|
| 0 | 152 | | return streams; |
| | 153 | | } |
| | 154 | |
|
| | 155 | | /// <inheritdoc /> |
| | 156 | | public IReadOnlyList<MediaAttachment> GetMediaAttachments(MediaAttachmentQuery query) |
| | 157 | | { |
| 0 | 158 | | return _mediaAttachmentRepository.GetMediaAttachments(query); |
| | 159 | | } |
| | 160 | |
|
| | 161 | | /// <inheritdoc /> |
| | 162 | | public IReadOnlyList<MediaAttachment> GetMediaAttachments(Guid itemId) |
| | 163 | | { |
| 0 | 164 | | return GetMediaAttachments(new MediaAttachmentQuery |
| 0 | 165 | | { |
| 0 | 166 | | ItemId = itemId |
| 0 | 167 | | }); |
| | 168 | | } |
| | 169 | |
|
| | 170 | | public async Task<IReadOnlyList<MediaSourceInfo>> GetPlaybackMediaSources(BaseItem item, User user, bool allowMe |
| | 171 | | { |
| | 172 | | var mediaSources = GetStaticMediaSources(item, enablePathSubstitution, user); |
| | 173 | |
|
| | 174 | | // If file is strm or main media stream is missing, force a metadata refresh with remote probing |
| | 175 | | if (allowMediaProbe && mediaSources[0].Type != MediaSourceType.Placeholder |
| | 176 | | && (item.Path.EndsWith(".strm", StringComparison.OrdinalIgnoreCase) |
| | 177 | | || (item.MediaType == MediaType.Video && mediaSources[0].MediaStreams.All(i => i.Type != MediaStream |
| | 178 | | || (item.MediaType == MediaType.Audio && mediaSources[0].MediaStreams.All(i => i.Type != MediaStream |
| | 179 | | { |
| | 180 | | await item.RefreshMetadata( |
| | 181 | | new MetadataRefreshOptions(_directoryService) |
| | 182 | | { |
| | 183 | | EnableRemoteContentProbe = true, |
| | 184 | | MetadataRefreshMode = MetadataRefreshMode.FullRefresh |
| | 185 | | }, |
| | 186 | | cancellationToken).ConfigureAwait(false); |
| | 187 | |
|
| | 188 | | mediaSources = GetStaticMediaSources(item, enablePathSubstitution, user); |
| | 189 | | } |
| | 190 | |
|
| | 191 | | var dynamicMediaSources = await GetDynamicMediaSources(item, cancellationToken).ConfigureAwait(false); |
| | 192 | |
|
| | 193 | | var list = new List<MediaSourceInfo>(); |
| | 194 | |
|
| | 195 | | list.AddRange(mediaSources); |
| | 196 | |
|
| | 197 | | foreach (var source in dynamicMediaSources) |
| | 198 | | { |
| | 199 | | // Validate that this is actually possible |
| | 200 | | if (source.SupportsDirectStream) |
| | 201 | | { |
| | 202 | | source.SupportsDirectStream = SupportsDirectStream(source.Path, source.Protocol); |
| | 203 | | } |
| | 204 | |
|
| | 205 | | if (user is not null) |
| | 206 | | { |
| | 207 | | SetDefaultAudioAndSubtitleStreamIndices(item, source, user); |
| | 208 | |
|
| | 209 | | if (item.MediaType == MediaType.Audio) |
| | 210 | | { |
| | 211 | | source.SupportsTranscoding = user.HasPermission(PermissionKind.EnableAudioPlaybackTranscoding); |
| | 212 | | } |
| | 213 | | else if (item.MediaType == MediaType.Video) |
| | 214 | | { |
| | 215 | | source.SupportsTranscoding = user.HasPermission(PermissionKind.EnableVideoPlaybackTranscoding); |
| | 216 | | source.SupportsDirectStream = user.HasPermission(PermissionKind.EnablePlaybackRemuxing); |
| | 217 | | } |
| | 218 | | } |
| | 219 | |
|
| | 220 | | list.Add(source); |
| | 221 | | } |
| | 222 | |
|
| | 223 | | return SortMediaSources(list).ToArray(); |
| | 224 | | } |
| | 225 | |
|
| | 226 | | /// <inheritdoc />> |
| | 227 | | public MediaProtocol GetPathProtocol(string path) |
| | 228 | | { |
| 2049 | 229 | | if (path.StartsWith("Rtsp", StringComparison.OrdinalIgnoreCase)) |
| | 230 | | { |
| 1 | 231 | | return MediaProtocol.Rtsp; |
| | 232 | | } |
| | 233 | |
|
| 2048 | 234 | | if (path.StartsWith("Rtmp", StringComparison.OrdinalIgnoreCase)) |
| | 235 | | { |
| 0 | 236 | | return MediaProtocol.Rtmp; |
| | 237 | | } |
| | 238 | |
|
| 2048 | 239 | | if (path.StartsWith("Http", StringComparison.OrdinalIgnoreCase)) |
| | 240 | | { |
| 2 | 241 | | return MediaProtocol.Http; |
| | 242 | | } |
| | 243 | |
|
| 2046 | 244 | | if (path.StartsWith("rtp", StringComparison.OrdinalIgnoreCase)) |
| | 245 | | { |
| 0 | 246 | | return MediaProtocol.Rtp; |
| | 247 | | } |
| | 248 | |
|
| 2046 | 249 | | if (path.StartsWith("ftp", StringComparison.OrdinalIgnoreCase)) |
| | 250 | | { |
| 0 | 251 | | return MediaProtocol.Ftp; |
| | 252 | | } |
| | 253 | |
|
| 2046 | 254 | | if (path.StartsWith("udp", StringComparison.OrdinalIgnoreCase)) |
| | 255 | | { |
| 0 | 256 | | return MediaProtocol.Udp; |
| | 257 | | } |
| | 258 | |
|
| 2046 | 259 | | return _fileSystem.IsPathFile(path) ? MediaProtocol.File : MediaProtocol.Http; |
| | 260 | | } |
| | 261 | |
|
| | 262 | | public bool SupportsDirectStream(string path, MediaProtocol protocol) |
| | 263 | | { |
| 0 | 264 | | if (protocol == MediaProtocol.File) |
| | 265 | | { |
| 0 | 266 | | return true; |
| | 267 | | } |
| | 268 | |
|
| 0 | 269 | | if (protocol == MediaProtocol.Http) |
| | 270 | | { |
| 0 | 271 | | if (path is not null) |
| | 272 | | { |
| 0 | 273 | | if (path.Contains(".m3u", StringComparison.OrdinalIgnoreCase)) |
| | 274 | | { |
| 0 | 275 | | return false; |
| | 276 | | } |
| | 277 | |
|
| 0 | 278 | | return true; |
| | 279 | | } |
| | 280 | | } |
| | 281 | |
|
| 0 | 282 | | return false; |
| | 283 | | } |
| | 284 | |
|
| | 285 | | private async Task<IEnumerable<MediaSourceInfo>> GetDynamicMediaSources(BaseItem item, CancellationToken cancell |
| | 286 | | { |
| | 287 | | var tasks = _providers.Select(i => GetDynamicMediaSources(item, i, cancellationToken)); |
| | 288 | | var results = await Task.WhenAll(tasks).ConfigureAwait(false); |
| | 289 | |
|
| | 290 | | return results.SelectMany(i => i); |
| | 291 | | } |
| | 292 | |
|
| | 293 | | private async Task<IEnumerable<MediaSourceInfo>> GetDynamicMediaSources(BaseItem item, IMediaSourceProvider prov |
| | 294 | | { |
| | 295 | | try |
| | 296 | | { |
| | 297 | | var sources = await provider.GetMediaSources(item, cancellationToken).ConfigureAwait(false); |
| | 298 | | var list = sources.ToList(); |
| | 299 | |
|
| | 300 | | foreach (var mediaSource in list) |
| | 301 | | { |
| | 302 | | mediaSource.InferTotalBitrate(); |
| | 303 | |
|
| | 304 | | SetKeyProperties(provider, mediaSource); |
| | 305 | | } |
| | 306 | |
|
| | 307 | | return list; |
| | 308 | | } |
| | 309 | | catch (Exception ex) |
| | 310 | | { |
| | 311 | | _logger.LogError(ex, "Error getting media sources"); |
| | 312 | | return []; |
| | 313 | | } |
| | 314 | | } |
| | 315 | |
|
| | 316 | | private static void SetKeyProperties(IMediaSourceProvider provider, MediaSourceInfo mediaSource) |
| | 317 | | { |
| 0 | 318 | | var prefix = provider.GetType().FullName.GetMD5().ToString("N", CultureInfo.InvariantCulture) + LiveStreamId |
| | 319 | |
|
| 0 | 320 | | if (!string.IsNullOrEmpty(mediaSource.OpenToken) && !mediaSource.OpenToken.StartsWith(prefix, StringComparis |
| | 321 | | { |
| 0 | 322 | | mediaSource.OpenToken = prefix + mediaSource.OpenToken; |
| | 323 | | } |
| | 324 | |
|
| 0 | 325 | | if (!string.IsNullOrEmpty(mediaSource.LiveStreamId) && !mediaSource.LiveStreamId.StartsWith(prefix, StringCo |
| | 326 | | { |
| 0 | 327 | | mediaSource.LiveStreamId = prefix + mediaSource.LiveStreamId; |
| | 328 | | } |
| 0 | 329 | | } |
| | 330 | |
|
| | 331 | | public async Task<MediaSourceInfo> GetMediaSource(BaseItem item, string mediaSourceId, string liveStreamId, bool |
| | 332 | | { |
| | 333 | | if (!string.IsNullOrEmpty(liveStreamId)) |
| | 334 | | { |
| | 335 | | return await GetLiveStream(liveStreamId, cancellationToken).ConfigureAwait(false); |
| | 336 | | } |
| | 337 | |
|
| | 338 | | var sources = await GetPlaybackMediaSources(item, null, false, enablePathSubstitution, cancellationToken).Co |
| | 339 | |
|
| | 340 | | return sources.FirstOrDefault(i => string.Equals(i.Id, mediaSourceId, StringComparison.OrdinalIgnoreCase)); |
| | 341 | | } |
| | 342 | |
|
| | 343 | | public IReadOnlyList<MediaSourceInfo> GetStaticMediaSources(BaseItem item, bool enablePathSubstitution, User use |
| | 344 | | { |
| 0 | 345 | | ArgumentNullException.ThrowIfNull(item); |
| | 346 | |
|
| 0 | 347 | | var hasMediaSources = (IHasMediaSources)item; |
| | 348 | |
|
| 0 | 349 | | var sources = hasMediaSources.GetMediaSources(enablePathSubstitution); |
| | 350 | |
|
| 0 | 351 | | if (user is not null) |
| | 352 | | { |
| 0 | 353 | | foreach (var source in sources) |
| | 354 | | { |
| 0 | 355 | | SetDefaultAudioAndSubtitleStreamIndices(item, source, user); |
| | 356 | |
|
| 0 | 357 | | if (item.MediaType == MediaType.Audio) |
| | 358 | | { |
| 0 | 359 | | source.SupportsTranscoding = user.HasPermission(PermissionKind.EnableAudioPlaybackTranscoding); |
| | 360 | | } |
| 0 | 361 | | else if (item.MediaType == MediaType.Video) |
| | 362 | | { |
| 0 | 363 | | source.SupportsTranscoding = user.HasPermission(PermissionKind.EnableVideoPlaybackTranscoding); |
| 0 | 364 | | source.SupportsDirectStream = user.HasPermission(PermissionKind.EnablePlaybackRemuxing); |
| | 365 | | } |
| | 366 | | } |
| | 367 | | } |
| | 368 | |
|
| 0 | 369 | | return sources; |
| | 370 | | } |
| | 371 | |
|
| | 372 | | private IReadOnlyList<string> NormalizeLanguage(string language) |
| | 373 | | { |
| 0 | 374 | | if (string.IsNullOrEmpty(language)) |
| | 375 | | { |
| 0 | 376 | | return []; |
| | 377 | | } |
| | 378 | |
|
| 0 | 379 | | var culture = _localizationManager.FindLanguageInfo(language); |
| 0 | 380 | | if (culture is not null) |
| | 381 | | { |
| 0 | 382 | | return culture.ThreeLetterISOLanguageNames; |
| | 383 | | } |
| | 384 | |
|
| 0 | 385 | | return [language]; |
| | 386 | | } |
| | 387 | |
|
| | 388 | | private void SetDefaultSubtitleStreamIndex(MediaSourceInfo source, UserItemData userData, User user, bool allowR |
| | 389 | | { |
| 0 | 390 | | if (userData is not null |
| 0 | 391 | | && userData.SubtitleStreamIndex.HasValue |
| 0 | 392 | | && user.RememberSubtitleSelections |
| 0 | 393 | | && user.SubtitleMode != SubtitlePlaybackMode.None |
| 0 | 394 | | && allowRememberingSelection) |
| | 395 | | { |
| 0 | 396 | | var index = userData.SubtitleStreamIndex.Value; |
| | 397 | | // Make sure the saved index is still valid |
| 0 | 398 | | if (index == -1 || source.MediaStreams.Any(i => i.Type == MediaStreamType.Subtitle && i.Index == index)) |
| | 399 | | { |
| 0 | 400 | | source.DefaultSubtitleStreamIndex = index; |
| 0 | 401 | | return; |
| | 402 | | } |
| | 403 | | } |
| | 404 | |
|
| 0 | 405 | | var preferredSubs = NormalizeLanguage(user.SubtitleLanguagePreference); |
| | 406 | |
|
| 0 | 407 | | var defaultAudioIndex = source.DefaultAudioStreamIndex; |
| 0 | 408 | | var audioLanguage = defaultAudioIndex is null |
| 0 | 409 | | ? null |
| 0 | 410 | | : source.MediaStreams.Where(i => i.Type == MediaStreamType.Audio && i.Index == defaultAudioIndex).Select |
| | 411 | |
|
| 0 | 412 | | source.DefaultSubtitleStreamIndex = MediaStreamSelector.GetDefaultSubtitleStreamIndex( |
| 0 | 413 | | source.MediaStreams, |
| 0 | 414 | | preferredSubs, |
| 0 | 415 | | user.SubtitleMode, |
| 0 | 416 | | audioLanguage); |
| | 417 | |
|
| 0 | 418 | | MediaStreamSelector.SetSubtitleStreamScores(source.MediaStreams, preferredSubs, user.SubtitleMode, audioLang |
| 0 | 419 | | } |
| | 420 | |
|
| | 421 | | private void SetDefaultAudioStreamIndex(MediaSourceInfo source, UserItemData userData, User user, bool allowReme |
| | 422 | | { |
| 0 | 423 | | if (userData is not null && userData.AudioStreamIndex.HasValue && user.RememberAudioSelections && allowRemem |
| | 424 | | { |
| 0 | 425 | | var index = userData.AudioStreamIndex.Value; |
| | 426 | | // Make sure the saved index is still valid |
| 0 | 427 | | if (source.MediaStreams.Any(i => i.Type == MediaStreamType.Audio && i.Index == index)) |
| | 428 | | { |
| 0 | 429 | | source.DefaultAudioStreamIndex = index; |
| 0 | 430 | | return; |
| | 431 | | } |
| | 432 | | } |
| | 433 | |
|
| 0 | 434 | | var preferredAudio = NormalizeLanguage(user.AudioLanguagePreference); |
| | 435 | |
|
| 0 | 436 | | source.DefaultAudioStreamIndex = MediaStreamSelector.GetDefaultAudioStreamIndex(source.MediaStreams, preferr |
| 0 | 437 | | } |
| | 438 | |
|
| | 439 | | public void SetDefaultAudioAndSubtitleStreamIndices(BaseItem item, MediaSourceInfo source, User user) |
| | 440 | | { |
| | 441 | | // Item would only be null if the app didn't supply ItemId as part of the live stream open request |
| 0 | 442 | | var mediaType = item?.MediaType ?? MediaType.Video; |
| | 443 | |
|
| 0 | 444 | | if (mediaType == MediaType.Video) |
| | 445 | | { |
| 0 | 446 | | var userData = item is null ? null : _userDataManager.GetUserData(user, item); |
| | 447 | |
|
| 0 | 448 | | var allowRememberingSelection = item is null || item.EnableRememberingTrackSelections; |
| | 449 | |
|
| 0 | 450 | | SetDefaultAudioStreamIndex(source, userData, user, allowRememberingSelection); |
| 0 | 451 | | SetDefaultSubtitleStreamIndex(source, userData, user, allowRememberingSelection); |
| | 452 | | } |
| 0 | 453 | | else if (mediaType == MediaType.Audio) |
| | 454 | | { |
| 0 | 455 | | var audio = source.MediaStreams.FirstOrDefault(i => i.Type == MediaStreamType.Audio); |
| | 456 | |
|
| 0 | 457 | | if (audio is not null) |
| | 458 | | { |
| 0 | 459 | | source.DefaultAudioStreamIndex = audio.Index; |
| | 460 | | } |
| | 461 | | } |
| 0 | 462 | | } |
| | 463 | |
|
| | 464 | | private static IEnumerable<MediaSourceInfo> SortMediaSources(IEnumerable<MediaSourceInfo> sources) |
| | 465 | | { |
| 0 | 466 | | return sources.OrderBy(i => |
| 0 | 467 | | { |
| 0 | 468 | | if (i.VideoType.HasValue && i.VideoType.Value == VideoType.VideoFile) |
| 0 | 469 | | { |
| 0 | 470 | | return 0; |
| 0 | 471 | | } |
| 0 | 472 | |
|
| 0 | 473 | | return 1; |
| 0 | 474 | | }).ThenBy(i => i.Video3DFormat.HasValue ? 1 : 0) |
| 0 | 475 | | .ThenByDescending(i => |
| 0 | 476 | | { |
| 0 | 477 | | var stream = i.VideoStream; |
| 0 | 478 | |
|
| 0 | 479 | | return stream?.Width ?? 0; |
| 0 | 480 | | }) |
| 0 | 481 | | .Where(i => i.Type != MediaSourceType.Placeholder); |
| | 482 | | } |
| | 483 | |
|
| | 484 | | public async Task<Tuple<LiveStreamResponse, IDirectStreamProvider>> OpenLiveStreamInternal(LiveStreamRequest req |
| | 485 | | { |
| | 486 | | MediaSourceInfo mediaSource; |
| | 487 | | ILiveStream liveStream; |
| | 488 | |
|
| | 489 | | using (await _liveStreamLocker.LockAsync(cancellationToken).ConfigureAwait(false)) |
| | 490 | | { |
| | 491 | | var (provider, keyId) = GetProvider(request.OpenToken); |
| | 492 | |
|
| | 493 | | var currentLiveStreams = _openStreams.Values.ToList(); |
| | 494 | |
|
| | 495 | | liveStream = await provider.OpenMediaSource(keyId, currentLiveStreams, cancellationToken).ConfigureAwait |
| | 496 | |
|
| | 497 | | mediaSource = liveStream.MediaSource; |
| | 498 | |
|
| | 499 | | // Validate that this is actually possible |
| | 500 | | if (mediaSource.SupportsDirectStream) |
| | 501 | | { |
| | 502 | | mediaSource.SupportsDirectStream = SupportsDirectStream(mediaSource.Path, mediaSource.Protocol); |
| | 503 | | } |
| | 504 | |
|
| | 505 | | SetKeyProperties(provider, mediaSource); |
| | 506 | |
|
| | 507 | | _openStreams[mediaSource.LiveStreamId] = liveStream; |
| | 508 | | } |
| | 509 | |
|
| | 510 | | try |
| | 511 | | { |
| | 512 | | if (mediaSource.MediaStreams.Any(i => i.Index != -1) || !mediaSource.SupportsProbing) |
| | 513 | | { |
| | 514 | | AddMediaInfo(mediaSource); |
| | 515 | | } |
| | 516 | | else |
| | 517 | | { |
| | 518 | | // hack - these two values were taken from LiveTVMediaSourceProvider |
| | 519 | | string cacheKey = request.OpenToken; |
| | 520 | |
|
| | 521 | | await new LiveStreamHelper(_mediaEncoder, _logger, _appPaths) |
| | 522 | | .AddMediaInfoWithProbe(mediaSource, false, cacheKey, true, cancellationToken) |
| | 523 | | .ConfigureAwait(false); |
| | 524 | | } |
| | 525 | | } |
| | 526 | | catch (Exception ex) |
| | 527 | | { |
| | 528 | | _logger.LogError(ex, "Error probing live tv stream"); |
| | 529 | | AddMediaInfo(mediaSource); |
| | 530 | | } |
| | 531 | |
|
| | 532 | | // TODO: @bond Fix |
| | 533 | | var json = JsonSerializer.SerializeToUtf8Bytes(mediaSource, _jsonOptions); |
| | 534 | | _logger.LogInformation("Live stream opened: {@MediaSource}", mediaSource); |
| | 535 | | var clone = JsonSerializer.Deserialize<MediaSourceInfo>(json, _jsonOptions); |
| | 536 | |
|
| | 537 | | if (!request.UserId.IsEmpty()) |
| | 538 | | { |
| | 539 | | var user = _userManager.GetUserById(request.UserId); |
| | 540 | | var item = request.ItemId.IsEmpty() |
| | 541 | | ? null |
| | 542 | | : _libraryManager.GetItemById(request.ItemId); |
| | 543 | | SetDefaultAudioAndSubtitleStreamIndices(item, clone, user); |
| | 544 | | } |
| | 545 | |
|
| | 546 | | return new Tuple<LiveStreamResponse, IDirectStreamProvider>(new LiveStreamResponse(clone), liveStream as IDi |
| | 547 | | } |
| | 548 | |
|
| | 549 | | private static void AddMediaInfo(MediaSourceInfo mediaSource) |
| | 550 | | { |
| 0 | 551 | | mediaSource.DefaultSubtitleStreamIndex = null; |
| | 552 | |
|
| | 553 | | // Null this out so that it will be treated like a live stream |
| 0 | 554 | | if (mediaSource.IsInfiniteStream) |
| | 555 | | { |
| 0 | 556 | | mediaSource.RunTimeTicks = null; |
| | 557 | | } |
| | 558 | |
|
| 0 | 559 | | var audioStream = mediaSource.MediaStreams.FirstOrDefault(i => i.Type == MediaStreamType.Audio); |
| | 560 | |
|
| 0 | 561 | | if (audioStream is null || audioStream.Index == -1) |
| | 562 | | { |
| 0 | 563 | | mediaSource.DefaultAudioStreamIndex = null; |
| | 564 | | } |
| | 565 | | else |
| | 566 | | { |
| 0 | 567 | | mediaSource.DefaultAudioStreamIndex = audioStream.Index; |
| | 568 | | } |
| | 569 | |
|
| 0 | 570 | | var videoStream = mediaSource.MediaStreams.FirstOrDefault(i => i.Type == MediaStreamType.Video); |
| 0 | 571 | | if (videoStream is not null) |
| | 572 | | { |
| 0 | 573 | | if (!videoStream.BitRate.HasValue) |
| | 574 | | { |
| 0 | 575 | | var width = videoStream.Width ?? 1920; |
| | 576 | |
|
| 0 | 577 | | if (width >= 3000) |
| | 578 | | { |
| 0 | 579 | | videoStream.BitRate = 30000000; |
| | 580 | | } |
| 0 | 581 | | else if (width >= 1900) |
| | 582 | | { |
| 0 | 583 | | videoStream.BitRate = 20000000; |
| | 584 | | } |
| 0 | 585 | | else if (width >= 1200) |
| | 586 | | { |
| 0 | 587 | | videoStream.BitRate = 8000000; |
| | 588 | | } |
| 0 | 589 | | else if (width >= 700) |
| | 590 | | { |
| 0 | 591 | | videoStream.BitRate = 2000000; |
| | 592 | | } |
| | 593 | | } |
| | 594 | | } |
| | 595 | |
|
| | 596 | | // Try to estimate this |
| 0 | 597 | | mediaSource.InferTotalBitrate(); |
| 0 | 598 | | } |
| | 599 | |
|
| | 600 | | public async Task<LiveStreamResponse> OpenLiveStream(LiveStreamRequest request, CancellationToken cancellationTo |
| | 601 | | { |
| | 602 | | var result = await OpenLiveStreamInternal(request, cancellationToken).ConfigureAwait(false); |
| | 603 | | return result.Item1; |
| | 604 | | } |
| | 605 | |
|
| | 606 | | public async Task<MediaSourceInfo> GetLiveStreamMediaInfo(string id, CancellationToken cancellationToken) |
| | 607 | | { |
| | 608 | | // TODO probably shouldn't throw here but it is kept for "backwards compatibility" |
| | 609 | | var liveStreamInfo = GetLiveStreamInfo(id) ?? throw new ResourceNotFoundException(); |
| | 610 | |
|
| | 611 | | var mediaSource = liveStreamInfo.MediaSource; |
| | 612 | |
|
| | 613 | | if (liveStreamInfo is IDirectStreamProvider) |
| | 614 | | { |
| | 615 | | var info = await _mediaEncoder.GetMediaInfo( |
| | 616 | | new MediaInfoRequest |
| | 617 | | { |
| | 618 | | MediaSource = mediaSource, |
| | 619 | | ExtractChapters = false, |
| | 620 | | MediaType = DlnaProfileType.Video |
| | 621 | | }, |
| | 622 | | cancellationToken).ConfigureAwait(false); |
| | 623 | |
|
| | 624 | | mediaSource.MediaStreams = info.MediaStreams; |
| | 625 | | mediaSource.Container = info.Container; |
| | 626 | | mediaSource.Bitrate = info.Bitrate; |
| | 627 | | } |
| | 628 | |
|
| | 629 | | return mediaSource; |
| | 630 | | } |
| | 631 | |
|
| | 632 | | public async Task AddMediaInfoWithProbe(MediaSourceInfo mediaSource, bool isAudio, string cacheKey, bool addProb |
| | 633 | | { |
| | 634 | | var originalRuntime = mediaSource.RunTimeTicks; |
| | 635 | |
|
| | 636 | | var now = DateTime.UtcNow; |
| | 637 | |
|
| | 638 | | MediaInfo mediaInfo = null; |
| | 639 | | var cacheFilePath = string.IsNullOrEmpty(cacheKey) ? null : Path.Combine(_appPaths.CachePath, "mediainfo", c |
| | 640 | |
|
| | 641 | | if (!string.IsNullOrEmpty(cacheKey)) |
| | 642 | | { |
| | 643 | | FileStream jsonStream = AsyncFile.OpenRead(cacheFilePath); |
| | 644 | | try |
| | 645 | | { |
| | 646 | | mediaInfo = await JsonSerializer.DeserializeAsync<MediaInfo>(jsonStream, _jsonOptions, cancellationT |
| | 647 | | } |
| | 648 | | catch (Exception ex) |
| | 649 | | { |
| | 650 | | _logger.LogDebug(ex, "_jsonSerializer.DeserializeFromFile threw an exception."); |
| | 651 | | } |
| | 652 | | finally |
| | 653 | | { |
| | 654 | | await jsonStream.DisposeAsync().ConfigureAwait(false); |
| | 655 | | } |
| | 656 | | } |
| | 657 | |
|
| | 658 | | if (mediaInfo is null) |
| | 659 | | { |
| | 660 | | if (addProbeDelay) |
| | 661 | | { |
| | 662 | | var delayMs = mediaSource.AnalyzeDurationMs ?? 0; |
| | 663 | | delayMs = Math.Max(3000, delayMs); |
| | 664 | | await Task.Delay(delayMs, cancellationToken).ConfigureAwait(false); |
| | 665 | | } |
| | 666 | |
|
| | 667 | | if (isLiveStream) |
| | 668 | | { |
| | 669 | | mediaSource.AnalyzeDurationMs = 3000; |
| | 670 | | } |
| | 671 | |
|
| | 672 | | mediaInfo = await _mediaEncoder.GetMediaInfo( |
| | 673 | | new MediaInfoRequest |
| | 674 | | { |
| | 675 | | MediaSource = mediaSource, |
| | 676 | | MediaType = isAudio ? DlnaProfileType.Audio : DlnaProfileType.Video, |
| | 677 | | ExtractChapters = false |
| | 678 | | }, |
| | 679 | | cancellationToken).ConfigureAwait(false); |
| | 680 | |
|
| | 681 | | if (cacheFilePath is not null) |
| | 682 | | { |
| | 683 | | Directory.CreateDirectory(Path.GetDirectoryName(cacheFilePath)); |
| | 684 | | FileStream createStream = File.Create(cacheFilePath); |
| | 685 | | await using (createStream.ConfigureAwait(false)) |
| | 686 | | { |
| | 687 | | await JsonSerializer.SerializeAsync(createStream, mediaInfo, _jsonOptions, cancellationToken).Co |
| | 688 | | } |
| | 689 | |
|
| | 690 | | // _logger.LogDebug("Saved media info to {0}", cacheFilePath); |
| | 691 | | } |
| | 692 | | } |
| | 693 | |
|
| | 694 | | var mediaStreams = mediaInfo.MediaStreams; |
| | 695 | |
|
| | 696 | | if (isLiveStream && !string.IsNullOrEmpty(cacheKey)) |
| | 697 | | { |
| | 698 | | var newList = new List<MediaStream>(); |
| | 699 | | newList.AddRange(mediaStreams.Where(i => i.Type == MediaStreamType.Video).Take(1)); |
| | 700 | | newList.AddRange(mediaStreams.Where(i => i.Type == MediaStreamType.Audio).Take(1)); |
| | 701 | |
|
| | 702 | | foreach (var stream in newList) |
| | 703 | | { |
| | 704 | | stream.Index = -1; |
| | 705 | | stream.Language = null; |
| | 706 | | } |
| | 707 | |
|
| | 708 | | mediaStreams = newList; |
| | 709 | | } |
| | 710 | |
|
| | 711 | | _logger.LogInformation("Live tv media info probe took {0} seconds", (DateTime.UtcNow - now).TotalSeconds.ToS |
| | 712 | |
|
| | 713 | | mediaSource.Bitrate = mediaInfo.Bitrate; |
| | 714 | | mediaSource.Container = mediaInfo.Container; |
| | 715 | | mediaSource.Formats = mediaInfo.Formats; |
| | 716 | | mediaSource.MediaStreams = mediaStreams; |
| | 717 | | mediaSource.RunTimeTicks = mediaInfo.RunTimeTicks; |
| | 718 | | mediaSource.Size = mediaInfo.Size; |
| | 719 | | mediaSource.Timestamp = mediaInfo.Timestamp; |
| | 720 | | mediaSource.Video3DFormat = mediaInfo.Video3DFormat; |
| | 721 | | mediaSource.VideoType = mediaInfo.VideoType; |
| | 722 | |
|
| | 723 | | mediaSource.DefaultSubtitleStreamIndex = null; |
| | 724 | |
|
| | 725 | | if (isLiveStream) |
| | 726 | | { |
| | 727 | | // Null this out so that it will be treated like a live stream |
| | 728 | | if (!originalRuntime.HasValue) |
| | 729 | | { |
| | 730 | | mediaSource.RunTimeTicks = null; |
| | 731 | | } |
| | 732 | | } |
| | 733 | |
|
| | 734 | | var audioStream = mediaStreams.FirstOrDefault(i => i.Type == MediaStreamType.Audio); |
| | 735 | |
|
| | 736 | | if (audioStream is null || audioStream.Index == -1) |
| | 737 | | { |
| | 738 | | mediaSource.DefaultAudioStreamIndex = null; |
| | 739 | | } |
| | 740 | | else |
| | 741 | | { |
| | 742 | | mediaSource.DefaultAudioStreamIndex = audioStream.Index; |
| | 743 | | } |
| | 744 | |
|
| | 745 | | var videoStream = mediaStreams.FirstOrDefault(i => i.Type == MediaStreamType.Video); |
| | 746 | | if (videoStream is not null) |
| | 747 | | { |
| | 748 | | if (!videoStream.BitRate.HasValue) |
| | 749 | | { |
| | 750 | | var width = videoStream.Width ?? 1920; |
| | 751 | |
|
| | 752 | | if (width >= 3000) |
| | 753 | | { |
| | 754 | | videoStream.BitRate = 30000000; |
| | 755 | | } |
| | 756 | | else if (width >= 1900) |
| | 757 | | { |
| | 758 | | videoStream.BitRate = 20000000; |
| | 759 | | } |
| | 760 | | else if (width >= 1200) |
| | 761 | | { |
| | 762 | | videoStream.BitRate = 8000000; |
| | 763 | | } |
| | 764 | | else if (width >= 700) |
| | 765 | | { |
| | 766 | | videoStream.BitRate = 2000000; |
| | 767 | | } |
| | 768 | | } |
| | 769 | |
|
| | 770 | | // This is coming up false and preventing stream copy |
| | 771 | | videoStream.IsAVC = null; |
| | 772 | | } |
| | 773 | |
|
| | 774 | | if (isLiveStream) |
| | 775 | | { |
| | 776 | | mediaSource.AnalyzeDurationMs = 3000; |
| | 777 | | } |
| | 778 | |
|
| | 779 | | // Try to estimate this |
| | 780 | | mediaSource.InferTotalBitrate(true); |
| | 781 | | } |
| | 782 | |
|
| | 783 | | public Task<Tuple<MediaSourceInfo, IDirectStreamProvider>> GetLiveStreamWithDirectStreamProvider(string id, Canc |
| | 784 | | { |
| 0 | 785 | | ArgumentException.ThrowIfNullOrEmpty(id); |
| | 786 | |
|
| 0 | 787 | | var info = GetLiveStreamInfo(id); |
| 0 | 788 | | if (info is null) |
| | 789 | | { |
| 0 | 790 | | return Task.FromResult<Tuple<MediaSourceInfo, IDirectStreamProvider>>(new Tuple<MediaSourceInfo, IDirect |
| | 791 | | } |
| | 792 | |
|
| 0 | 793 | | return Task.FromResult<Tuple<MediaSourceInfo, IDirectStreamProvider>>(new Tuple<MediaSourceInfo, IDirectStre |
| | 794 | | } |
| | 795 | |
|
| | 796 | | public ILiveStream GetLiveStreamInfo(string id) |
| | 797 | | { |
| 0 | 798 | | ArgumentException.ThrowIfNullOrEmpty(id); |
| | 799 | |
|
| 0 | 800 | | if (_openStreams.TryGetValue(id, out ILiveStream info)) |
| | 801 | | { |
| 0 | 802 | | return info; |
| | 803 | | } |
| | 804 | |
|
| 0 | 805 | | return null; |
| | 806 | | } |
| | 807 | |
|
| | 808 | | /// <inheritdoc /> |
| | 809 | | public ILiveStream GetLiveStreamInfoByUniqueId(string uniqueId) |
| | 810 | | { |
| 0 | 811 | | return _openStreams.Values.FirstOrDefault(stream => string.Equals(uniqueId, stream?.UniqueId, StringComparis |
| | 812 | | } |
| | 813 | |
|
| | 814 | | public async Task<MediaSourceInfo> GetLiveStream(string id, CancellationToken cancellationToken) |
| | 815 | | { |
| | 816 | | var result = await GetLiveStreamWithDirectStreamProvider(id, cancellationToken).ConfigureAwait(false); |
| | 817 | | return result.Item1; |
| | 818 | | } |
| | 819 | |
|
| | 820 | | public async Task<IReadOnlyList<MediaSourceInfo>> GetRecordingStreamMediaSources(ActiveRecordingInfo info, Cance |
| | 821 | | { |
| | 822 | | var stream = new MediaSourceInfo |
| | 823 | | { |
| | 824 | | EncoderPath = _appHost.GetApiUrlForLocalAccess() + "/LiveTv/LiveRecordings/" + info.Id + "/stream", |
| | 825 | | EncoderProtocol = MediaProtocol.Http, |
| | 826 | | Path = info.Path, |
| | 827 | | Protocol = MediaProtocol.File, |
| | 828 | | Id = info.Id, |
| | 829 | | SupportsDirectPlay = false, |
| | 830 | | SupportsDirectStream = true, |
| | 831 | | SupportsTranscoding = true, |
| | 832 | | IsInfiniteStream = true, |
| | 833 | | RequiresOpening = false, |
| | 834 | | RequiresClosing = false, |
| | 835 | | BufferMs = 0, |
| | 836 | | IgnoreDts = true, |
| | 837 | | IgnoreIndex = true |
| | 838 | | }; |
| | 839 | |
|
| | 840 | | await new LiveStreamHelper(_mediaEncoder, _logger, _appPaths) |
| | 841 | | .AddMediaInfoWithProbe(stream, false, false, cancellationToken).ConfigureAwait(false); |
| | 842 | |
|
| | 843 | | return [stream]; |
| | 844 | | } |
| | 845 | |
|
| | 846 | | public async Task CloseLiveStream(string id) |
| | 847 | | { |
| | 848 | | ArgumentException.ThrowIfNullOrEmpty(id); |
| | 849 | |
|
| | 850 | | using (await _liveStreamLocker.LockAsync().ConfigureAwait(false)) |
| | 851 | | { |
| | 852 | | if (_openStreams.TryGetValue(id, out ILiveStream liveStream)) |
| | 853 | | { |
| | 854 | | liveStream.ConsumerCount--; |
| | 855 | |
|
| | 856 | | _logger.LogInformation("Live stream {0} consumer count is now {1}", liveStream.OriginalStreamId, liv |
| | 857 | |
|
| | 858 | | if (liveStream.ConsumerCount <= 0) |
| | 859 | | { |
| | 860 | | _openStreams.TryRemove(id, out _); |
| | 861 | |
|
| | 862 | | _logger.LogInformation("Closing live stream {0}", id); |
| | 863 | |
|
| | 864 | | await liveStream.Close().ConfigureAwait(false); |
| | 865 | | _logger.LogInformation("Live stream {0} closed successfully", id); |
| | 866 | | } |
| | 867 | | } |
| | 868 | | } |
| | 869 | | } |
| | 870 | |
|
| | 871 | | private (IMediaSourceProvider MediaSourceProvider, string KeyId) GetProvider(string key) |
| | 872 | | { |
| 0 | 873 | | ArgumentException.ThrowIfNullOrEmpty(key); |
| | 874 | |
|
| 0 | 875 | | var keys = key.Split(LiveStreamIdDelimiter, 2); |
| | 876 | |
|
| 0 | 877 | | var provider = _providers.FirstOrDefault(i => string.Equals(i.GetType().FullName.GetMD5().ToString("N", Cult |
| | 878 | |
|
| 0 | 879 | | var splitIndex = key.IndexOf(LiveStreamIdDelimiter, StringComparison.Ordinal); |
| 0 | 880 | | var keyId = key.Substring(splitIndex + 1); |
| | 881 | |
|
| 0 | 882 | | return (provider, keyId); |
| | 883 | | } |
| | 884 | |
|
| | 885 | | /// <inheritdoc /> |
| | 886 | | public void Dispose() |
| | 887 | | { |
| 21 | 888 | | Dispose(true); |
| 21 | 889 | | GC.SuppressFinalize(this); |
| 21 | 890 | | } |
| | 891 | |
|
| | 892 | | /// <summary> |
| | 893 | | /// Releases unmanaged and - optionally - managed resources. |
| | 894 | | /// </summary> |
| | 895 | | /// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release o |
| | 896 | | protected virtual void Dispose(bool dispose) |
| | 897 | | { |
| 21 | 898 | | if (dispose) |
| | 899 | | { |
| 42 | 900 | | foreach (var key in _openStreams.Keys.ToList()) |
| | 901 | | { |
| 0 | 902 | | CloseLiveStream(key).GetAwaiter().GetResult(); |
| | 903 | | } |
| | 904 | |
|
| 21 | 905 | | _liveStreamLocker.Dispose(); |
| | 906 | | } |
| 21 | 907 | | } |
| | 908 | | } |
| | 909 | | } |