jellyfin/MediaBrowser.Providers/MediaInfo/AudioFileProber.cs

311 lines
12 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using Jellyfin.Data.Enums;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Library;
2014-02-20 17:37:41 +01:00
using MediaBrowser.Controller.MediaEncoding;
2013-12-06 04:39:44 +01:00
using MediaBrowser.Controller.Persistence;
using MediaBrowser.Controller.Providers;
2015-04-05 17:01:57 +02:00
using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.Dto;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.MediaInfo;
using Microsoft.Extensions.Logging;
2022-03-28 23:11:21 +02:00
using TagLib;
2013-02-21 02:33:05 +01:00
2013-06-09 18:47:28 +02:00
namespace MediaBrowser.Providers.MediaInfo
2013-02-21 02:33:05 +01:00
{
2022-03-31 16:17:37 +02:00
/// <summary>
/// Probes audio files for metadata.
/// </summary>
2023-05-22 22:48:09 +02:00
public partial class AudioFileProber
2013-02-21 02:33:05 +01:00
{
// Default LUFS value for use with the web interface, at -18db gain will be 1(no db gain).
private const float DefaultLUFSValue = -18;
private readonly ILogger<AudioFileProber> _logger;
private readonly IMediaEncoder _mediaEncoder;
2013-12-06 04:39:44 +01:00
private readonly IItemRepository _itemRepo;
2015-06-28 19:00:36 +02:00
private readonly ILibraryManager _libraryManager;
2018-09-12 19:26:21 +02:00
private readonly IMediaSourceManager _mediaSourceManager;
2013-12-06 04:39:44 +01:00
2022-03-31 16:17:37 +02:00
/// <summary>
/// Initializes a new instance of the <see cref="AudioFileProber"/> class.
/// </summary>
/// <param name="logger">Instance of the <see cref="ILogger"/> interface.</param>
2022-03-31 16:17:37 +02:00
/// <param name="mediaSourceManager">Instance of the <see cref="IMediaSourceManager"/> interface.</param>
/// <param name="mediaEncoder">Instance of the <see cref="IMediaEncoder"/> interface.</param>
/// <param name="itemRepo">Instance of the <see cref="IItemRepository"/> interface.</param>
/// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
2022-03-29 17:06:30 +02:00
public AudioFileProber(
ILogger<AudioFileProber> logger,
2020-08-07 19:26:28 +02:00
IMediaSourceManager mediaSourceManager,
IMediaEncoder mediaEncoder,
IItemRepository itemRepo,
ILibraryManager libraryManager)
2013-03-02 18:59:15 +01:00
{
_logger = logger;
_mediaEncoder = mediaEncoder;
2013-12-06 04:39:44 +01:00
_itemRepo = itemRepo;
2015-06-28 19:00:36 +02:00
_libraryManager = libraryManager;
2018-09-12 19:26:21 +02:00
_mediaSourceManager = mediaSourceManager;
2013-03-02 18:59:15 +01:00
}
[GeneratedRegex(@"I:\s+(.*?)\s+LUFS")]
2023-05-22 22:48:09 +02:00
private static partial Regex LUFSRegex();
2022-03-31 16:17:37 +02:00
/// <summary>
/// Probes the specified item for metadata.
/// </summary>
/// <param name="item">The item to probe.</param>
/// <param name="options">The <see cref="MetadataRefreshOptions"/>.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/>.</param>
/// <typeparam name="T">The type of item to resolve.</typeparam>
/// <returns>A <see cref="Task"/> probing the item for metadata.</returns>
2020-09-07 13:20:39 +02:00
public async Task<ItemUpdateType> Probe<T>(
T item,
MetadataRefreshOptions options,
2018-09-12 19:26:21 +02:00
CancellationToken cancellationToken)
where T : Audio
2013-06-18 21:16:27 +02:00
{
2018-09-12 19:26:21 +02:00
var path = item.Path;
var protocol = item.PathProtocol ?? MediaProtocol.File;
2013-06-18 21:16:27 +02:00
2018-09-12 19:26:21 +02:00
if (!item.IsShortcut || options.EnableRemoteContentProbe)
{
if (item.IsShortcut)
{
path = item.ShortcutPath;
protocol = _mediaSourceManager.GetPathProtocol(path);
}
2013-06-18 21:16:27 +02:00
2020-09-07 13:20:39 +02:00
var result = await _mediaEncoder.GetMediaInfo(
new MediaInfoRequest
2018-09-12 19:26:21 +02:00
{
2020-09-07 13:20:39 +02:00
MediaType = DlnaProfileType.Audio,
MediaSource = new MediaSourceInfo
{
Path = path,
Protocol = protocol
}
},
cancellationToken).ConfigureAwait(false);
2018-09-12 19:26:21 +02:00
cancellationToken.ThrowIfCancellationRequested();
2014-02-09 22:11:11 +01:00
2020-09-07 13:20:39 +02:00
Fetch(item, result, cancellationToken);
2018-09-12 19:26:21 +02:00
}
2014-02-09 22:11:11 +01:00
var libraryOptions = _libraryManager.GetLibraryOptions(item);
if (libraryOptions.EnableLUFSScan)
{
using (var process = new Process()
{
StartInfo = new ProcessStartInfo
{
FileName = _mediaEncoder.EncoderPath,
Arguments = $"-hide_banner -i \"{path}\" -af ebur128=framelog=verbose -f null -",
RedirectStandardOutput = false,
RedirectStandardError = true
},
})
{
try
{
process.Start();
}
catch (Exception ex)
{
_logger.LogError(ex, "Error starting ffmpeg");
throw;
}
using var reader = process.StandardError;
2023-10-07 23:56:07 +02:00
var output = await reader.ReadToEndAsync(cancellationToken).ConfigureAwait(false);
cancellationToken.ThrowIfCancellationRequested();
2023-05-22 22:48:09 +02:00
MatchCollection split = LUFSRegex().Matches(output);
if (split.Count != 0)
{
item.LUFS = float.Parse(split[0].Groups[1].ValueSpan, CultureInfo.InvariantCulture.NumberFormat);
}
else
{
item.LUFS = DefaultLUFSValue;
}
}
}
else
{
item.LUFS = DefaultLUFSValue;
}
_logger.LogDebug("LUFS for {ItemName} is {LUFS}.", item.Name, item.LUFS);
2018-09-12 19:26:21 +02:00
return ItemUpdateType.MetadataImport;
2013-06-18 21:16:27 +02:00
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Fetches the specified audio.
/// </summary>
2022-03-31 16:17:37 +02:00
/// <param name="audio">The <see cref="Audio"/>.</param>
/// <param name="mediaInfo">The <see cref="Model.MediaInfo.MediaInfo"/>.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/>.</param>
2020-09-07 13:20:39 +02:00
protected void Fetch(Audio audio, Model.MediaInfo.MediaInfo mediaInfo, CancellationToken cancellationToken)
2013-02-21 02:33:05 +01:00
{
2017-08-04 22:29:34 +02:00
audio.Container = mediaInfo.Container;
2015-04-04 21:35:29 +02:00
audio.TotalBitrate = mediaInfo.Bitrate;
2013-12-06 04:39:44 +01:00
2015-04-04 21:35:29 +02:00
audio.RunTimeTicks = mediaInfo.RunTimeTicks;
audio.Size = mediaInfo.Size;
if (!audio.IsLocked)
{
FetchDataFromTags(audio);
}
2013-12-06 04:39:44 +01:00
2022-01-22 15:40:05 +01:00
_itemRepo.SaveMediaStreams(audio.Id, mediaInfo.MediaStreams, cancellationToken);
2013-02-21 02:33:05 +01:00
}
/// <summary>
2022-03-31 16:17:37 +02:00
/// Fetches data from the tags.
2013-02-21 02:33:05 +01:00
/// </summary>
2022-03-31 16:17:37 +02:00
/// <param name="audio">The <see cref="Audio"/>.</param>
2022-03-28 23:11:21 +02:00
private void FetchDataFromTags(Audio audio)
2013-02-21 02:33:05 +01:00
{
2022-03-28 23:11:21 +02:00
var file = TagLib.File.Create(audio.Path);
var tagTypes = file.TagTypesOnDisk;
2022-10-07 14:40:10 +02:00
Tag? tags = null;
2022-03-28 23:11:21 +02:00
if (tagTypes.HasFlag(TagTypes.Id3v2))
2013-02-21 02:33:05 +01:00
{
2022-03-28 23:11:21 +02:00
tags = file.GetTag(TagTypes.Id3v2);
2013-02-21 02:33:05 +01:00
}
2022-03-28 23:11:21 +02:00
else if (tagTypes.HasFlag(TagTypes.Ape))
{
2022-03-28 23:11:21 +02:00
tags = file.GetTag(TagTypes.Ape);
}
2022-03-28 23:11:21 +02:00
else if (tagTypes.HasFlag(TagTypes.FlacMetadata))
2013-02-21 02:33:05 +01:00
{
2022-03-28 23:11:21 +02:00
tags = file.GetTag(TagTypes.FlacMetadata);
}
2022-10-03 13:05:57 +02:00
else if (tagTypes.HasFlag(TagTypes.Apple))
{
tags = file.GetTag(TagTypes.Apple);
}
2022-10-03 13:16:13 +02:00
else if (tagTypes.HasFlag(TagTypes.Xiph))
{
tags = file.GetTag(TagTypes.Xiph);
}
else if (tagTypes.HasFlag(TagTypes.AudibleMetadata))
{
tags = file.GetTag(TagTypes.AudibleMetadata);
}
2022-03-28 23:11:21 +02:00
else if (tagTypes.HasFlag(TagTypes.Id3v1))
{
tags = file.GetTag(TagTypes.Id3v1);
}
2013-08-29 23:00:27 +02:00
2022-12-05 15:01:13 +01:00
if (tags is not null)
2022-03-28 23:11:21 +02:00
{
if (audio.SupportsPeople && !audio.LockedFields.Contains(MetadataField.Cast))
2013-08-04 02:59:23 +02:00
{
2022-03-28 23:11:21 +02:00
var people = new List<PersonInfo>();
var albumArtists = tags.AlbumArtists;
foreach (var albumArtist in albumArtists)
2013-02-21 02:33:05 +01:00
{
if (!string.IsNullOrEmpty(albumArtist))
2022-03-28 23:11:21 +02:00
{
PeopleHelper.AddPerson(people, new PersonInfo
{
Name = albumArtist,
Type = PersonKind.AlbumArtist
});
}
2022-03-28 23:11:21 +02:00
}
2014-06-23 18:05:19 +02:00
2022-03-28 23:11:21 +02:00
var performers = tags.Performers;
foreach (var performer in performers)
{
if (!string.IsNullOrEmpty(performer))
2022-03-28 23:11:21 +02:00
{
PeopleHelper.AddPerson(people, new PersonInfo
{
Name = performer,
Type = PersonKind.Artist
});
}
2022-03-28 23:11:21 +02:00
}
2013-02-21 02:33:05 +01:00
2022-03-28 23:11:21 +02:00
foreach (var composer in tags.Composers)
{
if (!string.IsNullOrEmpty(composer))
2022-03-28 23:11:21 +02:00
{
PeopleHelper.AddPerson(people, new PersonInfo
{
Name = composer,
Type = PersonKind.Composer
});
}
2022-03-28 23:11:21 +02:00
}
_libraryManager.UpdatePeople(audio, people);
audio.Artists ??= performers;
audio.AlbumArtists ??= albumArtists;
2022-03-28 23:11:21 +02:00
}
2013-02-21 02:33:05 +01:00
audio.Name = string.IsNullOrEmpty(audio.Name) ? tags.Title : audio.Name;
audio.Album ??= tags.Album;
audio.IndexNumber ??= Convert.ToInt32(tags.Track);
audio.ParentIndexNumber ??= Convert.ToInt32(tags.Disc);
2022-03-29 17:06:30 +02:00
if (tags.Year != 0)
2022-03-28 23:11:21 +02:00
{
var year = Convert.ToInt32(tags.Year);
audio.ProductionYear = year;
audio.PremiereDate = new DateTime(year, 01, 01);
}
2022-03-28 23:11:21 +02:00
if (!audio.LockedFields.Contains(MetadataField.Genres))
{
2022-03-28 23:11:21 +02:00
audio.Genres = tags.Genres.Distinct(StringComparer.OrdinalIgnoreCase).ToArray();
}
2013-02-21 02:33:05 +01:00
if (!audio.TryGetProviderId("MusicBrainzArtist", out _))
{
audio.SetProviderId(MetadataProvider.MusicBrainzArtist, tags.MusicBrainzArtistId);
}
if (!audio.TryGetProviderId("MusicBrainzAlbumArtist", out _))
{
audio.SetProviderId(MetadataProvider.MusicBrainzAlbumArtist, tags.MusicBrainzReleaseArtistId);
}
if (!audio.TryGetProviderId("MusicBrainzAlbum", out _))
{
audio.SetProviderId(MetadataProvider.MusicBrainzAlbum, tags.MusicBrainzReleaseId);
}
if (!audio.TryGetProviderId("MusicBrainzReleaseGroup", out _))
{
audio.SetProviderId(MetadataProvider.MusicBrainzReleaseGroup, tags.MusicBrainzReleaseGroupId);
}
if (!audio.TryGetProviderId("MusicBrainzTrack", out _))
{
audio.SetProviderId(MetadataProvider.MusicBrainzTrack, tags.MusicBrainzTrackId);
}
2013-02-21 02:33:05 +01:00
}
}
}
2013-02-21 02:33:05 +01:00
}