jellyfin/MediaBrowser.Providers/MediaInfo/AudioFileProber.cs

219 lines
8.3 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
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;
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>
2022-03-29 17:06:30 +02:00
public class AudioFileProber
2013-02-21 02:33:05 +01:00
{
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="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(
2020-08-07 19:26:28 +02:00
IMediaSourceManager mediaSourceManager,
IMediaEncoder mediaEncoder,
IItemRepository itemRepo,
ILibraryManager libraryManager)
2013-03-02 18:59:15 +01:00
{
_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
}
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
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
{
2022-03-28 23:11:21 +02:00
PeopleHelper.AddPerson(people, new PersonInfo
{
Name = albumArtist,
Type = "AlbumArtist"
});
}
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)
{
PeopleHelper.AddPerson(people, new PersonInfo
{
Name = performer,
Type = "Artist"
});
}
2013-02-21 02:33:05 +01:00
2022-03-28 23:11:21 +02:00
foreach (var composer in tags.Composers)
{
PeopleHelper.AddPerson(people, new PersonInfo
{
Name = composer,
Type = "Composer"
});
}
_libraryManager.UpdatePeople(audio, people);
audio.Artists = performers;
audio.AlbumArtists = albumArtists;
}
2013-02-21 02:33:05 +01:00
2022-03-28 23:11:21 +02:00
audio.Name = tags.Title;
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
2022-03-28 23:11:21 +02:00
audio.SetProviderId(MetadataProvider.MusicBrainzArtist, tags.MusicBrainzArtistId);
audio.SetProviderId(MetadataProvider.MusicBrainzAlbumArtist, tags.MusicBrainzReleaseArtistId);
audio.SetProviderId(MetadataProvider.MusicBrainzAlbum, tags.MusicBrainzReleaseId);
audio.SetProviderId(MetadataProvider.MusicBrainzReleaseGroup, tags.MusicBrainzReleaseGroupId);
audio.SetProviderId(MetadataProvider.MusicBrainzTrack, tags.MusicBrainzTrackId);
2013-02-21 02:33:05 +01:00
}
}
}
2013-02-21 02:33:05 +01:00
}