2013-04-07 20:55:05 +00:00
|
|
|
|
using MediaBrowser.Common.IO;
|
|
|
|
|
using MediaBrowser.Common.MediaInfo;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-03-12 22:49:45 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-04-07 20:55:05 +00:00
|
|
|
|
using MediaBrowser.Model.Serialization;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-04-07 20:55:05 +00:00
|
|
|
|
using System.Globalization;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers.MediaInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provides a base class for extracting media information through ffprobe
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T"></typeparam>
|
2013-04-07 20:55:05 +00:00
|
|
|
|
public abstract class BaseFFProbeProvider<T> : BaseFFMpegProvider<T>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
where T : BaseItem
|
|
|
|
|
{
|
2013-04-07 22:09:48 +00:00
|
|
|
|
protected BaseFFProbeProvider(ILogManager logManager, IServerConfigurationManager configurationManager, IMediaEncoder mediaEncoder, IJsonSerializer jsonSerializer)
|
2013-04-07 20:55:05 +00:00
|
|
|
|
: base(logManager, configurationManager, mediaEncoder)
|
2013-03-02 17:59:15 +00:00
|
|
|
|
{
|
2013-04-07 22:09:48 +00:00
|
|
|
|
JsonSerializer = jsonSerializer;
|
2013-03-02 17:59:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-07 22:09:48 +00:00
|
|
|
|
protected readonly IJsonSerializer JsonSerializer;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the priority.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The priority.</value>
|
|
|
|
|
public override MetadataProviderPriority Priority
|
|
|
|
|
{
|
|
|
|
|
// Give this second priority
|
|
|
|
|
// Give metadata xml providers a chance to fill in data first, so that we can skip this whenever possible
|
|
|
|
|
get { return MetadataProviderPriority.Second; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-31 17:39:28 +00:00
|
|
|
|
protected readonly CultureInfo UsCulture = new CultureInfo("en-US");
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fetches metadata and returns true or false indicating if any work that requires persistence was done
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="force">if set to <c>true</c> [force].</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{System.Boolean}.</returns>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
public override async Task<bool> FetchAsync(BaseItem item, bool force, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
var myItem = (T)item;
|
|
|
|
|
|
|
|
|
|
var isoMount = await MountIsoIfNeeded(myItem, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
OnPreFetch(myItem, isoMount);
|
|
|
|
|
|
2013-05-12 15:27:56 +00:00
|
|
|
|
var result = await GetMediaInfo(item, isoMount, cancellationToken).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
|
|
|
|
NormalizeFFProbeResult(result);
|
|
|
|
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
2013-04-06 01:03:38 +00:00
|
|
|
|
Fetch(myItem, cancellationToken, result, isoMount);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-04-27 22:52:41 +00:00
|
|
|
|
var video = myItem as Video;
|
|
|
|
|
|
|
|
|
|
if (video != null)
|
|
|
|
|
{
|
2013-05-25 05:17:32 +00:00
|
|
|
|
await Kernel.Instance.FFMpegManager.PopulateChapterImages(video, cancellationToken, false, false).ConfigureAwait(false);
|
2013-04-27 22:52:41 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
SetLastRefreshed(item, DateTime.UtcNow);
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
if (isoMount != null)
|
|
|
|
|
{
|
|
|
|
|
isoMount.Dispose();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-07 20:55:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the media info.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="isoMount">The iso mount.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{MediaInfoResult}.</returns>
|
|
|
|
|
/// <exception cref="System.ArgumentNullException">inputPath
|
|
|
|
|
/// or
|
|
|
|
|
/// cache</exception>
|
2013-05-12 15:27:56 +00:00
|
|
|
|
private async Task<MediaInfoResult> GetMediaInfo(BaseItem item, IIsoMount isoMount, CancellationToken cancellationToken)
|
2013-04-07 20:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
|
|
|
|
var type = InputType.AudioFile;
|
|
|
|
|
var inputPath = isoMount == null ? new[] { item.Path } : new[] { isoMount.MountedPath };
|
|
|
|
|
|
|
|
|
|
var video = item as Video;
|
|
|
|
|
|
|
|
|
|
if (video != null)
|
|
|
|
|
{
|
|
|
|
|
inputPath = MediaEncoderHelpers.GetInputArgument(video, isoMount, out type);
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-12 15:27:56 +00:00
|
|
|
|
return await MediaEncoder.GetMediaInfo(inputPath, type, cancellationToken).ConfigureAwait(false);
|
2013-04-07 20:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Mounts the iso if needed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>IsoMount.</returns>
|
|
|
|
|
protected virtual Task<IIsoMount> MountIsoIfNeeded(T item, CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
return NullMountTaskResult;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Called when [pre fetch].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="mount">The mount.</param>
|
|
|
|
|
protected virtual void OnPreFetch(T item, IIsoMount mount)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Normalizes the FF probe result.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="result">The result.</param>
|
2013-04-07 20:55:05 +00:00
|
|
|
|
private void NormalizeFFProbeResult(MediaInfoResult result)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (result.format != null && result.format.tags != null)
|
|
|
|
|
{
|
|
|
|
|
result.format.tags = ConvertDictionaryToCaseInSensitive(result.format.tags);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (result.streams != null)
|
|
|
|
|
{
|
|
|
|
|
// Convert all dictionaries to case insensitive
|
|
|
|
|
foreach (var stream in result.streams)
|
|
|
|
|
{
|
|
|
|
|
if (stream.tags != null)
|
|
|
|
|
{
|
|
|
|
|
stream.tags = ConvertDictionaryToCaseInSensitive(stream.tags);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (stream.disposition != null)
|
|
|
|
|
{
|
|
|
|
|
stream.disposition = ConvertDictionaryToCaseInSensitive(stream.disposition);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Subclasses must set item values using this
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <param name="result">The result.</param>
|
|
|
|
|
/// <param name="isoMount">The iso mount.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2013-04-07 20:55:05 +00:00
|
|
|
|
protected abstract void Fetch(T item, CancellationToken cancellationToken, MediaInfoResult result, IIsoMount isoMount);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Converts ffprobe stream info to our MediaStream class
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="streamInfo">The stream info.</param>
|
|
|
|
|
/// <param name="formatInfo">The format info.</param>
|
|
|
|
|
/// <returns>MediaStream.</returns>
|
2013-04-07 20:55:05 +00:00
|
|
|
|
protected MediaStream GetMediaStream(MediaStreamInfo streamInfo, MediaFormatInfo formatInfo)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
var stream = new MediaStream
|
|
|
|
|
{
|
|
|
|
|
Codec = streamInfo.codec_name,
|
|
|
|
|
Language = GetDictionaryValue(streamInfo.tags, "language"),
|
|
|
|
|
Profile = streamInfo.profile,
|
2013-04-03 12:03:37 +00:00
|
|
|
|
Level = streamInfo.level,
|
2013-02-21 01:33:05 +00:00
|
|
|
|
Index = streamInfo.index
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (streamInfo.codec_type.Equals("audio", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
stream.Type = MediaStreamType.Audio;
|
|
|
|
|
|
|
|
|
|
stream.Channels = streamInfo.channels;
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(streamInfo.sample_rate))
|
|
|
|
|
{
|
2013-03-31 17:39:28 +00:00
|
|
|
|
stream.SampleRate = int.Parse(streamInfo.sample_rate, UsCulture);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (streamInfo.codec_type.Equals("subtitle", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
stream.Type = MediaStreamType.Subtitle;
|
|
|
|
|
}
|
2013-04-29 15:06:31 +00:00
|
|
|
|
else if (streamInfo.codec_type.Equals("video", StringComparison.OrdinalIgnoreCase))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
stream.Type = MediaStreamType.Video;
|
|
|
|
|
|
|
|
|
|
stream.Width = streamInfo.width;
|
|
|
|
|
stream.Height = streamInfo.height;
|
2013-04-09 19:38:19 +00:00
|
|
|
|
stream.PixelFormat = streamInfo.pix_fmt;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
stream.AspectRatio = streamInfo.display_aspect_ratio;
|
|
|
|
|
|
|
|
|
|
stream.AverageFrameRate = GetFrameRate(streamInfo.avg_frame_rate);
|
|
|
|
|
stream.RealFrameRate = GetFrameRate(streamInfo.r_frame_rate);
|
|
|
|
|
}
|
2013-04-29 15:06:31 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
// Get stream bitrate
|
|
|
|
|
if (stream.Type != MediaStreamType.Subtitle)
|
|
|
|
|
{
|
|
|
|
|
if (!string.IsNullOrEmpty(streamInfo.bit_rate))
|
|
|
|
|
{
|
2013-03-31 17:39:28 +00:00
|
|
|
|
stream.BitRate = int.Parse(streamInfo.bit_rate, UsCulture);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
else if (formatInfo != null && !string.IsNullOrEmpty(formatInfo.bit_rate))
|
|
|
|
|
{
|
|
|
|
|
// If the stream info doesn't have a bitrate get the value from the media format info
|
2013-03-31 17:39:28 +00:00
|
|
|
|
stream.BitRate = int.Parse(formatInfo.bit_rate, UsCulture);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (streamInfo.disposition != null)
|
|
|
|
|
{
|
|
|
|
|
var isDefault = GetDictionaryValue(streamInfo.disposition, "default");
|
|
|
|
|
var isForced = GetDictionaryValue(streamInfo.disposition, "forced");
|
|
|
|
|
|
|
|
|
|
stream.IsDefault = string.Equals(isDefault, "1", StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
|
|
|
|
|
stream.IsForced = string.Equals(isForced, "1", StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return stream;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a frame rate from a string value in ffprobe output
|
|
|
|
|
/// This could be a number or in the format of 2997/125.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="value">The value.</param>
|
|
|
|
|
/// <returns>System.Nullable{System.Single}.</returns>
|
|
|
|
|
private float? GetFrameRate(string value)
|
|
|
|
|
{
|
|
|
|
|
if (!string.IsNullOrEmpty(value))
|
|
|
|
|
{
|
|
|
|
|
var parts = value.Split('/');
|
|
|
|
|
|
2013-03-12 15:17:43 +00:00
|
|
|
|
float result;
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
if (parts.Length == 2)
|
|
|
|
|
{
|
2013-03-31 17:39:28 +00:00
|
|
|
|
result = float.Parse(parts[0], UsCulture) / float.Parse(parts[1], UsCulture);
|
2013-03-12 16:18:26 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-03-31 17:39:28 +00:00
|
|
|
|
result = float.Parse(parts[0], UsCulture);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
2013-03-12 15:17:43 +00:00
|
|
|
|
|
|
|
|
|
return float.IsNaN(result) ? (float?)null : result;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a string from an FFProbeResult tags dictionary
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="tags">The tags.</param>
|
|
|
|
|
/// <param name="key">The key.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
protected string GetDictionaryValue(Dictionary<string, string> tags, string key)
|
|
|
|
|
{
|
|
|
|
|
if (tags == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string val;
|
|
|
|
|
|
|
|
|
|
tags.TryGetValue(key, out val);
|
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets an int from an FFProbeResult tags dictionary
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="tags">The tags.</param>
|
|
|
|
|
/// <param name="key">The key.</param>
|
|
|
|
|
/// <returns>System.Nullable{System.Int32}.</returns>
|
|
|
|
|
protected int? GetDictionaryNumericValue(Dictionary<string, string> tags, string key)
|
|
|
|
|
{
|
|
|
|
|
var val = GetDictionaryValue(tags, key);
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(val))
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (int.TryParse(val, out i))
|
|
|
|
|
{
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a DateTime from an FFProbeResult tags dictionary
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="tags">The tags.</param>
|
|
|
|
|
/// <param name="key">The key.</param>
|
|
|
|
|
/// <returns>System.Nullable{DateTime}.</returns>
|
|
|
|
|
protected DateTime? GetDictionaryDateTime(Dictionary<string, string> tags, string key)
|
|
|
|
|
{
|
|
|
|
|
var val = GetDictionaryValue(tags, key);
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(val))
|
|
|
|
|
{
|
|
|
|
|
DateTime i;
|
|
|
|
|
|
|
|
|
|
if (DateTime.TryParse(val, out i))
|
|
|
|
|
{
|
|
|
|
|
return i.ToUniversalTime();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Converts a dictionary to case insensitive
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="dict">The dict.</param>
|
|
|
|
|
/// <returns>Dictionary{System.StringSystem.String}.</returns>
|
|
|
|
|
private Dictionary<string, string> ConvertDictionaryToCaseInSensitive(Dictionary<string, string> dict)
|
|
|
|
|
{
|
|
|
|
|
return new Dictionary<string, string>(dict, StringComparer.OrdinalIgnoreCase);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|