| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.IO; |
| | 6 | | using System.Linq; |
| | 7 | | using System.Threading; |
| | 8 | | using System.Threading.Tasks; |
| | 9 | | using MediaBrowser.Controller.Entities; |
| | 10 | | using MediaBrowser.Controller.Entities.TV; |
| | 11 | | using MediaBrowser.Controller.Library; |
| | 12 | | using MediaBrowser.Controller.MediaEncoding; |
| | 13 | | using MediaBrowser.Controller.Persistence; |
| | 14 | | using MediaBrowser.Controller.Providers; |
| | 15 | | using MediaBrowser.Model.Drawing; |
| | 16 | | using MediaBrowser.Model.Dto; |
| | 17 | | using MediaBrowser.Model.Entities; |
| | 18 | | using MediaBrowser.Model.MediaInfo; |
| | 19 | | using MediaBrowser.Model.Net; |
| | 20 | | using Microsoft.Extensions.Logging; |
| | 21 | |
|
| | 22 | | namespace MediaBrowser.Providers.MediaInfo |
| | 23 | | { |
| | 24 | | /// <summary> |
| | 25 | | /// Uses <see cref="IMediaEncoder"/> to extract embedded images. |
| | 26 | | /// </summary> |
| | 27 | | public class EmbeddedImageProvider : IDynamicImageProvider, IHasOrder |
| | 28 | | { |
| 1 | 29 | | private static readonly string[] _primaryImageFileNames = |
| 1 | 30 | | { |
| 1 | 31 | | "poster", |
| 1 | 32 | | "folder", |
| 1 | 33 | | "cover", |
| 1 | 34 | | "default", |
| 1 | 35 | | "movie", |
| 1 | 36 | | "show" |
| 1 | 37 | | }; |
| | 38 | |
|
| 1 | 39 | | private static readonly string[] _backdropImageFileNames = |
| 1 | 40 | | { |
| 1 | 41 | | "backdrop", |
| 1 | 42 | | "background", |
| 1 | 43 | | "art" |
| 1 | 44 | | }; |
| | 45 | |
|
| 1 | 46 | | private static readonly string[] _logoImageFileNames = |
| 1 | 47 | | { |
| 1 | 48 | | "logo", |
| 1 | 49 | | }; |
| | 50 | |
|
| | 51 | | private readonly IMediaSourceManager _mediaSourceManager; |
| | 52 | | private readonly IMediaEncoder _mediaEncoder; |
| | 53 | | private readonly ILogger<EmbeddedImageProvider> _logger; |
| | 54 | |
|
| | 55 | | /// <summary> |
| | 56 | | /// Initializes a new instance of the <see cref="EmbeddedImageProvider"/> class. |
| | 57 | | /// </summary> |
| | 58 | | /// <param name="mediaSourceManager">The media source manager for fetching item streams and attachments.</param> |
| | 59 | | /// <param name="mediaEncoder">The media encoder for extracting attached/embedded images.</param> |
| | 60 | | /// <param name="logger">The logger.</param> |
| | 61 | | public EmbeddedImageProvider(IMediaSourceManager mediaSourceManager, IMediaEncoder mediaEncoder, ILogger<Embedde |
| | 62 | | { |
| 43 | 63 | | _mediaSourceManager = mediaSourceManager; |
| 43 | 64 | | _mediaEncoder = mediaEncoder; |
| 43 | 65 | | _logger = logger; |
| 43 | 66 | | } |
| | 67 | |
|
| | 68 | | /// <inheritdoc /> |
| 0 | 69 | | public string Name => "Embedded Image Extractor"; |
| | 70 | |
|
| | 71 | | /// <inheritdoc /> |
| | 72 | | // Default to after internet image providers but before Screen Grabber |
| 0 | 73 | | public int Order => 99; |
| | 74 | |
|
| | 75 | | /// <inheritdoc /> |
| | 76 | | public IEnumerable<ImageType> GetSupportedImages(BaseItem item) |
| | 77 | | { |
| 6 | 78 | | if (item is Video) |
| | 79 | | { |
| 2 | 80 | | if (item is Episode) |
| | 81 | | { |
| 1 | 82 | | return new[] |
| 1 | 83 | | { |
| 1 | 84 | | ImageType.Primary, |
| 1 | 85 | | }; |
| | 86 | | } |
| | 87 | |
|
| 1 | 88 | | return new[] |
| 1 | 89 | | { |
| 1 | 90 | | ImageType.Primary, |
| 1 | 91 | | ImageType.Backdrop, |
| 1 | 92 | | ImageType.Logo, |
| 1 | 93 | | }; |
| | 94 | | } |
| | 95 | |
|
| 4 | 96 | | return Array.Empty<ImageType>(); |
| | 97 | | } |
| | 98 | |
|
| | 99 | | /// <inheritdoc /> |
| | 100 | | public Task<DynamicImageResponse> GetImage(BaseItem item, ImageType type, CancellationToken cancellationToken) |
| | 101 | | { |
| 16 | 102 | | var video = (Video)item; |
| | 103 | |
|
| | 104 | | // No support for these |
| 16 | 105 | | if (video.IsPlaceHolder || video.VideoType == VideoType.Dvd) |
| | 106 | | { |
| 0 | 107 | | return Task.FromResult(new DynamicImageResponse { HasImage = false }); |
| | 108 | | } |
| | 109 | |
|
| 16 | 110 | | return GetEmbeddedImage(video, type, cancellationToken); |
| | 111 | | } |
| | 112 | |
|
| | 113 | | private async Task<DynamicImageResponse> GetEmbeddedImage(Video item, ImageType type, CancellationToken cancella |
| | 114 | | { |
| | 115 | | MediaSourceInfo mediaSource = new MediaSourceInfo |
| | 116 | | { |
| | 117 | | VideoType = item.VideoType, |
| | 118 | | IsoType = item.IsoType, |
| | 119 | | Protocol = item.PathProtocol ?? MediaProtocol.File, |
| | 120 | | }; |
| | 121 | |
|
| | 122 | | string[] imageFileNames = type switch |
| | 123 | | { |
| | 124 | | ImageType.Primary => _primaryImageFileNames, |
| | 125 | | ImageType.Backdrop => _backdropImageFileNames, |
| | 126 | | ImageType.Logo => _logoImageFileNames, |
| | 127 | | _ => Array.Empty<string>() |
| | 128 | | }; |
| | 129 | |
|
| | 130 | | if (imageFileNames.Length == 0) |
| | 131 | | { |
| | 132 | | _logger.LogWarning("Attempted to load unexpected image type: {Type}", type); |
| | 133 | | return new DynamicImageResponse { HasImage = false }; |
| | 134 | | } |
| | 135 | |
|
| | 136 | | // Try attachments first |
| | 137 | | var attachmentStream = _mediaSourceManager.GetMediaAttachments(item.Id) |
| | 138 | | .FirstOrDefault(attachment => !string.IsNullOrEmpty(attachment.FileName) |
| | 139 | | && imageFileNames.Any(name => attachment.FileName.Contains(name, StringComparison.OrdinalIgnoreCase) |
| | 140 | |
|
| | 141 | | if (attachmentStream is not null) |
| | 142 | | { |
| | 143 | | return await ExtractAttachment(item, attachmentStream, mediaSource, cancellationToken).ConfigureAwait(fa |
| | 144 | | } |
| | 145 | |
|
| | 146 | | // Fall back to EmbeddedImage streams |
| | 147 | | var imageStreams = _mediaSourceManager.GetMediaStreams(new MediaStreamQuery |
| | 148 | | { |
| | 149 | | ItemId = item.Id, |
| | 150 | | Type = MediaStreamType.EmbeddedImage |
| | 151 | | }); |
| | 152 | |
|
| | 153 | | if (imageStreams.Count == 0) |
| | 154 | | { |
| | 155 | | // Can't extract if we don't have any EmbeddedImage streams |
| | 156 | | return new DynamicImageResponse { HasImage = false }; |
| | 157 | | } |
| | 158 | |
|
| | 159 | | // Extract first stream containing an element of imageFileNames |
| | 160 | | var imageStream = imageStreams |
| | 161 | | .FirstOrDefault(stream => !string.IsNullOrEmpty(stream.Comment) |
| | 162 | | && imageFileNames.Any(name => stream.Comment.Contains(name, StringComparison.OrdinalIgnoreCase))); |
| | 163 | |
|
| | 164 | | // Primary type only: default to first image if none found by label |
| | 165 | | if (imageStream is null) |
| | 166 | | { |
| | 167 | | if (type == ImageType.Primary) |
| | 168 | | { |
| | 169 | | imageStream = imageStreams[0]; |
| | 170 | | } |
| | 171 | | else |
| | 172 | | { |
| | 173 | | // No streams matched, abort |
| | 174 | | return new DynamicImageResponse { HasImage = false }; |
| | 175 | | } |
| | 176 | | } |
| | 177 | |
|
| | 178 | | var format = imageStream.Codec switch |
| | 179 | | { |
| | 180 | | "bmp" => ImageFormat.Bmp, |
| | 181 | | "gif" => ImageFormat.Gif, |
| | 182 | | "mjpeg" => ImageFormat.Jpg, |
| | 183 | | "png" => ImageFormat.Png, |
| | 184 | | "webp" => ImageFormat.Webp, |
| | 185 | | _ => ImageFormat.Jpg |
| | 186 | | }; |
| | 187 | |
|
| | 188 | | string extractedImagePath = |
| | 189 | | await _mediaEncoder.ExtractVideoImage(item.Path, item.Container, mediaSource, imageStream, imageStream.I |
| | 190 | | .ConfigureAwait(false); |
| | 191 | |
|
| | 192 | | return new DynamicImageResponse |
| | 193 | | { |
| | 194 | | Format = format, |
| | 195 | | HasImage = true, |
| | 196 | | Path = extractedImagePath, |
| | 197 | | Protocol = MediaProtocol.File |
| | 198 | | }; |
| | 199 | | } |
| | 200 | |
|
| | 201 | | private async Task<DynamicImageResponse> ExtractAttachment(Video item, MediaAttachment attachmentStream, MediaSo |
| | 202 | | { |
| | 203 | | var extension = string.IsNullOrEmpty(attachmentStream.MimeType) |
| | 204 | | ? Path.GetExtension(attachmentStream.FileName) |
| | 205 | | : MimeTypes.ToExtension(attachmentStream.MimeType); |
| | 206 | |
|
| | 207 | | ImageFormat format = extension switch |
| | 208 | | { |
| | 209 | | ".bmp" => ImageFormat.Bmp, |
| | 210 | | ".gif" => ImageFormat.Gif, |
| | 211 | | ".png" => ImageFormat.Png, |
| | 212 | | ".webp" => ImageFormat.Webp, |
| | 213 | | _ => ImageFormat.Jpg |
| | 214 | | }; |
| | 215 | |
|
| | 216 | | string extractedAttachmentPath = |
| | 217 | | await _mediaEncoder.ExtractVideoImage(item.Path, item.Container, mediaSource, null, attachmentStream.Ind |
| | 218 | | .ConfigureAwait(false); |
| | 219 | |
|
| | 220 | | return new DynamicImageResponse |
| | 221 | | { |
| | 222 | | Format = format, |
| | 223 | | HasImage = true, |
| | 224 | | Path = extractedAttachmentPath, |
| | 225 | | Protocol = MediaProtocol.File |
| | 226 | | }; |
| | 227 | | } |
| | 228 | |
|
| | 229 | | /// <inheritdoc /> |
| | 230 | | public bool Supports(BaseItem item) |
| | 231 | | { |
| 53 | 232 | | if (item.IsShortcut) |
| | 233 | | { |
| 0 | 234 | | return false; |
| | 235 | | } |
| | 236 | |
|
| 53 | 237 | | if (!item.IsFileProtocol) |
| | 238 | | { |
| 0 | 239 | | return false; |
| | 240 | | } |
| | 241 | |
|
| 53 | 242 | | return item is Video video && !video.IsPlaceHolder && video.IsCompleteMedia; |
| | 243 | | } |
| | 244 | | } |
| | 245 | | } |