2021-10-26 13:49:01 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2019-01-13 20:03:10 +00:00
|
|
|
using System;
|
2019-01-13 19:26:31 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
2013-02-21 01:33:05 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2014-02-06 04:39:16 +00:00
|
|
|
using MediaBrowser.Controller.Library;
|
2014-02-20 16:37:41 +00:00
|
|
|
using MediaBrowser.Controller.MediaEncoding;
|
2013-12-06 03:39:44 +00:00
|
|
|
using MediaBrowser.Controller.Persistence;
|
2019-01-13 19:26:31 +00:00
|
|
|
using MediaBrowser.Controller.Providers;
|
2015-04-05 15:01:57 +00:00
|
|
|
using MediaBrowser.Model.Dlna;
|
2019-01-13 19:26:31 +00:00
|
|
|
using MediaBrowser.Model.Dto;
|
2013-02-21 01:33:05 +00:00
|
|
|
using MediaBrowser.Model.Entities;
|
2014-06-17 01:56:23 +00:00
|
|
|
using MediaBrowser.Model.MediaInfo;
|
2022-03-28 21:11:21 +00:00
|
|
|
using TagLib;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2013-06-09 16:47:28 +00:00
|
|
|
namespace MediaBrowser.Providers.MediaInfo
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2022-03-31 14:17:37 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Probes audio files for metadata.
|
|
|
|
/// </summary>
|
2022-03-29 15:06:30 +00:00
|
|
|
public class AudioFileProber
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
private readonly IMediaEncoder _mediaEncoder;
|
2013-12-06 03:39:44 +00:00
|
|
|
private readonly IItemRepository _itemRepo;
|
2015-06-28 17:00:36 +00:00
|
|
|
private readonly ILibraryManager _libraryManager;
|
2018-09-12 17:26:21 +00:00
|
|
|
private readonly IMediaSourceManager _mediaSourceManager;
|
2013-12-06 03:39:44 +00:00
|
|
|
|
2022-03-31 14:17:37 +00: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 15:06:30 +00:00
|
|
|
public AudioFileProber(
|
2020-08-07 17:26:28 +00:00
|
|
|
IMediaSourceManager mediaSourceManager,
|
|
|
|
IMediaEncoder mediaEncoder,
|
|
|
|
IItemRepository itemRepo,
|
|
|
|
ILibraryManager libraryManager)
|
2013-03-02 17:59:15 +00:00
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
_mediaEncoder = mediaEncoder;
|
2013-12-06 03:39:44 +00:00
|
|
|
_itemRepo = itemRepo;
|
2015-06-28 17:00:36 +00:00
|
|
|
_libraryManager = libraryManager;
|
2018-09-12 17:26:21 +00:00
|
|
|
_mediaSourceManager = mediaSourceManager;
|
2013-03-02 17:59:15 +00:00
|
|
|
}
|
|
|
|
|
2022-03-31 14:17:37 +00: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 11:20:39 +00:00
|
|
|
public async Task<ItemUpdateType> Probe<T>(
|
|
|
|
T item,
|
|
|
|
MetadataRefreshOptions options,
|
2018-09-12 17:26:21 +00:00
|
|
|
CancellationToken cancellationToken)
|
2014-02-06 04:39:16 +00:00
|
|
|
where T : Audio
|
2013-06-18 19:16:27 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
var path = item.Path;
|
|
|
|
var protocol = item.PathProtocol ?? MediaProtocol.File;
|
2013-06-18 19:16:27 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (!item.IsShortcut || options.EnableRemoteContentProbe)
|
|
|
|
{
|
|
|
|
if (item.IsShortcut)
|
|
|
|
{
|
|
|
|
path = item.ShortcutPath;
|
|
|
|
protocol = _mediaSourceManager.GetPathProtocol(path);
|
|
|
|
}
|
2013-06-18 19:16:27 +00:00
|
|
|
|
2020-09-07 11:20:39 +00:00
|
|
|
var result = await _mediaEncoder.GetMediaInfo(
|
|
|
|
new MediaInfoRequest
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2020-09-07 11:20:39 +00:00
|
|
|
MediaType = DlnaProfileType.Audio,
|
|
|
|
MediaSource = new MediaSourceInfo
|
|
|
|
{
|
|
|
|
Path = path,
|
|
|
|
Protocol = protocol
|
|
|
|
}
|
|
|
|
},
|
|
|
|
cancellationToken).ConfigureAwait(false);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2014-02-09 21:11:11 +00:00
|
|
|
|
2020-09-07 11:20:39 +00:00
|
|
|
Fetch(item, result, cancellationToken);
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
2014-02-09 21:11:11 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
return ItemUpdateType.MetadataImport;
|
2013-06-18 19:16:27 +00:00
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Fetches the specified audio.
|
|
|
|
/// </summary>
|
2022-03-31 14:17:37 +00: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 11:20:39 +00:00
|
|
|
protected void Fetch(Audio audio, Model.MediaInfo.MediaInfo mediaInfo, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2017-08-04 20:29:34 +00:00
|
|
|
audio.Container = mediaInfo.Container;
|
2015-04-04 19:35:29 +00:00
|
|
|
audio.TotalBitrate = mediaInfo.Bitrate;
|
2013-12-06 03:39:44 +00:00
|
|
|
|
2015-04-04 19:35:29 +00:00
|
|
|
audio.RunTimeTicks = mediaInfo.RunTimeTicks;
|
|
|
|
audio.Size = mediaInfo.Size;
|
2013-05-15 04:05:52 +00:00
|
|
|
|
2022-03-28 21:11:21 +00:00
|
|
|
FetchDataFromTags(audio);
|
2013-12-06 03:39:44 +00:00
|
|
|
|
2022-01-22 14:40:05 +00:00
|
|
|
_itemRepo.SaveMediaStreams(audio.Id, mediaInfo.MediaStreams, cancellationToken);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2022-03-31 14:17:37 +00:00
|
|
|
/// Fetches data from the tags.
|
2013-02-21 01:33:05 +00:00
|
|
|
/// </summary>
|
2022-03-31 14:17:37 +00:00
|
|
|
/// <param name="audio">The <see cref="Audio"/>.</param>
|
2022-03-28 21:11:21 +00:00
|
|
|
private void FetchDataFromTags(Audio audio)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2022-03-28 21:11:21 +00:00
|
|
|
var file = TagLib.File.Create(audio.Path);
|
|
|
|
var tagTypes = file.TagTypesOnDisk;
|
|
|
|
Tag tags = null;
|
|
|
|
|
|
|
|
if (tagTypes.HasFlag(TagTypes.Id3v2))
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2022-03-28 21:11:21 +00:00
|
|
|
tags = file.GetTag(TagTypes.Id3v2);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
2022-03-28 21:11:21 +00:00
|
|
|
else if (tagTypes.HasFlag(TagTypes.Ape))
|
2021-04-04 21:34:29 +00:00
|
|
|
{
|
2022-03-28 21:11:21 +00:00
|
|
|
tags = file.GetTag(TagTypes.Ape);
|
2021-04-04 21:34:29 +00:00
|
|
|
}
|
2022-03-28 21:11:21 +00:00
|
|
|
else if (tagTypes.HasFlag(TagTypes.FlacMetadata))
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2022-03-28 21:11:21 +00:00
|
|
|
tags = file.GetTag(TagTypes.FlacMetadata);
|
|
|
|
}
|
2022-10-01 18:18:14 +00:00
|
|
|
else if (tagTypes.HasFlag(TagTypes.AudibleMetadata))
|
|
|
|
{
|
|
|
|
tags = file.GetTag(TagTypes.AudibleMetadata);
|
|
|
|
}
|
2022-03-28 21:11:21 +00:00
|
|
|
else if (tagTypes.HasFlag(TagTypes.Id3v1))
|
|
|
|
{
|
|
|
|
tags = file.GetTag(TagTypes.Id3v1);
|
|
|
|
}
|
2013-08-29 21:00:27 +00:00
|
|
|
|
2022-03-28 21:11:21 +00:00
|
|
|
if (tags != null)
|
|
|
|
{
|
|
|
|
if (audio.SupportsPeople && !audio.LockedFields.Contains(MetadataField.Cast))
|
2013-08-04 00:59:23 +00:00
|
|
|
{
|
2022-03-28 21:11:21 +00:00
|
|
|
var people = new List<PersonInfo>();
|
|
|
|
var albumArtists = tags.AlbumArtists;
|
|
|
|
foreach (var albumArtist in albumArtists)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2022-03-28 21:11:21 +00:00
|
|
|
PeopleHelper.AddPerson(people, new PersonInfo
|
|
|
|
{
|
|
|
|
Name = albumArtist,
|
|
|
|
Type = "AlbumArtist"
|
|
|
|
});
|
|
|
|
}
|
2014-06-23 16:05:19 +00:00
|
|
|
|
2022-03-28 21:11:21 +00:00
|
|
|
var performers = tags.Performers;
|
|
|
|
foreach (var performer in performers)
|
|
|
|
{
|
|
|
|
PeopleHelper.AddPerson(people, new PersonInfo
|
|
|
|
{
|
|
|
|
Name = performer,
|
|
|
|
Type = "Artist"
|
|
|
|
});
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2022-03-28 21:11:21 +00: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 01:33:05 +00:00
|
|
|
|
2022-03-28 21:11:21 +00:00
|
|
|
audio.Name = tags.Title;
|
|
|
|
audio.Album = tags.Album;
|
|
|
|
audio.IndexNumber = Convert.ToInt32(tags.Track);
|
|
|
|
audio.ParentIndexNumber = Convert.ToInt32(tags.Disc);
|
2022-03-29 15:06:30 +00:00
|
|
|
if (tags.Year != 0)
|
2022-03-28 21:11:21 +00:00
|
|
|
{
|
|
|
|
var year = Convert.ToInt32(tags.Year);
|
|
|
|
audio.ProductionYear = year;
|
|
|
|
audio.PremiereDate = new DateTime(year, 01, 01);
|
|
|
|
}
|
2013-04-28 05:44:45 +00:00
|
|
|
|
2022-03-28 21:11:21 +00:00
|
|
|
if (!audio.LockedFields.Contains(MetadataField.Genres))
|
2013-04-28 05:44:45 +00:00
|
|
|
{
|
2022-03-28 21:11:21 +00:00
|
|
|
audio.Genres = tags.Genres.Distinct(StringComparer.OrdinalIgnoreCase).ToArray();
|
2013-04-28 05:44:45 +00:00
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2022-03-28 21:11:21 +00: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 01:33:05 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-06 04:39:16 +00:00
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|