123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- using System;
- using MediaBrowser.Common.Extensions;
- using MediaBrowser.Controller.Configuration;
- using MediaBrowser.Controller.Entities;
- using MediaBrowser.Controller.Entities.Audio;
- using MediaBrowser.Controller.MediaEncoding;
- using MediaBrowser.Controller.Providers;
- using MediaBrowser.Model.Entities;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Threading;
- using System.Threading.Tasks;
- using MediaBrowser.Model.IO;
- using MediaBrowser.Model.Extensions;
- namespace MediaBrowser.Providers.MediaInfo
- {
- /// <summary>
- /// Uses ffmpeg to create video images
- /// </summary>
- public class AudioImageProvider : IDynamicImageProvider, IHasItemChangeMonitor
- {
- private readonly IMediaEncoder _mediaEncoder;
- private readonly IServerConfigurationManager _config;
- private readonly IFileSystem _fileSystem;
- public AudioImageProvider(IMediaEncoder mediaEncoder, IServerConfigurationManager config, IFileSystem fileSystem)
- {
- _mediaEncoder = mediaEncoder;
- _config = config;
- _fileSystem = fileSystem;
- }
- public IEnumerable<ImageType> GetSupportedImages(IHasMetadata item)
- {
- return new List<ImageType> { ImageType.Primary };
- }
- public Task<DynamicImageResponse> GetImage(IHasMetadata item, ImageType type, CancellationToken cancellationToken)
- {
- var audio = (Audio)item;
- var imageStreams =
- audio.GetMediaStreams(MediaStreamType.EmbeddedImage)
- .Where(i => i.Type == MediaStreamType.EmbeddedImage)
- .ToList();
- // Can't extract if we didn't find a video stream in the file
- if (imageStreams.Count == 0)
- {
- return Task.FromResult(new DynamicImageResponse { HasImage = false });
- }
- return GetImage((Audio)item, imageStreams, cancellationToken);
- }
- public async Task<DynamicImageResponse> GetImage(Audio item, List<MediaStream> imageStreams, CancellationToken cancellationToken)
- {
- var path = GetAudioImagePath(item);
- if (!_fileSystem.FileExists(path))
- {
- _fileSystem.CreateDirectory(_fileSystem.GetDirectoryName(path));
- var imageStream = imageStreams.FirstOrDefault(i => (i.Comment ?? string.Empty).IndexOf("front", StringComparison.OrdinalIgnoreCase) != -1) ??
- imageStreams.FirstOrDefault(i => (i.Comment ?? string.Empty).IndexOf("cover", StringComparison.OrdinalIgnoreCase) != -1) ??
- imageStreams.FirstOrDefault();
- var imageStreamIndex = imageStream == null ? (int?)null : imageStream.Index;
- var tempFile = await _mediaEncoder.ExtractAudioImage(item.Path, imageStreamIndex, cancellationToken).ConfigureAwait(false);
- _fileSystem.CopyFile(tempFile, path, true);
- try
- {
- _fileSystem.DeleteFile(tempFile);
- }
- catch
- {
- }
- }
- return new DynamicImageResponse
- {
- HasImage = true,
- Path = path
- };
- }
- private string GetAudioImagePath(Audio item)
- {
- var filename = item.Album ?? string.Empty;
- filename += string.Join(",", item.Artists);
- if (!string.IsNullOrWhiteSpace(item.Album))
- {
- filename += "_" + item.Album;
- }
- else if (!string.IsNullOrWhiteSpace(item.Name))
- {
- filename += "_" + item.Name;
- }
- else
- {
- filename += "_" + item.Id.ToString("N");
- }
- filename = filename.GetMD5() + ".jpg";
- var prefix = filename.Substring(0, 1);
- return Path.Combine(AudioImagesPath, prefix, filename);
- }
- public string AudioImagesPath
- {
- get
- {
- return Path.Combine(_config.ApplicationPaths.CachePath, "extracted-audio-images");
- }
- }
- public string Name
- {
- get { return "Image Extractor"; }
- }
- public bool Supports(IHasMetadata item)
- {
- var audio = item as Audio;
- return item.LocationType == LocationType.FileSystem && audio != null;
- }
- public bool HasChanged(IHasMetadata item, IDirectoryService directoryService)
- {
- if (item.EnableRefreshOnDateModifiedChange && !string.IsNullOrWhiteSpace(item.Path) && item.LocationType == LocationType.FileSystem)
- {
- var file = directoryService.GetFile(item.Path);
- if (file != null && file.LastWriteTimeUtc != item.DateModified)
- {
- return true;
- }
- }
- return false;
- }
- }
- }
|