123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548 |
- using System.Globalization;
- using MediaBrowser.Common.IO;
- using MediaBrowser.Common.MediaInfo;
- using MediaBrowser.Controller;
- using MediaBrowser.Controller.Configuration;
- using MediaBrowser.Controller.Entities;
- using MediaBrowser.Controller.Entities.Movies;
- using MediaBrowser.Controller.Localization;
- using MediaBrowser.Model.Entities;
- using MediaBrowser.Model.Logging;
- using MediaBrowser.Model.MediaInfo;
- using MediaBrowser.Model.Serialization;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Threading;
- using System.Threading.Tasks;
- namespace MediaBrowser.Providers.MediaInfo
- {
- /// <summary>
- /// Extracts video information using ffprobe
- /// </summary>
- public class FFProbeVideoInfoProvider : BaseFFProbeProvider<Video>
- {
- public FFProbeVideoInfoProvider(IIsoManager isoManager, IBlurayExaminer blurayExaminer, IJsonSerializer jsonSerializer, ILogManager logManager, IServerConfigurationManager configurationManager, IMediaEncoder mediaEncoder, ILocalizationManager localization)
- : base(logManager, configurationManager, mediaEncoder, jsonSerializer)
- {
- if (isoManager == null)
- {
- throw new ArgumentNullException("isoManager");
- }
- if (blurayExaminer == null)
- {
- throw new ArgumentNullException("blurayExaminer");
- }
- _blurayExaminer = blurayExaminer;
- _localization = localization;
- _isoManager = isoManager;
- }
- /// <summary>
- /// Gets or sets the bluray examiner.
- /// </summary>
- /// <value>The bluray examiner.</value>
- private readonly IBlurayExaminer _blurayExaminer;
- /// <summary>
- /// The _iso manager
- /// </summary>
- private readonly IIsoManager _isoManager;
- private readonly ILocalizationManager _localization;
- /// <summary>
- /// Returns true or false indicating if the provider should refresh when the contents of it's directory changes
- /// </summary>
- /// <value><c>true</c> if [refresh on file system stamp change]; otherwise, <c>false</c>.</value>
- protected override bool RefreshOnFileSystemStampChange
- {
- get
- {
- // Need this in case external subtitle files change
- return true;
- }
- }
- /// <summary>
- /// Gets the filestamp extensions.
- /// </summary>
- /// <value>The filestamp extensions.</value>
- protected override string[] FilestampExtensions
- {
- get
- {
- return new[] { ".srt" };
- }
- }
- /// <summary>
- /// Supports video files and dvd structures
- /// </summary>
- /// <param name="item">The item.</param>
- /// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
- public override bool Supports(BaseItem item)
- {
- if (item.LocationType != LocationType.FileSystem)
- {
- return false;
- }
- var video = item as Video;
- if (video != null)
- {
- if (video.VideoType == VideoType.Iso)
- {
- return _isoManager.CanMount(item.Path);
- }
- return video.VideoType == VideoType.VideoFile || video.VideoType == VideoType.Dvd || video.VideoType == VideoType.BluRay;
- }
- return false;
- }
- /// <summary>
- /// Called when [pre fetch].
- /// </summary>
- /// <param name="item">The item.</param>
- /// <param name="mount">The mount.</param>
- protected override void OnPreFetch(Video item, IIsoMount mount)
- {
- if (item.VideoType == VideoType.Iso)
- {
- item.IsoType = DetermineIsoType(mount);
- }
- if (item.VideoType == VideoType.Dvd || (item.IsoType.HasValue && item.IsoType == IsoType.Dvd))
- {
- PopulateDvdStreamFiles(item, mount);
- }
- base.OnPreFetch(item, mount);
- }
- public override async Task<bool> FetchAsync(BaseItem item, bool force, CancellationToken cancellationToken)
- {
- var myItem = (Video)item;
- var isoMount = await MountIsoIfNeeded(myItem, cancellationToken).ConfigureAwait(false);
- try
- {
- OnPreFetch(myItem, isoMount);
- var result = await GetMediaInfo(item, isoMount, cancellationToken).ConfigureAwait(false);
- cancellationToken.ThrowIfCancellationRequested();
- NormalizeFFProbeResult(result);
- cancellationToken.ThrowIfCancellationRequested();
- await Fetch(myItem, cancellationToken, result, isoMount).ConfigureAwait(false);
- SetLastRefreshed(item, DateTime.UtcNow);
- }
- finally
- {
- if (isoMount != null)
- {
- isoMount.Dispose();
- }
- }
- return true;
- }
- /// <summary>
- /// Mounts the iso if needed.
- /// </summary>
- /// <param name="item">The item.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>IsoMount.</returns>
- protected override Task<IIsoMount> MountIsoIfNeeded(Video item, CancellationToken cancellationToken)
- {
- if (item.VideoType == VideoType.Iso)
- {
- return _isoManager.Mount(item.Path, cancellationToken);
- }
- return base.MountIsoIfNeeded(item, cancellationToken);
- }
- /// <summary>
- /// Determines the type of the iso.
- /// </summary>
- /// <param name="isoMount">The iso mount.</param>
- /// <returns>System.Nullable{IsoType}.</returns>
- private IsoType? DetermineIsoType(IIsoMount isoMount)
- {
- var folders = Directory.EnumerateDirectories(isoMount.MountedPath).Select(Path.GetFileName).ToList();
- if (folders.Contains("video_ts", StringComparer.OrdinalIgnoreCase))
- {
- return IsoType.Dvd;
- }
- if (folders.Contains("bdmv", StringComparer.OrdinalIgnoreCase))
- {
- return IsoType.BluRay;
- }
- return null;
- }
- /// <summary>
- /// Finds vob files and populates the dvd stream file properties
- /// </summary>
- /// <param name="video">The video.</param>
- /// <param name="isoMount">The iso mount.</param>
- private void PopulateDvdStreamFiles(Video video, IIsoMount isoMount)
- {
- // min size 300 mb
- const long minPlayableSize = 314572800;
- var root = isoMount != null ? isoMount.MountedPath : video.Path;
- // Try to eliminate menus and intros by skipping all files at the front of the list that are less than the minimum size
- // Once we reach a file that is at least the minimum, return all subsequent ones
- var files = Directory.EnumerateFiles(root, "*.vob", SearchOption.AllDirectories).SkipWhile(f => new FileInfo(f).Length < minPlayableSize).ToList();
- // Assuming they're named "vts_05_01", take all files whose second part matches that of the first file
- if (files.Count > 0)
- {
- var parts = Path.GetFileNameWithoutExtension(files[0]).Split('_');
- if (parts.Length == 3)
- {
- var title = parts[1];
- files = files.TakeWhile(f =>
- {
- var fileParts = Path.GetFileNameWithoutExtension(f).Split('_');
- return fileParts.Length == 3 && string.Equals(title, fileParts[1], StringComparison.OrdinalIgnoreCase);
- }).ToList();
- }
- }
- video.PlayableStreamFileNames = files.Select(Path.GetFileName).ToList();
- }
- /// <summary>
- /// Fetches the specified video.
- /// </summary>
- /// <param name="video">The video.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <param name="data">The data.</param>
- /// <param name="isoMount">The iso mount.</param>
- /// <returns>Task.</returns>
- protected async Task Fetch(Video video, CancellationToken cancellationToken, MediaInfoResult data, IIsoMount isoMount)
- {
- if (data.format != null)
- {
- // For dvd's this may not always be accurate, so don't set the runtime if the item already has one
- var needToSetRuntime = video.VideoType != VideoType.Dvd || video.RunTimeTicks == null || video.RunTimeTicks.Value == 0;
- if (needToSetRuntime && !string.IsNullOrEmpty(data.format.duration))
- {
- video.RunTimeTicks = TimeSpan.FromSeconds(double.Parse(data.format.duration, UsCulture)).Ticks;
- }
- }
- if (data.streams != null)
- {
- video.MediaStreams = data.streams.Select(s => GetMediaStream(s, data.format))
- .Where(i => i != null)
- .ToList();
- }
- var chapters = data.Chapters ?? new List<ChapterInfo>();
- if (video.VideoType == VideoType.BluRay || (video.IsoType.HasValue && video.IsoType.Value == IsoType.BluRay))
- {
- var inputPath = isoMount != null ? isoMount.MountedPath : video.Path;
- FetchBdInfo(video, chapters, inputPath, cancellationToken);
- }
- AddExternalSubtitles(video);
- FetchWtvInfo(video, data);
- if (chapters.Count == 0)
- {
- AddDummyChapters(video, chapters);
- }
- await Kernel.Instance.FFMpegManager.PopulateChapterImages(video, chapters, false, true, cancellationToken).ConfigureAwait(false);
- }
- /// <summary>
- /// Fetches the WTV info.
- /// </summary>
- /// <param name="video">The video.</param>
- /// <param name="data">The data.</param>
- private void FetchWtvInfo(Video video, MediaInfoResult data)
- {
- if (data.format == null || data.format.tags == null)
- {
- return;
- }
- var genres = GetDictionaryValue(data.format.tags, "genre");
- if (!string.IsNullOrEmpty(genres))
- {
- video.Genres = genres.Split(new[] { ';', '/' }, StringSplitOptions.RemoveEmptyEntries)
- .Where(i => !string.IsNullOrWhiteSpace(i))
- .Select(i => i.Trim())
- .ToList();
- }
- var overview = GetDictionaryValue(data.format.tags, "WM/SubTitleDescription");
- if (!string.IsNullOrWhiteSpace(overview))
- {
- video.Overview = overview;
- }
- var officialRating = GetDictionaryValue(data.format.tags, "WM/ParentalRating");
- if (!string.IsNullOrWhiteSpace(officialRating))
- {
- video.OfficialRating = officialRating;
- }
- var people = GetDictionaryValue(data.format.tags, "WM/MediaCredits");
- if (!string.IsNullOrEmpty(people))
- {
- video.People = people.Split(new[] { ';', '/' }, StringSplitOptions.RemoveEmptyEntries)
- .Where(i => !string.IsNullOrWhiteSpace(i))
- .Select(i => new PersonInfo { Name = i.Trim(), Type = PersonType.Actor })
- .ToList();
- }
- var year = GetDictionaryValue(data.format.tags, "WM/OriginalReleaseTime");
- if (!string.IsNullOrWhiteSpace(year))
- {
- int val;
- if (int.TryParse(year, NumberStyles.Integer, UsCulture, out val))
- {
- video.ProductionYear = val;
- }
- }
- }
- /// <summary>
- /// Adds the external subtitles.
- /// </summary>
- /// <param name="video">The video.</param>
- private void AddExternalSubtitles(Video video)
- {
- var useParent = (video.VideoType == VideoType.VideoFile || video.VideoType == VideoType.Iso) && !(video is Movie) && !(video is MusicVideo);
- if (useParent && video.Parent == null)
- {
- return;
- }
- var fileSystemChildren = useParent
- ? video.Parent.ResolveArgs.FileSystemChildren
- : video.ResolveArgs.FileSystemChildren;
- var startIndex = video.MediaStreams == null ? 0 : video.MediaStreams.Count;
- var streams = new List<MediaStream>();
- var videoFileNameWithoutExtension = Path.GetFileNameWithoutExtension(video.Path);
- foreach (var file in fileSystemChildren
- .Where(f => !f.Attributes.HasFlag(FileAttributes.Directory) && string.Equals(Path.GetExtension(f.FullName), ".srt", StringComparison.OrdinalIgnoreCase)))
- {
- var fullName = file.FullName;
- var fileNameWithoutExtension = Path.GetFileNameWithoutExtension(fullName);
- // If the subtitle file matches the video file name
- if (string.Equals(videoFileNameWithoutExtension, fileNameWithoutExtension, StringComparison.OrdinalIgnoreCase))
- {
- streams.Add(new MediaStream
- {
- Index = startIndex++,
- Type = MediaStreamType.Subtitle,
- IsExternal = true,
- Path = fullName,
- Codec = "srt"
- });
- }
- else if (fileNameWithoutExtension.StartsWith(videoFileNameWithoutExtension + ".", StringComparison.OrdinalIgnoreCase))
- {
- // Support xbmc naming conventions - 300.spanish.srt
- var language = fileNameWithoutExtension.Split('.').LastOrDefault();
- // Try to translate to three character code
- // Be flexible and check against both the full and three character versions
- var culture = _localization.GetCultures()
- .FirstOrDefault(i => string.Equals(i.DisplayName, language, StringComparison.OrdinalIgnoreCase) || string.Equals(i.Name, language, StringComparison.OrdinalIgnoreCase) || string.Equals(i.ThreeLetterISOLanguageName, language, StringComparison.OrdinalIgnoreCase) || string.Equals(i.TwoLetterISOLanguageName, language, StringComparison.OrdinalIgnoreCase));
- if (culture != null)
- {
- language = culture.ThreeLetterISOLanguageName;
- }
- streams.Add(new MediaStream
- {
- Index = startIndex++,
- Type = MediaStreamType.Subtitle,
- IsExternal = true,
- Path = fullName,
- Codec = "srt",
- Language = language
- });
- }
- }
- if (video.MediaStreams == null)
- {
- video.MediaStreams = new List<MediaStream>();
- }
- video.MediaStreams.AddRange(streams);
- }
- /// <summary>
- /// The dummy chapter duration
- /// </summary>
- private readonly long _dummyChapterDuration = TimeSpan.FromMinutes(5).Ticks;
- /// <summary>
- /// Adds the dummy chapters.
- /// </summary>
- /// <param name="video">The video.</param>
- /// <param name="chapters">The chapters.</param>
- private void AddDummyChapters(Video video, List<ChapterInfo> chapters)
- {
- var runtime = video.RunTimeTicks ?? 0;
- if (runtime < _dummyChapterDuration)
- {
- return;
- }
- long currentChapterTicks = 0;
- var index = 1;
- while (currentChapterTicks < runtime)
- {
- chapters.Add(new ChapterInfo
- {
- Name = "Chapter " + index,
- StartPositionTicks = currentChapterTicks
- });
- index++;
- currentChapterTicks += _dummyChapterDuration;
- }
- }
- /// <summary>
- /// Fetches the bd info.
- /// </summary>
- /// <param name="item">The item.</param>
- /// <param name="chapters">The chapters.</param>
- /// <param name="inputPath">The input path.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- private void FetchBdInfo(BaseItem item, List<ChapterInfo> chapters, string inputPath, CancellationToken cancellationToken)
- {
- var video = (Video)item;
- var result = GetBDInfo(inputPath);
- cancellationToken.ThrowIfCancellationRequested();
- int? currentHeight = null;
- int? currentWidth = null;
- int? currentBitRate = null;
- var videoStream = video.MediaStreams.FirstOrDefault(s => s.Type == MediaStreamType.Video);
- // Grab the values that ffprobe recorded
- if (videoStream != null)
- {
- currentBitRate = videoStream.BitRate;
- currentWidth = videoStream.Width;
- currentHeight = videoStream.Height;
- }
- // Fill video properties from the BDInfo result
- Fetch(video, result, chapters);
- videoStream = video.MediaStreams.FirstOrDefault(s => s.Type == MediaStreamType.Video);
- // Use the ffprobe values if these are empty
- if (videoStream != null)
- {
- videoStream.BitRate = IsEmpty(videoStream.BitRate) ? currentBitRate : videoStream.BitRate;
- videoStream.Width = IsEmpty(videoStream.Width) ? currentWidth : videoStream.Width;
- videoStream.Height = IsEmpty(videoStream.Height) ? currentHeight : videoStream.Height;
- }
- }
- /// <summary>
- /// Determines whether the specified num is empty.
- /// </summary>
- /// <param name="num">The num.</param>
- /// <returns><c>true</c> if the specified num is empty; otherwise, <c>false</c>.</returns>
- private bool IsEmpty(int? num)
- {
- return !num.HasValue || num.Value == 0;
- }
- /// <summary>
- /// Fills video properties from the VideoStream of the largest playlist
- /// </summary>
- /// <param name="video">The video.</param>
- /// <param name="stream">The stream.</param>
- /// <param name="chapters">The chapters.</param>
- private void Fetch(Video video, BlurayDiscInfo stream, List<ChapterInfo> chapters)
- {
- // Check all input for null/empty/zero
- video.MediaStreams = stream.MediaStreams;
- if (stream.RunTimeTicks.HasValue && stream.RunTimeTicks.Value > 0)
- {
- video.RunTimeTicks = stream.RunTimeTicks;
- }
- video.PlayableStreamFileNames = stream.Files.ToList();
- if (stream.Chapters != null)
- {
- chapters.Clear();
- chapters.AddRange(stream.Chapters.Select(c => new ChapterInfo
- {
- StartPositionTicks = TimeSpan.FromSeconds(c).Ticks
- }));
- }
- }
- /// <summary>
- /// Gets information about the longest playlist on a bdrom
- /// </summary>
- /// <param name="path">The path.</param>
- /// <returns>VideoStream.</returns>
- private BlurayDiscInfo GetBDInfo(string path)
- {
- return _blurayExaminer.GetDiscInfo(path);
- }
- }
- }
|