jellyfin/MediaBrowser.Providers/MediaInfo/FFProbeAudioInfoProvider.cs

283 lines
10 KiB
C#
Raw Normal View History

using MediaBrowser.Common.Extensions;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Controller.Configuration;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
2014-01-12 00:07:56 +01:00
using MediaBrowser.Controller.MediaInfo;
2013-12-06 04:39:44 +01:00
using MediaBrowser.Controller.Persistence;
2013-12-06 21:07:34 +01:00
using MediaBrowser.Controller.Providers;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Serialization;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
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
{
/// <summary>
/// Extracts audio information using ffprobe
/// </summary>
public class FFProbeAudioInfoProvider : BaseFFProbeProvider<Audio>
{
2013-12-06 04:39:44 +01:00
private readonly IItemRepository _itemRepo;
public FFProbeAudioInfoProvider(ILogManager logManager, IServerConfigurationManager configurationManager, IMediaEncoder mediaEncoder, IJsonSerializer jsonSerializer, IItemRepository itemRepo)
2013-04-08 00:09:48 +02:00
: base(logManager, configurationManager, mediaEncoder, jsonSerializer)
2013-03-02 18:59:15 +01:00
{
2013-12-06 04:39:44 +01:00
_itemRepo = itemRepo;
2013-03-02 18:59:15 +01:00
}
2013-12-06 21:07:34 +01:00
public override async Task<bool> FetchAsync(BaseItem item, bool force, BaseProviderInfo providerInfo, CancellationToken cancellationToken)
2013-06-18 21:16:27 +02:00
{
var myItem = (Audio)item;
OnPreFetch(myItem, null);
var result = await GetMediaInfo(item, null, cancellationToken).ConfigureAwait(false);
cancellationToken.ThrowIfCancellationRequested();
FFProbeHelpers.NormalizeFFProbeResult(result);
2013-06-18 21:16:27 +02:00
cancellationToken.ThrowIfCancellationRequested();
2013-12-06 04:39:44 +01:00
await Fetch(myItem, cancellationToken, result).ConfigureAwait(false);
2013-06-18 21:16:27 +02:00
2013-12-06 21:07:34 +01:00
SetLastRefreshed(item, DateTime.UtcNow, providerInfo);
2013-06-18 21:16:27 +02:00
return true;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Fetches the specified audio.
/// </summary>
/// <param name="audio">The audio.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="data">The data.</param>
/// <returns>Task.</returns>
2014-01-12 07:31:21 +01:00
protected Task Fetch(Audio audio, CancellationToken cancellationToken, InternalMediaInfoResult data)
2013-02-21 02:33:05 +01:00
{
2014-01-12 07:31:21 +01:00
var mediaStreams = MediaEncoderHelpers.GetMediaInfo(data).MediaStreams;
2013-02-21 02:33:05 +01:00
2013-12-06 04:39:44 +01:00
audio.HasEmbeddedImage = mediaStreams.Any(i => i.Type == MediaStreamType.Video);
2014-01-12 00:07:56 +01:00
if (data.streams != null)
{
2014-01-12 00:07:56 +01:00
// Get the first audio stream
var stream = data.streams.FirstOrDefault(s => string.Equals(s.codec_type, "audio", StringComparison.OrdinalIgnoreCase));
2014-01-12 00:07:56 +01:00
if (stream != null)
{
2014-01-12 00:07:56 +01:00
// Get duration from stream properties
var duration = stream.duration;
// If it's not there go into format properties
if (string.IsNullOrEmpty(duration))
{
duration = data.format.duration;
}
// If we got something, parse it
if (!string.IsNullOrEmpty(duration))
{
audio.RunTimeTicks = TimeSpan.FromSeconds(double.Parse(duration, UsCulture)).Ticks;
}
}
}
2013-02-21 02:33:05 +01:00
if (data.format.tags != null)
{
FetchDataFromTags(audio, data.format.tags);
}
2013-12-06 04:39:44 +01:00
return _itemRepo.SaveMediaStreams(audio.Id, mediaStreams, cancellationToken);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Fetches data from the tags dictionary
/// </summary>
/// <param name="audio">The audio.</param>
/// <param name="tags">The tags.</param>
private void FetchDataFromTags(Audio audio, Dictionary<string, string> tags)
{
var title = FFProbeHelpers.GetDictionaryValue(tags, "title");
2013-02-21 02:33:05 +01:00
// Only set Name if title was found in the dictionary
if (!string.IsNullOrEmpty(title))
{
audio.Name = title;
}
2013-08-04 02:59:23 +02:00
if (!audio.LockedFields.Contains(MetadataFields.Cast))
2013-02-21 02:33:05 +01:00
{
2013-08-29 23:00:27 +02:00
audio.People.Clear();
var composer = FFProbeHelpers.GetDictionaryValue(tags, "composer");
2013-02-21 02:33:05 +01:00
2013-08-04 02:59:23 +02:00
if (!string.IsNullOrWhiteSpace(composer))
{
foreach (var person in Split(composer))
2013-02-21 02:33:05 +01:00
{
2013-09-06 00:59:07 +02:00
audio.AddPerson(new PersonInfo { Name = person, Type = PersonType.Composer });
2013-02-21 02:33:05 +01:00
}
}
}
audio.Album = FFProbeHelpers.GetDictionaryValue(tags, "album");
2013-02-21 02:33:05 +01:00
var artist = FFProbeHelpers.GetDictionaryValue(tags, "artist");
if (string.IsNullOrWhiteSpace(artist))
{
audio.Artists.Clear();
}
else
{
audio.Artists = SplitArtists(artist)
.Distinct(StringComparer.OrdinalIgnoreCase)
.ToList();
}
2013-02-21 02:33:05 +01:00
// Several different forms of albumartist
audio.AlbumArtist = FFProbeHelpers.GetDictionaryValue(tags, "albumartist") ?? FFProbeHelpers.GetDictionaryValue(tags, "album artist") ?? FFProbeHelpers.GetDictionaryValue(tags, "album_artist");
2013-02-21 02:33:05 +01:00
// Track number
2013-09-08 18:49:05 +02:00
audio.IndexNumber = GetDictionaryDiscValue(tags, "track");
2013-02-21 02:33:05 +01:00
// Disc number
2013-09-08 18:49:05 +02:00
audio.ParentIndexNumber = GetDictionaryDiscValue(tags, "disc");
2013-02-21 02:33:05 +01:00
audio.ProductionYear = FFProbeHelpers.GetDictionaryNumericValue(tags, "date");
2013-02-21 02:33:05 +01:00
// Several different forms of retaildate
audio.PremiereDate = FFProbeHelpers.GetDictionaryDateTime(tags, "retaildate") ?? FFProbeHelpers.GetDictionaryDateTime(tags, "retail date") ?? FFProbeHelpers.GetDictionaryDateTime(tags, "retail_date");
2013-02-21 02:33:05 +01:00
// If we don't have a ProductionYear try and get it from PremiereDate
if (audio.PremiereDate.HasValue && !audio.ProductionYear.HasValue)
{
2013-04-12 20:22:40 +02:00
audio.ProductionYear = audio.PremiereDate.Value.ToLocalTime().Year;
2013-02-21 02:33:05 +01:00
}
2013-08-04 02:59:23 +02:00
if (!audio.LockedFields.Contains(MetadataFields.Genres))
{
FetchGenres(audio, tags);
}
2013-02-21 02:33:05 +01:00
2013-08-04 02:59:23 +02:00
if (!audio.LockedFields.Contains(MetadataFields.Studios))
{
audio.Studios.Clear();
2013-08-04 02:59:23 +02:00
// There's several values in tags may or may not be present
FetchStudios(audio, tags, "organization");
FetchStudios(audio, tags, "ensemble");
FetchStudios(audio, tags, "publisher");
}
2013-02-21 02:33:05 +01:00
}
private readonly char[] _nameDelimiters = new[] { '/', '|', ';', '\\' };
/// <summary>
/// Splits the specified val.
/// </summary>
/// <param name="val">The val.</param>
/// <returns>System.String[][].</returns>
private IEnumerable<string> Split(string val)
{
// Only use the comma as a delimeter if there are no slashes or pipes.
// We want to be careful not to split names that have commas in them
var delimeter = _nameDelimiters.Any(i => val.IndexOf(i) != -1) ? _nameDelimiters : new[] { ',' };
return val.Split(delimeter, StringSplitOptions.RemoveEmptyEntries)
.Where(i => !string.IsNullOrWhiteSpace(i))
.Select(i => i.Trim());
}
private const string ArtistReplaceValue = " | ";
private IEnumerable<string> SplitArtists(string val)
{
val = val.Replace(" featuring ", ArtistReplaceValue, StringComparison.OrdinalIgnoreCase)
.Replace(" feat. ", ArtistReplaceValue, StringComparison.OrdinalIgnoreCase);
// Only use the comma as a delimeter if there are no slashes or pipes.
// We want to be careful not to split names that have commas in them
var delimeter = _nameDelimiters;
return val.Split(delimeter, StringSplitOptions.RemoveEmptyEntries)
2013-09-06 00:59:07 +02:00
.Where(i => !string.IsNullOrWhiteSpace(i))
.Select(i => i.Trim());
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the studios from the tags collection
/// </summary>
/// <param name="audio">The audio.</param>
/// <param name="tags">The tags.</param>
/// <param name="tagName">Name of the tag.</param>
private void FetchStudios(Audio audio, Dictionary<string, string> tags, string tagName)
{
var val = FFProbeHelpers.GetDictionaryValue(tags, tagName);
2013-02-21 02:33:05 +01:00
if (!string.IsNullOrEmpty(val))
{
2013-06-11 18:10:41 +02:00
// Sometimes the artist name is listed here, account for that
var studios = Split(val).Where(i => !audio.HasArtist(i));
foreach (var studio in studios)
{
2013-09-06 00:59:07 +02:00
audio.AddStudio(studio);
}
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Gets the genres from the tags collection
/// </summary>
/// <param name="audio">The audio.</param>
/// <param name="tags">The tags.</param>
private void FetchGenres(Audio audio, Dictionary<string, string> tags)
{
var val = FFProbeHelpers.GetDictionaryValue(tags, "genre");
2013-02-21 02:33:05 +01:00
if (!string.IsNullOrEmpty(val))
{
audio.Genres.Clear();
foreach (var genre in Split(val))
{
2013-09-06 00:59:07 +02:00
audio.AddGenre(genre);
}
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Gets the disc number, which is sometimes can be in the form of '1', or '1/3'
/// </summary>
/// <param name="tags">The tags.</param>
2013-09-08 18:49:05 +02:00
/// <param name="tagName">Name of the tag.</param>
2013-02-21 02:33:05 +01:00
/// <returns>System.Nullable{System.Int32}.</returns>
2013-09-08 18:49:05 +02:00
private int? GetDictionaryDiscValue(Dictionary<string, string> tags, string tagName)
2013-02-21 02:33:05 +01:00
{
var disc = FFProbeHelpers.GetDictionaryValue(tags, tagName);
2013-02-21 02:33:05 +01:00
if (!string.IsNullOrEmpty(disc))
{
disc = disc.Split('/')[0];
int num;
if (int.TryParse(disc, out num))
{
return num;
}
}
return null;
}
}
}