| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.Globalization; |
| | 6 | | using System.IO; |
| | 7 | | using System.Linq; |
| | 8 | | using System.Text; |
| | 9 | | using System.Text.RegularExpressions; |
| | 10 | | using System.Xml; |
| | 11 | | using Jellyfin.Data.Enums; |
| | 12 | | using Jellyfin.Extensions; |
| | 13 | | using MediaBrowser.Controller.Extensions; |
| | 14 | | using MediaBrowser.Controller.Library; |
| | 15 | | using MediaBrowser.Model.Dto; |
| | 16 | | using MediaBrowser.Model.Entities; |
| | 17 | | using MediaBrowser.Model.Globalization; |
| | 18 | | using MediaBrowser.Model.MediaInfo; |
| | 19 | | using Microsoft.Extensions.Logging; |
| | 20 | |
|
| | 21 | | namespace MediaBrowser.MediaEncoding.Probing |
| | 22 | | { |
| | 23 | | /// <summary> |
| | 24 | | /// Class responsible for normalizing FFprobe output. |
| | 25 | | /// </summary> |
| | 26 | | public partial class ProbeResultNormalizer |
| | 27 | | { |
| | 28 | | // When extracting subtitles, the maximum length to consider (to avoid invalid filenames) |
| | 29 | | private const int MaxSubtitleDescriptionExtractionLength = 100; |
| | 30 | |
|
| | 31 | | private const string ArtistReplaceValue = " | "; |
| | 32 | |
|
| 20 | 33 | | private readonly char[] _nameDelimiters = { '/', '|', ';', '\\' }; |
| 20 | 34 | | private readonly string[] _webmVideoCodecs = { "av1", "vp8", "vp9" }; |
| 20 | 35 | | private readonly string[] _webmAudioCodecs = { "opus", "vorbis" }; |
| | 36 | |
|
| | 37 | | private readonly ILogger _logger; |
| | 38 | | private readonly ILocalizationManager _localization; |
| | 39 | |
|
| | 40 | | private string[] _splitWhiteList; |
| | 41 | |
|
| | 42 | | /// <summary> |
| | 43 | | /// Initializes a new instance of the <see cref="ProbeResultNormalizer"/> class. |
| | 44 | | /// </summary> |
| | 45 | | /// <param name="logger">The <see cref="ILogger{ProbeResultNormalizer}"/> for use with the <see cref="ProbeResul |
| | 46 | | /// <param name="localization">The <see cref="ILocalizationManager"/> for use with the <see cref="ProbeResultNor |
| | 47 | | public ProbeResultNormalizer(ILogger logger, ILocalizationManager localization) |
| | 48 | | { |
| 20 | 49 | | _logger = logger; |
| 20 | 50 | | _localization = localization; |
| 20 | 51 | | } |
| | 52 | |
|
| 5 | 53 | | private IReadOnlyList<string> SplitWhitelist => _splitWhiteList ??= new string[] |
| 5 | 54 | | { |
| 5 | 55 | | "AC/DC", |
| 5 | 56 | | "A/T/O/S", |
| 5 | 57 | | "As/Hi Soundworks", |
| 5 | 58 | | "Au/Ra", |
| 5 | 59 | | "Bremer/McCoy", |
| 5 | 60 | | "b/bqスタヂオ", |
| 5 | 61 | | "DOV/S", |
| 5 | 62 | | "DJ'TEKINA//SOMETHING", |
| 5 | 63 | | "IX/ON", |
| 5 | 64 | | "J-CORE SLi//CER", |
| 5 | 65 | | "M(a/u)SH", |
| 5 | 66 | | "Kaoru/Brilliance", |
| 5 | 67 | | "signum/ii", |
| 5 | 68 | | "Richiter(LORB/DUGEM DI BARAT)", |
| 5 | 69 | | "이달의 소녀 1/3", |
| 5 | 70 | | "R!N / Gemie", |
| 5 | 71 | | "LOONA 1/3", |
| 5 | 72 | | "LOONA / yyxy", |
| 5 | 73 | | "LOONA / ODD EYE CIRCLE", |
| 5 | 74 | | "K/DA", |
| 5 | 75 | | "22/7", |
| 5 | 76 | | "諭吉佳作/men", |
| 5 | 77 | | "//dARTH nULL", |
| 5 | 78 | | "Phantom/Ghost", |
| 5 | 79 | | "She/Her/Hers", |
| 5 | 80 | | "5/8erl in Ehr'n", |
| 5 | 81 | | "Smith/Kotzen", |
| 5 | 82 | | "We;Na", |
| 5 | 83 | | "LSR/CITY", |
| 5 | 84 | | }; |
| | 85 | |
|
| | 86 | | /// <summary> |
| | 87 | | /// Transforms a FFprobe response into its <see cref="MediaInfo"/> equivalent. |
| | 88 | | /// </summary> |
| | 89 | | /// <param name="data">The <see cref="InternalMediaInfoResult"/>.</param> |
| | 90 | | /// <param name="videoType">The <see cref="VideoType"/>.</param> |
| | 91 | | /// <param name="isAudio">A boolean indicating whether the media is audio.</param> |
| | 92 | | /// <param name="path">Path to media file.</param> |
| | 93 | | /// <param name="protocol">Path media protocol.</param> |
| | 94 | | /// <returns>The <see cref="MediaInfo"/>.</returns> |
| | 95 | | public MediaInfo GetMediaInfo(InternalMediaInfoResult data, VideoType? videoType, bool isAudio, string path, Med |
| | 96 | | { |
| 10 | 97 | | var info = new MediaInfo |
| 10 | 98 | | { |
| 10 | 99 | | Path = path, |
| 10 | 100 | | Protocol = protocol, |
| 10 | 101 | | VideoType = videoType |
| 10 | 102 | | }; |
| | 103 | |
|
| 10 | 104 | | FFProbeHelpers.NormalizeFFProbeResult(data); |
| 10 | 105 | | SetSize(data, info); |
| | 106 | |
|
| 10 | 107 | | var internalStreams = data.Streams ?? Array.Empty<MediaStreamInfo>(); |
| | 108 | |
|
| 10 | 109 | | info.MediaStreams = internalStreams.Select(s => GetMediaStream(isAudio, s, data.Format)) |
| 10 | 110 | | .Where(i => i is not null) |
| 10 | 111 | | // Drop subtitle streams if we don't know the codec because it will just cause failures if we don't know |
| 10 | 112 | | .Where(i => i.Type != MediaStreamType.Subtitle || !string.IsNullOrWhiteSpace(i.Codec)) |
| 10 | 113 | | .ToList(); |
| | 114 | |
|
| 10 | 115 | | info.MediaAttachments = internalStreams.Select(GetMediaAttachment) |
| 10 | 116 | | .Where(i => i is not null) |
| 10 | 117 | | .ToList(); |
| | 118 | |
|
| 10 | 119 | | if (data.Format is not null) |
| | 120 | | { |
| 9 | 121 | | info.Container = NormalizeFormat(data.Format.FormatName, info.MediaStreams); |
| | 122 | |
|
| 9 | 123 | | if (int.TryParse(data.Format.BitRate, CultureInfo.InvariantCulture, out var value)) |
| | 124 | | { |
| 9 | 125 | | info.Bitrate = value; |
| | 126 | | } |
| | 127 | | } |
| | 128 | |
|
| 10 | 129 | | var tags = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); |
| 10 | 130 | | var tagStreamType = isAudio ? CodecType.Audio : CodecType.Video; |
| | 131 | |
|
| 10 | 132 | | var tagStream = data.Streams?.FirstOrDefault(i => i.CodecType == tagStreamType); |
| | 133 | |
|
| 10 | 134 | | if (tagStream?.Tags is not null) |
| | 135 | | { |
| 48 | 136 | | foreach (var (key, value) in tagStream.Tags) |
| | 137 | | { |
| 17 | 138 | | tags[key] = value; |
| | 139 | | } |
| | 140 | | } |
| | 141 | |
|
| 10 | 142 | | if (data.Format?.Tags is not null) |
| | 143 | | { |
| 246 | 144 | | foreach (var (key, value) in data.Format.Tags) |
| | 145 | | { |
| 116 | 146 | | tags[key] = value; |
| | 147 | | } |
| | 148 | | } |
| | 149 | |
|
| 10 | 150 | | FetchGenres(info, tags); |
| | 151 | |
|
| 10 | 152 | | info.Name = tags.GetFirstNotNullNorWhiteSpaceValue("title", "title-eng"); |
| 10 | 153 | | info.ForcedSortName = tags.GetFirstNotNullNorWhiteSpaceValue("sort_name", "title-sort", "titlesort"); |
| 10 | 154 | | info.Overview = tags.GetFirstNotNullNorWhiteSpaceValue("synopsis", "description", "desc"); |
| | 155 | |
|
| 10 | 156 | | info.IndexNumber = FFProbeHelpers.GetDictionaryNumericValue(tags, "episode_sort"); |
| 10 | 157 | | info.ParentIndexNumber = FFProbeHelpers.GetDictionaryNumericValue(tags, "season_number"); |
| 10 | 158 | | info.ShowName = tags.GetValueOrDefault("show_name"); |
| 10 | 159 | | info.ProductionYear = FFProbeHelpers.GetDictionaryNumericValue(tags, "date"); |
| | 160 | |
|
| | 161 | | // Several different forms of retail/premiere date |
| 10 | 162 | | info.PremiereDate = |
| 10 | 163 | | FFProbeHelpers.GetDictionaryDateTime(tags, "originaldate") ?? |
| 10 | 164 | | FFProbeHelpers.GetDictionaryDateTime(tags, "retaildate") ?? |
| 10 | 165 | | FFProbeHelpers.GetDictionaryDateTime(tags, "retail date") ?? |
| 10 | 166 | | FFProbeHelpers.GetDictionaryDateTime(tags, "retail_date") ?? |
| 10 | 167 | | FFProbeHelpers.GetDictionaryDateTime(tags, "date_released") ?? |
| 10 | 168 | | FFProbeHelpers.GetDictionaryDateTime(tags, "date") ?? |
| 10 | 169 | | FFProbeHelpers.GetDictionaryDateTime(tags, "creation_time"); |
| | 170 | |
|
| | 171 | | // Set common metadata for music (audio) and music videos (video) |
| 10 | 172 | | info.Album = tags.GetValueOrDefault("album"); |
| | 173 | |
|
| 10 | 174 | | if (tags.TryGetValue("artists", out var artists) && !string.IsNullOrWhiteSpace(artists)) |
| | 175 | | { |
| 2 | 176 | | info.Artists = SplitDistinctArtists(artists, new[] { '/', ';' }, false).ToArray(); |
| | 177 | | } |
| | 178 | | else |
| | 179 | | { |
| 8 | 180 | | var artist = tags.GetFirstNotNullNorWhiteSpaceValue("artist"); |
| 8 | 181 | | info.Artists = artist is null |
| 8 | 182 | | ? Array.Empty<string>() |
| 8 | 183 | | : SplitDistinctArtists(artist, _nameDelimiters, true).ToArray(); |
| | 184 | | } |
| | 185 | |
|
| | 186 | | // Guess ProductionYear from PremiereDate if missing |
| 10 | 187 | | if (!info.ProductionYear.HasValue && info.PremiereDate.HasValue) |
| | 188 | | { |
| 5 | 189 | | info.ProductionYear = info.PremiereDate.Value.Year; |
| | 190 | | } |
| | 191 | |
|
| | 192 | | // Set mediaType-specific metadata |
| 10 | 193 | | if (isAudio) |
| | 194 | | { |
| 2 | 195 | | SetAudioRuntimeTicks(data, info); |
| | 196 | |
|
| | 197 | | // tags are normally located under data.format, but we've seen some cases with ogg where they're part of |
| | 198 | | // so let's create a combined list of both |
| | 199 | |
|
| 2 | 200 | | SetAudioInfoFromTags(info, tags); |
| | 201 | | } |
| | 202 | | else |
| | 203 | | { |
| 8 | 204 | | FetchStudios(info, tags, "copyright"); |
| | 205 | |
|
| 8 | 206 | | var iTunExtc = tags.GetFirstNotNullNorWhiteSpaceValue("iTunEXTC"); |
| 8 | 207 | | if (iTunExtc is not null) |
| | 208 | | { |
| 0 | 209 | | var parts = iTunExtc.Split('|', StringSplitOptions.RemoveEmptyEntries); |
| | 210 | | // Example |
| | 211 | | // mpaa|G|100|For crude humor |
| 0 | 212 | | if (parts.Length > 1) |
| | 213 | | { |
| 0 | 214 | | info.OfficialRating = parts[1]; |
| | 215 | |
|
| 0 | 216 | | if (parts.Length > 3) |
| | 217 | | { |
| 0 | 218 | | info.OfficialRatingDescription = parts[3]; |
| | 219 | | } |
| | 220 | | } |
| | 221 | | } |
| | 222 | |
|
| 8 | 223 | | var iTunXml = tags.GetFirstNotNullNorWhiteSpaceValue("iTunMOVI"); |
| 8 | 224 | | if (iTunXml is not null) |
| | 225 | | { |
| 1 | 226 | | FetchFromItunesInfo(iTunXml, info); |
| | 227 | | } |
| | 228 | |
|
| 8 | 229 | | if (data.Format is not null && !string.IsNullOrEmpty(data.Format.Duration)) |
| | 230 | | { |
| 7 | 231 | | info.RunTimeTicks = TimeSpan.FromSeconds(double.Parse(data.Format.Duration, CultureInfo.InvariantCul |
| | 232 | | } |
| | 233 | |
|
| 8 | 234 | | FetchWtvInfo(info, data); |
| | 235 | |
|
| 8 | 236 | | if (data.Chapters is not null) |
| | 237 | | { |
| 2 | 238 | | info.Chapters = data.Chapters.Select(GetChapterInfo).ToArray(); |
| | 239 | | } |
| | 240 | |
|
| 8 | 241 | | ExtractTimestamp(info); |
| | 242 | |
|
| 8 | 243 | | if (tags.TryGetValue("stereo_mode", out var stereoMode) && string.Equals(stereoMode, "left_right", Strin |
| | 244 | | { |
| 0 | 245 | | info.Video3DFormat = Video3DFormat.FullSideBySide; |
| | 246 | | } |
| | 247 | |
|
| 54 | 248 | | foreach (var mediaStream in info.MediaStreams) |
| | 249 | | { |
| 19 | 250 | | if (mediaStream.Type == MediaStreamType.Audio && !mediaStream.BitRate.HasValue) |
| | 251 | | { |
| 3 | 252 | | mediaStream.BitRate = GetEstimatedAudioBitrate(mediaStream.Codec, mediaStream.Channels); |
| | 253 | | } |
| | 254 | | } |
| | 255 | |
|
| 8 | 256 | | var videoStreamsBitrate = info.MediaStreams.Where(i => i.Type == MediaStreamType.Video).Select(i => i.Bi |
| | 257 | | // If ffprobe reported the container bitrate as being the same as the video stream bitrate, then it's wr |
| 8 | 258 | | if (videoStreamsBitrate == (info.Bitrate ?? 0)) |
| | 259 | | { |
| 4 | 260 | | info.InferTotalBitrate(true); |
| | 261 | | } |
| | 262 | | } |
| | 263 | |
|
| 10 | 264 | | return info; |
| | 265 | | } |
| | 266 | |
|
| | 267 | | private string NormalizeFormat(string format, IReadOnlyList<MediaStream> mediaStreams) |
| | 268 | | { |
| 9 | 269 | | if (string.IsNullOrWhiteSpace(format)) |
| | 270 | | { |
| 0 | 271 | | return null; |
| | 272 | | } |
| | 273 | |
|
| | 274 | | // Input can be a list of multiple, comma-delimited formats - each of them needs to be checked |
| 9 | 275 | | var splitFormat = format.Split(','); |
| 72 | 276 | | for (var i = 0; i < splitFormat.Length; i++) |
| | 277 | | { |
| | 278 | | // Handle MPEG-1 container |
| 27 | 279 | | if (string.Equals(splitFormat[i], "mpegvideo", StringComparison.OrdinalIgnoreCase)) |
| | 280 | | { |
| 0 | 281 | | splitFormat[i] = "mpeg"; |
| | 282 | | } |
| | 283 | |
|
| | 284 | | // Handle MPEG-TS container |
| 27 | 285 | | else if (string.Equals(splitFormat[i], "mpegts", StringComparison.OrdinalIgnoreCase)) |
| | 286 | | { |
| 1 | 287 | | splitFormat[i] = "ts"; |
| | 288 | | } |
| | 289 | |
|
| | 290 | | // Handle matroska container |
| 26 | 291 | | else if (string.Equals(splitFormat[i], "matroska", StringComparison.OrdinalIgnoreCase)) |
| | 292 | | { |
| 3 | 293 | | splitFormat[i] = "mkv"; |
| | 294 | | } |
| | 295 | |
|
| | 296 | | // Handle WebM |
| 23 | 297 | | else if (string.Equals(splitFormat[i], "webm", StringComparison.OrdinalIgnoreCase)) |
| | 298 | | { |
| | 299 | | // Limit WebM to supported codecs |
| 3 | 300 | | if (mediaStreams.Any(stream => (stream.Type == MediaStreamType.Video && !_webmVideoCodecs.Contains(s |
| 3 | 301 | | || (stream.Type == MediaStreamType.Audio && !_webmAudioCodecs.Contains(stream.Codec, StringCompa |
| | 302 | | { |
| 2 | 303 | | splitFormat[i] = string.Empty; |
| | 304 | | } |
| | 305 | | } |
| | 306 | | } |
| | 307 | |
|
| 9 | 308 | | return string.Join(',', splitFormat.Where(s => !string.IsNullOrEmpty(s))); |
| | 309 | | } |
| | 310 | |
|
| | 311 | | private int? GetEstimatedAudioBitrate(string codec, int? channels) |
| | 312 | | { |
| 3 | 313 | | if (!channels.HasValue) |
| | 314 | | { |
| 0 | 315 | | return null; |
| | 316 | | } |
| | 317 | |
|
| 3 | 318 | | var channelsValue = channels.Value; |
| | 319 | |
|
| 3 | 320 | | if (string.Equals(codec, "aac", StringComparison.OrdinalIgnoreCase) |
| 3 | 321 | | || string.Equals(codec, "mp3", StringComparison.OrdinalIgnoreCase)) |
| | 322 | | { |
| | 323 | | switch (channelsValue) |
| | 324 | | { |
| | 325 | | case <= 2: |
| 1 | 326 | | return 192000; |
| | 327 | | case >= 5: |
| 0 | 328 | | return 320000; |
| | 329 | | } |
| | 330 | | } |
| | 331 | |
|
| 2 | 332 | | if (string.Equals(codec, "ac3", StringComparison.OrdinalIgnoreCase) |
| 2 | 333 | | || string.Equals(codec, "eac3", StringComparison.OrdinalIgnoreCase)) |
| | 334 | | { |
| | 335 | | switch (channelsValue) |
| | 336 | | { |
| | 337 | | case <= 2: |
| 0 | 338 | | return 192000; |
| | 339 | | case >= 5: |
| 0 | 340 | | return 640000; |
| | 341 | | } |
| | 342 | | } |
| | 343 | |
|
| 2 | 344 | | if (string.Equals(codec, "flac", StringComparison.OrdinalIgnoreCase) |
| 2 | 345 | | || string.Equals(codec, "alac", StringComparison.OrdinalIgnoreCase)) |
| | 346 | | { |
| | 347 | | switch (channelsValue) |
| | 348 | | { |
| | 349 | | case <= 2: |
| 0 | 350 | | return 960000; |
| | 351 | | case >= 5: |
| 0 | 352 | | return 2880000; |
| | 353 | | } |
| | 354 | | } |
| | 355 | |
|
| 2 | 356 | | return null; |
| | 357 | | } |
| | 358 | |
|
| | 359 | | private void FetchFromItunesInfo(string xml, MediaInfo info) |
| | 360 | | { |
| | 361 | | // Make things simpler and strip out the dtd |
| 1 | 362 | | var plistIndex = xml.IndexOf("<plist", StringComparison.OrdinalIgnoreCase); |
| | 363 | |
|
| 1 | 364 | | if (plistIndex != -1) |
| | 365 | | { |
| 1 | 366 | | xml = xml.Substring(plistIndex); |
| | 367 | | } |
| | 368 | |
|
| 1 | 369 | | xml = "<?xml version=\"1.0\"?>" + xml; |
| | 370 | |
|
| | 371 | | // <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http |
| 1 | 372 | | using (var stream = new MemoryStream(Encoding.UTF8.GetBytes(xml))) |
| 1 | 373 | | using (var streamReader = new StreamReader(stream)) |
| | 374 | | { |
| | 375 | | try |
| | 376 | | { |
| 1 | 377 | | using (var reader = XmlReader.Create(streamReader)) |
| | 378 | | { |
| 1 | 379 | | reader.MoveToContent(); |
| 1 | 380 | | reader.Read(); |
| | 381 | |
|
| | 382 | | // Loop through each element |
| 4 | 383 | | while (!reader.EOF && reader.ReadState == ReadState.Interactive) |
| | 384 | | { |
| 3 | 385 | | if (reader.NodeType == XmlNodeType.Element) |
| | 386 | | { |
| 1 | 387 | | switch (reader.Name) |
| | 388 | | { |
| | 389 | | case "dict": |
| 1 | 390 | | if (reader.IsEmptyElement) |
| | 391 | | { |
| 0 | 392 | | reader.Read(); |
| 0 | 393 | | continue; |
| | 394 | | } |
| | 395 | |
|
| 1 | 396 | | using (var subtree = reader.ReadSubtree()) |
| | 397 | | { |
| 1 | 398 | | ReadFromDictNode(subtree, info); |
| 1 | 399 | | } |
| | 400 | |
|
| | 401 | | break; |
| | 402 | | default: |
| 0 | 403 | | reader.Skip(); |
| 0 | 404 | | break; |
| | 405 | | } |
| | 406 | | } |
| | 407 | | else |
| | 408 | | { |
| 2 | 409 | | reader.Read(); |
| | 410 | | } |
| | 411 | | } |
| 1 | 412 | | } |
| 1 | 413 | | } |
| 0 | 414 | | catch (XmlException) |
| | 415 | | { |
| | 416 | | // I've seen probe examples where the iTunMOVI value is just "<" |
| | 417 | | // So we should not allow this to fail the entire probing operation |
| 0 | 418 | | } |
| | 419 | | } |
| 1 | 420 | | } |
| | 421 | |
|
| | 422 | | private void ReadFromDictNode(XmlReader reader, MediaInfo info) |
| | 423 | | { |
| 1 | 424 | | string currentKey = null; |
| 1 | 425 | | var pairs = new List<NameValuePair>(); |
| | 426 | |
|
| 1 | 427 | | reader.MoveToContent(); |
| 1 | 428 | | reader.Read(); |
| | 429 | |
|
| | 430 | | // Loop through each element |
| 19 | 431 | | while (!reader.EOF && reader.ReadState == ReadState.Interactive) |
| | 432 | | { |
| 18 | 433 | | if (reader.NodeType == XmlNodeType.Element) |
| | 434 | | { |
| 12 | 435 | | switch (reader.Name) |
| | 436 | | { |
| | 437 | | case "key": |
| 6 | 438 | | if (!string.IsNullOrWhiteSpace(currentKey)) |
| | 439 | | { |
| 5 | 440 | | ProcessPairs(currentKey, pairs, info); |
| | 441 | | } |
| | 442 | |
|
| 6 | 443 | | currentKey = reader.ReadElementContentAsString(); |
| 6 | 444 | | pairs = new List<NameValuePair>(); |
| 6 | 445 | | break; |
| | 446 | | case "string": |
| 1 | 447 | | var value = reader.ReadElementContentAsString(); |
| 1 | 448 | | if (!string.IsNullOrWhiteSpace(value)) |
| | 449 | | { |
| 1 | 450 | | pairs.Add(new NameValuePair |
| 1 | 451 | | { |
| 1 | 452 | | Name = value, |
| 1 | 453 | | Value = value |
| 1 | 454 | | }); |
| | 455 | | } |
| | 456 | |
|
| 1 | 457 | | break; |
| | 458 | | case "array": |
| 5 | 459 | | if (reader.IsEmptyElement) |
| | 460 | | { |
| 0 | 461 | | reader.Read(); |
| 0 | 462 | | continue; |
| | 463 | | } |
| | 464 | |
|
| 5 | 465 | | using (var subtree = reader.ReadSubtree()) |
| | 466 | | { |
| 5 | 467 | | if (!string.IsNullOrWhiteSpace(currentKey)) |
| | 468 | | { |
| 5 | 469 | | pairs.AddRange(ReadValueArray(subtree)); |
| | 470 | | } |
| 5 | 471 | | } |
| | 472 | |
|
| | 473 | | break; |
| | 474 | | default: |
| 0 | 475 | | reader.Skip(); |
| 0 | 476 | | break; |
| | 477 | | } |
| | 478 | | } |
| | 479 | | else |
| | 480 | | { |
| 6 | 481 | | reader.Read(); |
| | 482 | | } |
| | 483 | | } |
| 1 | 484 | | } |
| | 485 | |
|
| | 486 | | private List<NameValuePair> ReadValueArray(XmlReader reader) |
| | 487 | | { |
| 5 | 488 | | var pairs = new List<NameValuePair>(); |
| | 489 | |
|
| 5 | 490 | | reader.MoveToContent(); |
| 5 | 491 | | reader.Read(); |
| | 492 | |
|
| | 493 | | // Loop through each element |
| 20 | 494 | | while (!reader.EOF && reader.ReadState == ReadState.Interactive) |
| | 495 | | { |
| 15 | 496 | | if (reader.NodeType == XmlNodeType.Element) |
| | 497 | | { |
| 5 | 498 | | switch (reader.Name) |
| | 499 | | { |
| | 500 | | case "dict": |
| | 501 | |
|
| 5 | 502 | | if (reader.IsEmptyElement) |
| | 503 | | { |
| 0 | 504 | | reader.Read(); |
| 0 | 505 | | continue; |
| | 506 | | } |
| | 507 | |
|
| 5 | 508 | | using (var subtree = reader.ReadSubtree()) |
| | 509 | | { |
| 5 | 510 | | var dict = GetNameValuePair(subtree); |
| 5 | 511 | | if (dict is not null) |
| | 512 | | { |
| 1 | 513 | | pairs.Add(dict); |
| | 514 | | } |
| 5 | 515 | | } |
| | 516 | |
|
| | 517 | | break; |
| | 518 | | default: |
| 0 | 519 | | reader.Skip(); |
| 0 | 520 | | break; |
| | 521 | | } |
| | 522 | | } |
| | 523 | | else |
| | 524 | | { |
| 10 | 525 | | reader.Read(); |
| | 526 | | } |
| | 527 | | } |
| | 528 | |
|
| 5 | 529 | | return pairs; |
| | 530 | | } |
| | 531 | |
|
| | 532 | | private void ProcessPairs(string key, List<NameValuePair> pairs, MediaInfo info) |
| | 533 | | { |
| 5 | 534 | | List<BaseItemPerson> peoples = new List<BaseItemPerson>(); |
| 5 | 535 | | var distinctPairs = pairs.Select(p => p.Value) |
| 5 | 536 | | .Where(i => !string.IsNullOrWhiteSpace(i)) |
| 5 | 537 | | .Trimmed() |
| 5 | 538 | | .Distinct(StringComparer.OrdinalIgnoreCase); |
| | 539 | |
|
| 5 | 540 | | if (string.Equals(key, "studio", StringComparison.OrdinalIgnoreCase)) |
| | 541 | | { |
| 1 | 542 | | info.Studios = distinctPairs.ToArray(); |
| | 543 | | } |
| 4 | 544 | | else if (string.Equals(key, "screenwriters", StringComparison.OrdinalIgnoreCase)) |
| | 545 | | { |
| 0 | 546 | | foreach (var pair in distinctPairs) |
| | 547 | | { |
| 0 | 548 | | peoples.Add(new BaseItemPerson |
| 0 | 549 | | { |
| 0 | 550 | | Name = pair, |
| 0 | 551 | | Type = PersonKind.Writer |
| 0 | 552 | | }); |
| | 553 | | } |
| | 554 | | } |
| 4 | 555 | | else if (string.Equals(key, "producers", StringComparison.OrdinalIgnoreCase)) |
| | 556 | | { |
| 2 | 557 | | foreach (var pair in distinctPairs) |
| | 558 | | { |
| 0 | 559 | | peoples.Add(new BaseItemPerson |
| 0 | 560 | | { |
| 0 | 561 | | Name = pair, |
| 0 | 562 | | Type = PersonKind.Producer |
| 0 | 563 | | }); |
| | 564 | | } |
| | 565 | | } |
| 3 | 566 | | else if (string.Equals(key, "directors", StringComparison.OrdinalIgnoreCase)) |
| | 567 | | { |
| 2 | 568 | | foreach (var pair in distinctPairs) |
| | 569 | | { |
| 0 | 570 | | peoples.Add(new BaseItemPerson |
| 0 | 571 | | { |
| 0 | 572 | | Name = pair, |
| 0 | 573 | | Type = PersonKind.Director |
| 0 | 574 | | }); |
| | 575 | | } |
| | 576 | | } |
| | 577 | |
|
| 5 | 578 | | info.People = peoples.ToArray(); |
| 5 | 579 | | } |
| | 580 | |
|
| | 581 | | private NameValuePair GetNameValuePair(XmlReader reader) |
| | 582 | | { |
| 5 | 583 | | string name = null; |
| 5 | 584 | | string value = null; |
| | 585 | |
|
| 5 | 586 | | reader.MoveToContent(); |
| 5 | 587 | | reader.Read(); |
| | 588 | |
|
| | 589 | | // Loop through each element |
| 20 | 590 | | while (!reader.EOF && reader.ReadState == ReadState.Interactive) |
| | 591 | | { |
| 15 | 592 | | if (reader.NodeType == XmlNodeType.Element) |
| | 593 | | { |
| 10 | 594 | | switch (reader.Name) |
| | 595 | | { |
| | 596 | | case "key": |
| 5 | 597 | | name = reader.ReadNormalizedString(); |
| 5 | 598 | | break; |
| | 599 | | case "string": |
| 5 | 600 | | value = reader.ReadNormalizedString(); |
| 5 | 601 | | break; |
| | 602 | | default: |
| 0 | 603 | | reader.Skip(); |
| 0 | 604 | | break; |
| | 605 | | } |
| | 606 | | } |
| | 607 | | else |
| | 608 | | { |
| 5 | 609 | | reader.Read(); |
| | 610 | | } |
| | 611 | | } |
| | 612 | |
|
| 5 | 613 | | if (string.IsNullOrEmpty(name) |
| 5 | 614 | | || string.IsNullOrEmpty(value)) |
| | 615 | | { |
| 4 | 616 | | return null; |
| | 617 | | } |
| | 618 | |
|
| 1 | 619 | | return new NameValuePair |
| 1 | 620 | | { |
| 1 | 621 | | Name = name, |
| 1 | 622 | | Value = value |
| 1 | 623 | | }; |
| | 624 | | } |
| | 625 | |
|
| | 626 | | private string NormalizeSubtitleCodec(string codec) |
| | 627 | | { |
| 3 | 628 | | if (string.Equals(codec, "dvb_subtitle", StringComparison.OrdinalIgnoreCase)) |
| | 629 | | { |
| 0 | 630 | | codec = "DVBSUB"; |
| | 631 | | } |
| 3 | 632 | | else if (string.Equals(codec, "dvb_teletext", StringComparison.OrdinalIgnoreCase)) |
| | 633 | | { |
| 0 | 634 | | codec = "DVBTXT"; |
| | 635 | | } |
| 3 | 636 | | else if (string.Equals(codec, "dvd_subtitle", StringComparison.OrdinalIgnoreCase)) |
| | 637 | | { |
| 1 | 638 | | codec = "DVDSUB"; // .sub+.idx |
| | 639 | | } |
| 2 | 640 | | else if (string.Equals(codec, "hdmv_pgs_subtitle", StringComparison.OrdinalIgnoreCase)) |
| | 641 | | { |
| 0 | 642 | | codec = "PGSSUB"; // .sup |
| | 643 | | } |
| | 644 | |
|
| 3 | 645 | | return codec; |
| | 646 | | } |
| | 647 | |
|
| | 648 | | /// <summary> |
| | 649 | | /// Converts ffprobe stream info to our MediaAttachment class. |
| | 650 | | /// </summary> |
| | 651 | | /// <param name="streamInfo">The stream info.</param> |
| | 652 | | /// <returns>MediaAttachments.</returns> |
| | 653 | | private MediaAttachment GetMediaAttachment(MediaStreamInfo streamInfo) |
| | 654 | | { |
| 23 | 655 | | if (streamInfo.CodecType != CodecType.Attachment |
| 23 | 656 | | && streamInfo.Disposition?.GetValueOrDefault("attached_pic") != 1) |
| | 657 | | { |
| 21 | 658 | | return null; |
| | 659 | | } |
| | 660 | |
|
| 2 | 661 | | var attachment = new MediaAttachment |
| 2 | 662 | | { |
| 2 | 663 | | Codec = streamInfo.CodecName, |
| 2 | 664 | | Index = streamInfo.Index |
| 2 | 665 | | }; |
| | 666 | |
|
| 2 | 667 | | if (!string.IsNullOrWhiteSpace(streamInfo.CodecTagString)) |
| | 668 | | { |
| 2 | 669 | | attachment.CodecTag = streamInfo.CodecTagString; |
| | 670 | | } |
| | 671 | |
|
| 2 | 672 | | if (streamInfo.Tags is not null) |
| | 673 | | { |
| 2 | 674 | | attachment.FileName = GetDictionaryValue(streamInfo.Tags, "filename"); |
| 2 | 675 | | attachment.MimeType = GetDictionaryValue(streamInfo.Tags, "mimetype"); |
| 2 | 676 | | attachment.Comment = GetDictionaryValue(streamInfo.Tags, "comment"); |
| | 677 | | } |
| | 678 | |
|
| 2 | 679 | | return attachment; |
| | 680 | | } |
| | 681 | |
|
| | 682 | | /// <summary> |
| | 683 | | /// Converts ffprobe stream info to our MediaStream class. |
| | 684 | | /// </summary> |
| | 685 | | /// <param name="isAudio">if set to <c>true</c> [is info].</param> |
| | 686 | | /// <param name="streamInfo">The stream info.</param> |
| | 687 | | /// <param name="formatInfo">The format info.</param> |
| | 688 | | /// <returns>MediaStream.</returns> |
| | 689 | | private MediaStream GetMediaStream(bool isAudio, MediaStreamInfo streamInfo, MediaFormatInfo formatInfo) |
| | 690 | | { |
| | 691 | | // These are mp4 chapters |
| 23 | 692 | | if (string.Equals(streamInfo.CodecName, "mov_text", StringComparison.OrdinalIgnoreCase)) |
| | 693 | | { |
| | 694 | | // Edit: but these are also sometimes subtitles? |
| | 695 | | // return null; |
| | 696 | | } |
| | 697 | |
|
| 23 | 698 | | var stream = new MediaStream |
| 23 | 699 | | { |
| 23 | 700 | | Codec = streamInfo.CodecName, |
| 23 | 701 | | Profile = streamInfo.Profile, |
| 23 | 702 | | Level = streamInfo.Level, |
| 23 | 703 | | Index = streamInfo.Index, |
| 23 | 704 | | PixelFormat = streamInfo.PixelFormat, |
| 23 | 705 | | NalLengthSize = streamInfo.NalLengthSize, |
| 23 | 706 | | TimeBase = streamInfo.TimeBase, |
| 23 | 707 | | CodecTimeBase = streamInfo.CodecTimeBase, |
| 23 | 708 | | IsAVC = streamInfo.IsAvc |
| 23 | 709 | | }; |
| | 710 | |
|
| | 711 | | // Filter out junk |
| 23 | 712 | | if (!string.IsNullOrWhiteSpace(streamInfo.CodecTagString) && !streamInfo.CodecTagString.Contains("[0]", Stri |
| | 713 | | { |
| 10 | 714 | | stream.CodecTag = streamInfo.CodecTagString; |
| | 715 | | } |
| | 716 | |
|
| 23 | 717 | | if (streamInfo.Tags is not null) |
| | 718 | | { |
| 19 | 719 | | stream.Language = GetDictionaryValue(streamInfo.Tags, "language"); |
| 19 | 720 | | stream.Comment = GetDictionaryValue(streamInfo.Tags, "comment"); |
| 19 | 721 | | stream.Title = GetDictionaryValue(streamInfo.Tags, "title"); |
| | 722 | | } |
| | 723 | |
|
| 23 | 724 | | if (streamInfo.CodecType == CodecType.Audio) |
| | 725 | | { |
| 10 | 726 | | stream.Type = MediaStreamType.Audio; |
| 10 | 727 | | stream.LocalizedDefault = _localization.GetLocalizedString("Default"); |
| 10 | 728 | | stream.LocalizedExternal = _localization.GetLocalizedString("External"); |
| | 729 | |
|
| 10 | 730 | | stream.Channels = streamInfo.Channels; |
| | 731 | |
|
| 10 | 732 | | if (int.TryParse(streamInfo.SampleRate, CultureInfo.InvariantCulture, out var sampleRate)) |
| | 733 | | { |
| 10 | 734 | | stream.SampleRate = sampleRate; |
| | 735 | | } |
| | 736 | |
|
| 10 | 737 | | stream.ChannelLayout = ParseChannelLayout(streamInfo.ChannelLayout); |
| | 738 | |
|
| 10 | 739 | | if (streamInfo.BitsPerSample > 0) |
| | 740 | | { |
| 0 | 741 | | stream.BitDepth = streamInfo.BitsPerSample; |
| | 742 | | } |
| 10 | 743 | | else if (streamInfo.BitsPerRawSample > 0) |
| | 744 | | { |
| 3 | 745 | | stream.BitDepth = streamInfo.BitsPerRawSample; |
| | 746 | | } |
| | 747 | |
|
| 10 | 748 | | if (string.IsNullOrEmpty(stream.Title)) |
| | 749 | | { |
| | 750 | | // mp4 missing track title workaround: fall back to handler_name if populated and not the default "S |
| 10 | 751 | | string handlerName = GetDictionaryValue(streamInfo.Tags, "handler_name"); |
| 10 | 752 | | if (!string.IsNullOrEmpty(handlerName) && !string.Equals(handlerName, "SoundHandler", StringComparis |
| | 753 | | { |
| 3 | 754 | | stream.Title = handlerName; |
| | 755 | | } |
| | 756 | | } |
| | 757 | | } |
| 13 | 758 | | else if (streamInfo.CodecType == CodecType.Subtitle) |
| | 759 | | { |
| 3 | 760 | | stream.Type = MediaStreamType.Subtitle; |
| 3 | 761 | | stream.Codec = NormalizeSubtitleCodec(stream.Codec); |
| 3 | 762 | | stream.LocalizedUndefined = _localization.GetLocalizedString("Undefined"); |
| 3 | 763 | | stream.LocalizedDefault = _localization.GetLocalizedString("Default"); |
| 3 | 764 | | stream.LocalizedForced = _localization.GetLocalizedString("Forced"); |
| 3 | 765 | | stream.LocalizedExternal = _localization.GetLocalizedString("External"); |
| 3 | 766 | | stream.LocalizedHearingImpaired = _localization.GetLocalizedString("HearingImpaired"); |
| | 767 | |
|
| | 768 | | // Graphical subtitle may have width and height info |
| 3 | 769 | | stream.Width = streamInfo.Width; |
| 3 | 770 | | stream.Height = streamInfo.Height; |
| | 771 | |
|
| 3 | 772 | | if (string.IsNullOrEmpty(stream.Title)) |
| | 773 | | { |
| | 774 | | // mp4 missing track title workaround: fall back to handler_name if populated and not the default "S |
| 3 | 775 | | string handlerName = GetDictionaryValue(streamInfo.Tags, "handler_name"); |
| 3 | 776 | | if (!string.IsNullOrEmpty(handlerName) && !string.Equals(handlerName, "SubtitleHandler", StringCompa |
| | 777 | | { |
| 1 | 778 | | stream.Title = handlerName; |
| | 779 | | } |
| | 780 | | } |
| | 781 | | } |
| 10 | 782 | | else if (streamInfo.CodecType == CodecType.Video) |
| | 783 | | { |
| 10 | 784 | | stream.AverageFrameRate = GetFrameRate(streamInfo.AverageFrameRate); |
| 10 | 785 | | stream.RealFrameRate = GetFrameRate(streamInfo.RFrameRate); |
| | 786 | |
|
| 10 | 787 | | stream.IsInterlaced = !string.IsNullOrWhiteSpace(streamInfo.FieldOrder) |
| 10 | 788 | | && !string.Equals(streamInfo.FieldOrder, "progressive", StringComparison.OrdinalIgnoreCase); |
| | 789 | |
|
| 10 | 790 | | if (isAudio |
| 10 | 791 | | || string.Equals(stream.Codec, "bmp", StringComparison.OrdinalIgnoreCase) |
| 10 | 792 | | || string.Equals(stream.Codec, "gif", StringComparison.OrdinalIgnoreCase) |
| 10 | 793 | | || string.Equals(stream.Codec, "png", StringComparison.OrdinalIgnoreCase) |
| 10 | 794 | | || string.Equals(stream.Codec, "webp", StringComparison.OrdinalIgnoreCase)) |
| | 795 | | { |
| 2 | 796 | | stream.Type = MediaStreamType.EmbeddedImage; |
| | 797 | | } |
| 8 | 798 | | else if (string.Equals(stream.Codec, "mjpeg", StringComparison.OrdinalIgnoreCase)) |
| | 799 | | { |
| | 800 | | // How to differentiate between video and embedded image? |
| | 801 | | // The only difference I've seen thus far is presence of codec tag, also embedded images have high ( |
| 0 | 802 | | if (!string.IsNullOrWhiteSpace(stream.CodecTag)) |
| | 803 | | { |
| 0 | 804 | | stream.Type = MediaStreamType.Video; |
| | 805 | | } |
| | 806 | | else |
| | 807 | | { |
| 0 | 808 | | stream.Type = MediaStreamType.EmbeddedImage; |
| | 809 | | } |
| | 810 | | } |
| | 811 | | else |
| | 812 | | { |
| 8 | 813 | | stream.Type = MediaStreamType.Video; |
| | 814 | | } |
| | 815 | |
|
| 10 | 816 | | stream.Width = streamInfo.Width; |
| 10 | 817 | | stream.Height = streamInfo.Height; |
| 10 | 818 | | stream.AspectRatio = GetAspectRatio(streamInfo); |
| | 819 | |
|
| 10 | 820 | | if (streamInfo.BitsPerSample > 0) |
| | 821 | | { |
| 0 | 822 | | stream.BitDepth = streamInfo.BitsPerSample; |
| | 823 | | } |
| 10 | 824 | | else if (streamInfo.BitsPerRawSample > 0) |
| | 825 | | { |
| 9 | 826 | | stream.BitDepth = streamInfo.BitsPerRawSample; |
| | 827 | | } |
| | 828 | |
|
| 10 | 829 | | if (!stream.BitDepth.HasValue) |
| | 830 | | { |
| 1 | 831 | | if (!string.IsNullOrEmpty(streamInfo.PixelFormat)) |
| | 832 | | { |
| 1 | 833 | | if (string.Equals(streamInfo.PixelFormat, "yuv420p", StringComparison.OrdinalIgnoreCase) |
| 1 | 834 | | || string.Equals(streamInfo.PixelFormat, "yuv444p", StringComparison.OrdinalIgnoreCase)) |
| | 835 | | { |
| 1 | 836 | | stream.BitDepth = 8; |
| | 837 | | } |
| 0 | 838 | | else if (string.Equals(streamInfo.PixelFormat, "yuv420p10le", StringComparison.OrdinalIgnoreCase |
| 0 | 839 | | || string.Equals(streamInfo.PixelFormat, "yuv444p10le", StringComparison.OrdinalIgnoreC |
| | 840 | | { |
| 0 | 841 | | stream.BitDepth = 10; |
| | 842 | | } |
| 0 | 843 | | else if (string.Equals(streamInfo.PixelFormat, "yuv420p12le", StringComparison.OrdinalIgnoreCase |
| 0 | 844 | | || string.Equals(streamInfo.PixelFormat, "yuv444p12le", StringComparison.OrdinalIgnoreC |
| | 845 | | { |
| 0 | 846 | | stream.BitDepth = 12; |
| | 847 | | } |
| | 848 | | } |
| | 849 | | } |
| | 850 | |
|
| | 851 | | // stream.IsAnamorphic = string.Equals(streamInfo.sample_aspect_ratio, "0:1", StringComparison.OrdinalIg |
| | 852 | | // string.Equals(stream.AspectRatio, "2.35:1", StringComparison.OrdinalIgnoreCase) || |
| | 853 | | // string.Equals(stream.AspectRatio, "2.40:1", StringComparison.OrdinalIgnoreCase); |
| | 854 | |
|
| | 855 | | // http://stackoverflow.com/questions/17353387/how-to-detect-anamorphic-video-with-ffprobe |
| 10 | 856 | | stream.IsAnamorphic = string.Equals(streamInfo.SampleAspectRatio, "0:1", StringComparison.OrdinalIgnoreC |
| | 857 | |
|
| 10 | 858 | | if (streamInfo.Refs > 0) |
| | 859 | | { |
| 10 | 860 | | stream.RefFrames = streamInfo.Refs; |
| | 861 | | } |
| | 862 | |
|
| 10 | 863 | | if (!string.IsNullOrEmpty(streamInfo.ColorRange)) |
| | 864 | | { |
| 4 | 865 | | stream.ColorRange = streamInfo.ColorRange; |
| | 866 | | } |
| | 867 | |
|
| 10 | 868 | | if (!string.IsNullOrEmpty(streamInfo.ColorSpace)) |
| | 869 | | { |
| 4 | 870 | | stream.ColorSpace = streamInfo.ColorSpace; |
| | 871 | | } |
| | 872 | |
|
| 10 | 873 | | if (!string.IsNullOrEmpty(streamInfo.ColorTransfer)) |
| | 874 | | { |
| 2 | 875 | | stream.ColorTransfer = streamInfo.ColorTransfer; |
| | 876 | | } |
| | 877 | |
|
| 10 | 878 | | if (!string.IsNullOrEmpty(streamInfo.ColorPrimaries)) |
| | 879 | | { |
| 2 | 880 | | stream.ColorPrimaries = streamInfo.ColorPrimaries; |
| | 881 | | } |
| | 882 | |
|
| 10 | 883 | | if (streamInfo.SideDataList is not null) |
| | 884 | | { |
| 6 | 885 | | foreach (var data in streamInfo.SideDataList) |
| | 886 | | { |
| | 887 | | // Parse Dolby Vision metadata from side_data |
| 2 | 888 | | if (string.Equals(data.SideDataType, "DOVI configuration record", StringComparison.OrdinalIgnore |
| | 889 | | { |
| 1 | 890 | | stream.DvVersionMajor = data.DvVersionMajor; |
| 1 | 891 | | stream.DvVersionMinor = data.DvVersionMinor; |
| 1 | 892 | | stream.DvProfile = data.DvProfile; |
| 1 | 893 | | stream.DvLevel = data.DvLevel; |
| 1 | 894 | | stream.RpuPresentFlag = data.RpuPresentFlag; |
| 1 | 895 | | stream.ElPresentFlag = data.ElPresentFlag; |
| 1 | 896 | | stream.BlPresentFlag = data.BlPresentFlag; |
| 1 | 897 | | stream.DvBlSignalCompatibilityId = data.DvBlSignalCompatibilityId; |
| | 898 | | } |
| | 899 | |
|
| | 900 | | // Parse video rotation metadata from side_data |
| 1 | 901 | | else if (string.Equals(data.SideDataType, "Display Matrix", StringComparison.OrdinalIgnoreCase)) |
| | 902 | | { |
| 1 | 903 | | stream.Rotation = data.Rotation; |
| | 904 | | } |
| | 905 | | } |
| | 906 | | } |
| | 907 | | } |
| 0 | 908 | | else if (streamInfo.CodecType == CodecType.Data) |
| | 909 | | { |
| 0 | 910 | | stream.Type = MediaStreamType.Data; |
| | 911 | | } |
| | 912 | | else |
| | 913 | | { |
| 0 | 914 | | return null; |
| | 915 | | } |
| | 916 | |
|
| | 917 | | // Get stream bitrate |
| 23 | 918 | | var bitrate = 0; |
| | 919 | |
|
| 23 | 920 | | if (int.TryParse(streamInfo.BitRate, CultureInfo.InvariantCulture, out var value)) |
| | 921 | | { |
| 12 | 922 | | bitrate = value; |
| | 923 | | } |
| | 924 | |
|
| | 925 | | // The bitrate info of FLAC musics and some videos is included in formatInfo. |
| 23 | 926 | | if (bitrate == 0 |
| 23 | 927 | | && formatInfo is not null |
| 23 | 928 | | && (stream.Type == MediaStreamType.Video || (isAudio && stream.Type == MediaStreamType.Audio))) |
| | 929 | | { |
| | 930 | | // If the stream info doesn't have a bitrate get the value from the media format info |
| 6 | 931 | | if (int.TryParse(formatInfo.BitRate, CultureInfo.InvariantCulture, out value)) |
| | 932 | | { |
| 6 | 933 | | bitrate = value; |
| | 934 | | } |
| | 935 | | } |
| | 936 | |
|
| 23 | 937 | | if (bitrate > 0) |
| | 938 | | { |
| 18 | 939 | | stream.BitRate = bitrate; |
| | 940 | | } |
| | 941 | |
|
| | 942 | | // Extract bitrate info from tag "BPS" if possible. |
| 23 | 943 | | if (!stream.BitRate.HasValue |
| 23 | 944 | | && (streamInfo.CodecType == CodecType.Audio |
| 23 | 945 | | || streamInfo.CodecType == CodecType.Video)) |
| | 946 | | { |
| 5 | 947 | | var bps = GetBPSFromTags(streamInfo); |
| 5 | 948 | | if (bps > 0) |
| | 949 | | { |
| 0 | 950 | | stream.BitRate = bps; |
| | 951 | | } |
| | 952 | | else |
| | 953 | | { |
| | 954 | | // Get average bitrate info from tag "NUMBER_OF_BYTES" and "DURATION" if possible. |
| 5 | 955 | | var durationInSeconds = GetRuntimeSecondsFromTags(streamInfo); |
| 5 | 956 | | var bytes = GetNumberOfBytesFromTags(streamInfo); |
| 5 | 957 | | if (durationInSeconds is not null && bytes is not null) |
| | 958 | | { |
| 0 | 959 | | bps = Convert.ToInt32(bytes * 8 / durationInSeconds, CultureInfo.InvariantCulture); |
| 0 | 960 | | if (bps > 0) |
| | 961 | | { |
| 0 | 962 | | stream.BitRate = bps; |
| | 963 | | } |
| | 964 | | } |
| | 965 | | } |
| | 966 | | } |
| | 967 | |
|
| 23 | 968 | | var disposition = streamInfo.Disposition; |
| 23 | 969 | | if (disposition is not null) |
| | 970 | | { |
| 23 | 971 | | if (disposition.GetValueOrDefault("default") == 1) |
| | 972 | | { |
| 13 | 973 | | stream.IsDefault = true; |
| | 974 | | } |
| | 975 | |
|
| 23 | 976 | | if (disposition.GetValueOrDefault("forced") == 1) |
| | 977 | | { |
| 0 | 978 | | stream.IsForced = true; |
| | 979 | | } |
| | 980 | |
|
| 23 | 981 | | if (disposition.GetValueOrDefault("hearing_impaired") == 1) |
| | 982 | | { |
| 1 | 983 | | stream.IsHearingImpaired = true; |
| | 984 | | } |
| | 985 | | } |
| | 986 | |
|
| 23 | 987 | | NormalizeStreamTitle(stream); |
| | 988 | |
|
| 23 | 989 | | return stream; |
| | 990 | | } |
| | 991 | |
|
| | 992 | | private void NormalizeStreamTitle(MediaStream stream) |
| | 993 | | { |
| 23 | 994 | | if (string.Equals(stream.Title, "cc", StringComparison.OrdinalIgnoreCase) |
| 23 | 995 | | || stream.Type == MediaStreamType.EmbeddedImage) |
| | 996 | | { |
| 2 | 997 | | stream.Title = null; |
| | 998 | | } |
| 23 | 999 | | } |
| | 1000 | |
|
| | 1001 | | /// <summary> |
| | 1002 | | /// Gets a string from an FFProbeResult tags dictionary. |
| | 1003 | | /// </summary> |
| | 1004 | | /// <param name="tags">The tags.</param> |
| | 1005 | | /// <param name="key">The key.</param> |
| | 1006 | | /// <returns>System.String.</returns> |
| | 1007 | | private string GetDictionaryValue(IReadOnlyDictionary<string, string> tags, string key) |
| | 1008 | | { |
| 106 | 1009 | | if (tags is null) |
| | 1010 | | { |
| 3 | 1011 | | return null; |
| | 1012 | | } |
| | 1013 | |
|
| 103 | 1014 | | tags.TryGetValue(key, out var val); |
| | 1015 | |
|
| 103 | 1016 | | return val; |
| | 1017 | | } |
| | 1018 | |
|
| | 1019 | | private string ParseChannelLayout(string input) |
| | 1020 | | { |
| 10 | 1021 | | if (string.IsNullOrEmpty(input)) |
| | 1022 | | { |
| 1 | 1023 | | return null; |
| | 1024 | | } |
| | 1025 | |
|
| 9 | 1026 | | return input.AsSpan().LeftPart('(').ToString(); |
| | 1027 | | } |
| | 1028 | |
|
| | 1029 | | private string GetAspectRatio(MediaStreamInfo info) |
| | 1030 | | { |
| 10 | 1031 | | var original = info.DisplayAspectRatio; |
| | 1032 | |
|
| 10 | 1033 | | var parts = (original ?? string.Empty).Split(':'); |
| 10 | 1034 | | if (!(parts.Length == 2 |
| 10 | 1035 | | && int.TryParse(parts[0], CultureInfo.InvariantCulture, out var width) |
| 10 | 1036 | | && int.TryParse(parts[1], CultureInfo.InvariantCulture, out var height) |
| 10 | 1037 | | && width > 0 |
| 10 | 1038 | | && height > 0)) |
| | 1039 | | { |
| 3 | 1040 | | width = info.Width; |
| 3 | 1041 | | height = info.Height; |
| | 1042 | | } |
| | 1043 | |
|
| 10 | 1044 | | if (width > 0 && height > 0) |
| | 1045 | | { |
| 10 | 1046 | | double ratio = width; |
| 10 | 1047 | | ratio /= height; |
| | 1048 | |
|
| 10 | 1049 | | if (IsClose(ratio, 1.777777778, .03)) |
| | 1050 | | { |
| 5 | 1051 | | return "16:9"; |
| | 1052 | | } |
| | 1053 | |
|
| 5 | 1054 | | if (IsClose(ratio, 1.3333333333, .05)) |
| | 1055 | | { |
| 1 | 1056 | | return "4:3"; |
| | 1057 | | } |
| | 1058 | |
|
| 4 | 1059 | | if (IsClose(ratio, 1.41)) |
| | 1060 | | { |
| 0 | 1061 | | return "1.41:1"; |
| | 1062 | | } |
| | 1063 | |
|
| 4 | 1064 | | if (IsClose(ratio, 1.5)) |
| | 1065 | | { |
| 1 | 1066 | | return "1.5:1"; |
| | 1067 | | } |
| | 1068 | |
|
| 3 | 1069 | | if (IsClose(ratio, 1.6)) |
| | 1070 | | { |
| 0 | 1071 | | return "1.6:1"; |
| | 1072 | | } |
| | 1073 | |
|
| 3 | 1074 | | if (IsClose(ratio, 1.66666666667)) |
| | 1075 | | { |
| 0 | 1076 | | return "5:3"; |
| | 1077 | | } |
| | 1078 | |
|
| 3 | 1079 | | if (IsClose(ratio, 1.85, .02)) |
| | 1080 | | { |
| 0 | 1081 | | return "1.85:1"; |
| | 1082 | | } |
| | 1083 | |
|
| 3 | 1084 | | if (IsClose(ratio, 2.35, .025)) |
| | 1085 | | { |
| 0 | 1086 | | return "2.35:1"; |
| | 1087 | | } |
| | 1088 | |
|
| 3 | 1089 | | if (IsClose(ratio, 2.4, .025)) |
| | 1090 | | { |
| 1 | 1091 | | return "2.40:1"; |
| | 1092 | | } |
| | 1093 | | } |
| | 1094 | |
|
| 2 | 1095 | | return original; |
| | 1096 | | } |
| | 1097 | |
|
| | 1098 | | private bool IsClose(double d1, double d2, double variance = .005) |
| | 1099 | | { |
| 38 | 1100 | | return Math.Abs(d1 - d2) <= variance; |
| | 1101 | | } |
| | 1102 | |
|
| | 1103 | | /// <summary> |
| | 1104 | | /// Gets a frame rate from a string value in ffprobe output |
| | 1105 | | /// This could be a number or in the format of 2997/125. |
| | 1106 | | /// </summary> |
| | 1107 | | /// <param name="value">The value.</param> |
| | 1108 | | /// <returns>System.Nullable{System.Single}.</returns> |
| | 1109 | | internal static float? GetFrameRate(ReadOnlySpan<char> value) |
| | 1110 | | { |
| 29 | 1111 | | if (value.IsEmpty) |
| | 1112 | | { |
| 0 | 1113 | | return null; |
| | 1114 | | } |
| | 1115 | |
|
| 29 | 1116 | | int index = value.IndexOf('/'); |
| 29 | 1117 | | if (index == -1) |
| | 1118 | | { |
| 0 | 1119 | | return null; |
| | 1120 | | } |
| | 1121 | |
|
| 29 | 1122 | | if (!float.TryParse(value[..index], NumberStyles.Integer, CultureInfo.InvariantCulture, out var dividend) |
| 29 | 1123 | | || !float.TryParse(value[(index + 1)..], NumberStyles.Integer, CultureInfo.InvariantCulture, out var div |
| | 1124 | | { |
| 0 | 1125 | | return null; |
| | 1126 | | } |
| | 1127 | |
|
| 29 | 1128 | | return divisor == 0f ? null : dividend / divisor; |
| | 1129 | | } |
| | 1130 | |
|
| | 1131 | | private void SetAudioRuntimeTicks(InternalMediaInfoResult result, MediaInfo data) |
| | 1132 | | { |
| | 1133 | | // Get the first info stream |
| 2 | 1134 | | var stream = result.Streams?.FirstOrDefault(s => s.CodecType == CodecType.Audio); |
| 2 | 1135 | | if (stream is null) |
| | 1136 | | { |
| 0 | 1137 | | return; |
| | 1138 | | } |
| | 1139 | |
|
| | 1140 | | // Get duration from stream properties |
| 2 | 1141 | | var duration = stream.Duration; |
| | 1142 | |
|
| | 1143 | | // If it's not there go into format properties |
| 2 | 1144 | | if (string.IsNullOrEmpty(duration)) |
| | 1145 | | { |
| 0 | 1146 | | duration = result.Format.Duration; |
| | 1147 | | } |
| | 1148 | |
|
| | 1149 | | // If we got something, parse it |
| 2 | 1150 | | if (!string.IsNullOrEmpty(duration)) |
| | 1151 | | { |
| 2 | 1152 | | data.RunTimeTicks = TimeSpan.FromSeconds(double.Parse(duration, CultureInfo.InvariantCulture)).Ticks; |
| | 1153 | | } |
| 2 | 1154 | | } |
| | 1155 | |
|
| | 1156 | | private int? GetBPSFromTags(MediaStreamInfo streamInfo) |
| | 1157 | | { |
| 5 | 1158 | | if (streamInfo?.Tags is null) |
| | 1159 | | { |
| 0 | 1160 | | return null; |
| | 1161 | | } |
| | 1162 | |
|
| 5 | 1163 | | var bps = GetDictionaryValue(streamInfo.Tags, "BPS-eng") ?? GetDictionaryValue(streamInfo.Tags, "BPS"); |
| 5 | 1164 | | if (int.TryParse(bps, NumberStyles.Integer, CultureInfo.InvariantCulture, out var parsedBps)) |
| | 1165 | | { |
| 0 | 1166 | | return parsedBps; |
| | 1167 | | } |
| | 1168 | |
|
| 5 | 1169 | | return null; |
| | 1170 | | } |
| | 1171 | |
|
| | 1172 | | private double? GetRuntimeSecondsFromTags(MediaStreamInfo streamInfo) |
| | 1173 | | { |
| 5 | 1174 | | if (streamInfo?.Tags is null) |
| | 1175 | | { |
| 0 | 1176 | | return null; |
| | 1177 | | } |
| | 1178 | |
|
| 5 | 1179 | | var duration = GetDictionaryValue(streamInfo.Tags, "DURATION-eng") ?? GetDictionaryValue(streamInfo.Tags, "D |
| 5 | 1180 | | if (TimeSpan.TryParse(duration, out var parsedDuration)) |
| | 1181 | | { |
| 0 | 1182 | | return parsedDuration.TotalSeconds; |
| | 1183 | | } |
| | 1184 | |
|
| 5 | 1185 | | return null; |
| | 1186 | | } |
| | 1187 | |
|
| | 1188 | | private long? GetNumberOfBytesFromTags(MediaStreamInfo streamInfo) |
| | 1189 | | { |
| 5 | 1190 | | if (streamInfo?.Tags is null) |
| | 1191 | | { |
| 0 | 1192 | | return null; |
| | 1193 | | } |
| | 1194 | |
|
| 5 | 1195 | | var numberOfBytes = GetDictionaryValue(streamInfo.Tags, "NUMBER_OF_BYTES-eng") |
| 5 | 1196 | | ?? GetDictionaryValue(streamInfo.Tags, "NUMBER_OF_BYTES"); |
| 5 | 1197 | | if (long.TryParse(numberOfBytes, NumberStyles.Integer, CultureInfo.InvariantCulture, out var parsedBytes)) |
| | 1198 | | { |
| 0 | 1199 | | return parsedBytes; |
| | 1200 | | } |
| | 1201 | |
|
| 5 | 1202 | | return null; |
| | 1203 | | } |
| | 1204 | |
|
| | 1205 | | private void SetSize(InternalMediaInfoResult data, MediaInfo info) |
| | 1206 | | { |
| 10 | 1207 | | if (data.Format is null) |
| | 1208 | | { |
| 1 | 1209 | | return; |
| | 1210 | | } |
| | 1211 | |
|
| 9 | 1212 | | info.Size = string.IsNullOrEmpty(data.Format.Size) ? null : long.Parse(data.Format.Size, CultureInfo.Invaria |
| 9 | 1213 | | } |
| | 1214 | |
|
| | 1215 | | private void SetAudioInfoFromTags(MediaInfo audio, Dictionary<string, string> tags) |
| | 1216 | | { |
| 2 | 1217 | | var people = new List<BaseItemPerson>(); |
| 2 | 1218 | | if (tags.TryGetValue("composer", out var composer) && !string.IsNullOrWhiteSpace(composer)) |
| | 1219 | | { |
| 12 | 1220 | | foreach (var person in Split(composer, false)) |
| | 1221 | | { |
| 4 | 1222 | | people.Add(new BaseItemPerson { Name = person, Type = PersonKind.Composer }); |
| | 1223 | | } |
| | 1224 | | } |
| | 1225 | |
|
| 2 | 1226 | | if (tags.TryGetValue("conductor", out var conductor) && !string.IsNullOrWhiteSpace(conductor)) |
| | 1227 | | { |
| 0 | 1228 | | foreach (var person in Split(conductor, false)) |
| | 1229 | | { |
| 0 | 1230 | | people.Add(new BaseItemPerson { Name = person, Type = PersonKind.Conductor }); |
| | 1231 | | } |
| | 1232 | | } |
| | 1233 | |
|
| 2 | 1234 | | if (tags.TryGetValue("lyricist", out var lyricist) && !string.IsNullOrWhiteSpace(lyricist)) |
| | 1235 | | { |
| 8 | 1236 | | foreach (var person in Split(lyricist, false)) |
| | 1237 | | { |
| 2 | 1238 | | people.Add(new BaseItemPerson { Name = person, Type = PersonKind.Lyricist }); |
| | 1239 | | } |
| | 1240 | | } |
| | 1241 | |
|
| 2 | 1242 | | if (tags.TryGetValue("performer", out var performer) && !string.IsNullOrWhiteSpace(performer)) |
| | 1243 | | { |
| 50 | 1244 | | foreach (var person in Split(performer, false)) |
| | 1245 | | { |
| 23 | 1246 | | Match match = PerformerRegex().Match(person); |
| | 1247 | |
|
| | 1248 | | // If the performer doesn't have any instrument/role associated, it won't match. In that case, chanc |
| 23 | 1249 | | if (match.Success) |
| | 1250 | | { |
| 22 | 1251 | | people.Add(new BaseItemPerson |
| 22 | 1252 | | { |
| 22 | 1253 | | Name = match.Groups["name"].Value, |
| 22 | 1254 | | Type = PersonKind.Actor, |
| 22 | 1255 | | Role = CultureInfo.InvariantCulture.TextInfo.ToTitleCase(match.Groups["instrument"].Value) |
| 22 | 1256 | | }); |
| | 1257 | | } |
| | 1258 | | } |
| | 1259 | | } |
| | 1260 | |
|
| | 1261 | | // In cases where there isn't sufficient information as to which role a writer performed on a recording, tag |
| 2 | 1262 | | if (tags.TryGetValue("writer", out var writer) && !string.IsNullOrWhiteSpace(writer)) |
| | 1263 | | { |
| 0 | 1264 | | foreach (var person in Split(writer, false)) |
| | 1265 | | { |
| 0 | 1266 | | people.Add(new BaseItemPerson { Name = person, Type = PersonKind.Writer }); |
| | 1267 | | } |
| | 1268 | | } |
| | 1269 | |
|
| 2 | 1270 | | if (tags.TryGetValue("arranger", out var arranger) && !string.IsNullOrWhiteSpace(arranger)) |
| | 1271 | | { |
| 12 | 1272 | | foreach (var person in Split(arranger, false)) |
| | 1273 | | { |
| 4 | 1274 | | people.Add(new BaseItemPerson { Name = person, Type = PersonKind.Arranger }); |
| | 1275 | | } |
| | 1276 | | } |
| | 1277 | |
|
| 2 | 1278 | | if (tags.TryGetValue("engineer", out var engineer) && !string.IsNullOrWhiteSpace(engineer)) |
| | 1279 | | { |
| 0 | 1280 | | foreach (var person in Split(engineer, false)) |
| | 1281 | | { |
| 0 | 1282 | | people.Add(new BaseItemPerson { Name = person, Type = PersonKind.Engineer }); |
| | 1283 | | } |
| | 1284 | | } |
| | 1285 | |
|
| 2 | 1286 | | if (tags.TryGetValue("mixer", out var mixer) && !string.IsNullOrWhiteSpace(mixer)) |
| | 1287 | | { |
| 8 | 1288 | | foreach (var person in Split(mixer, false)) |
| | 1289 | | { |
| 2 | 1290 | | people.Add(new BaseItemPerson { Name = person, Type = PersonKind.Mixer }); |
| | 1291 | | } |
| | 1292 | | } |
| | 1293 | |
|
| 2 | 1294 | | if (tags.TryGetValue("remixer", out var remixer) && !string.IsNullOrWhiteSpace(remixer)) |
| | 1295 | | { |
| 0 | 1296 | | foreach (var person in Split(remixer, false)) |
| | 1297 | | { |
| 0 | 1298 | | people.Add(new BaseItemPerson { Name = person, Type = PersonKind.Remixer }); |
| | 1299 | | } |
| | 1300 | | } |
| | 1301 | |
|
| 2 | 1302 | | audio.People = people.ToArray(); |
| | 1303 | |
|
| | 1304 | | // Set album artist |
| 2 | 1305 | | var albumArtist = tags.GetFirstNotNullNorWhiteSpaceValue("albumartist", "album artist", "album_artist"); |
| 2 | 1306 | | audio.AlbumArtists = albumArtist is not null |
| 2 | 1307 | | ? SplitDistinctArtists(albumArtist, _nameDelimiters, true).ToArray() |
| 2 | 1308 | | : Array.Empty<string>(); |
| | 1309 | |
|
| | 1310 | | // Set album artist to artist if empty |
| 2 | 1311 | | if (audio.AlbumArtists.Length == 0) |
| | 1312 | | { |
| 0 | 1313 | | audio.AlbumArtists = audio.Artists; |
| | 1314 | | } |
| | 1315 | |
|
| | 1316 | | // Track number |
| 2 | 1317 | | audio.IndexNumber = GetDictionaryTrackOrDiscNumber(tags, "track"); |
| | 1318 | |
|
| | 1319 | | // Disc number |
| 2 | 1320 | | audio.ParentIndexNumber = GetDictionaryTrackOrDiscNumber(tags, "disc"); |
| | 1321 | |
|
| | 1322 | | // There's several values in tags may or may not be present |
| 2 | 1323 | | FetchStudios(audio, tags, "organization"); |
| 2 | 1324 | | FetchStudios(audio, tags, "ensemble"); |
| 2 | 1325 | | FetchStudios(audio, tags, "publisher"); |
| 2 | 1326 | | FetchStudios(audio, tags, "label"); |
| | 1327 | |
|
| | 1328 | | // These support multiple values, but for now we only store the first. |
| 2 | 1329 | | var mb = GetMultipleMusicBrainzId(tags.GetValueOrDefault("MusicBrainz Album Artist Id")) |
| 2 | 1330 | | ?? GetMultipleMusicBrainzId(tags.GetValueOrDefault("MUSICBRAINZ_ALBUMARTISTID")); |
| 2 | 1331 | | audio.TrySetProviderId(MetadataProvider.MusicBrainzAlbumArtist, mb); |
| | 1332 | |
|
| 2 | 1333 | | mb = GetMultipleMusicBrainzId(tags.GetValueOrDefault("MusicBrainz Artist Id")) |
| 2 | 1334 | | ?? GetMultipleMusicBrainzId(tags.GetValueOrDefault("MUSICBRAINZ_ARTISTID")); |
| 2 | 1335 | | audio.TrySetProviderId(MetadataProvider.MusicBrainzArtist, mb); |
| | 1336 | |
|
| 2 | 1337 | | mb = GetMultipleMusicBrainzId(tags.GetValueOrDefault("MusicBrainz Album Id")) |
| 2 | 1338 | | ?? GetMultipleMusicBrainzId(tags.GetValueOrDefault("MUSICBRAINZ_ALBUMID")); |
| 2 | 1339 | | audio.TrySetProviderId(MetadataProvider.MusicBrainzAlbum, mb); |
| | 1340 | |
|
| 2 | 1341 | | mb = GetMultipleMusicBrainzId(tags.GetValueOrDefault("MusicBrainz Release Group Id")) |
| 2 | 1342 | | ?? GetMultipleMusicBrainzId(tags.GetValueOrDefault("MUSICBRAINZ_RELEASEGROUPID")); |
| 2 | 1343 | | audio.TrySetProviderId(MetadataProvider.MusicBrainzReleaseGroup, mb); |
| | 1344 | |
|
| 2 | 1345 | | mb = GetMultipleMusicBrainzId(tags.GetValueOrDefault("MusicBrainz Release Track Id")) |
| 2 | 1346 | | ?? GetMultipleMusicBrainzId(tags.GetValueOrDefault("MUSICBRAINZ_RELEASETRACKID")); |
| 2 | 1347 | | audio.TrySetProviderId(MetadataProvider.MusicBrainzTrack, mb); |
| 2 | 1348 | | } |
| | 1349 | |
|
| | 1350 | | private string GetMultipleMusicBrainzId(string value) |
| | 1351 | | { |
| 20 | 1352 | | if (string.IsNullOrWhiteSpace(value)) |
| | 1353 | | { |
| 10 | 1354 | | return null; |
| | 1355 | | } |
| | 1356 | |
|
| 10 | 1357 | | return value.Split('/', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries) |
| 10 | 1358 | | .FirstOrDefault(); |
| | 1359 | | } |
| | 1360 | |
|
| | 1361 | | /// <summary> |
| | 1362 | | /// Splits the specified val. |
| | 1363 | | /// </summary> |
| | 1364 | | /// <param name="val">The val.</param> |
| | 1365 | | /// <param name="allowCommaDelimiter">if set to <c>true</c> [allow comma delimiter].</param> |
| | 1366 | | /// <returns>System.String[][].</returns> |
| | 1367 | | private string[] Split(string val, bool allowCommaDelimiter) |
| | 1368 | | { |
| | 1369 | | // Only use the comma as a delimiter if there are no slashes or pipes. |
| | 1370 | | // We want to be careful not to split names that have commas in them |
| 14 | 1371 | | return !allowCommaDelimiter || _nameDelimiters.Any(i => val.Contains(i, StringComparison.Ordinal)) ? |
| 14 | 1372 | | val.Split(_nameDelimiters, StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries) : |
| 14 | 1373 | | val.Split(',', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries); |
| | 1374 | | } |
| | 1375 | |
|
| | 1376 | | private IEnumerable<string> SplitDistinctArtists(string val, char[] delimiters, bool splitFeaturing) |
| | 1377 | | { |
| 5 | 1378 | | if (splitFeaturing) |
| | 1379 | | { |
| 3 | 1380 | | val = val.Replace(" featuring ", ArtistReplaceValue, StringComparison.OrdinalIgnoreCase) |
| 3 | 1381 | | .Replace(" feat. ", ArtistReplaceValue, StringComparison.OrdinalIgnoreCase); |
| | 1382 | | } |
| | 1383 | |
|
| 5 | 1384 | | var artistsFound = new List<string>(); |
| | 1385 | |
|
| 300 | 1386 | | foreach (var whitelistArtist in SplitWhitelist) |
| | 1387 | | { |
| 145 | 1388 | | var originalVal = val; |
| 145 | 1389 | | val = val.Replace(whitelistArtist, "|", StringComparison.OrdinalIgnoreCase); |
| | 1390 | |
|
| 145 | 1391 | | if (!string.Equals(originalVal, val, StringComparison.OrdinalIgnoreCase)) |
| | 1392 | | { |
| 0 | 1393 | | artistsFound.Add(whitelistArtist); |
| | 1394 | | } |
| | 1395 | | } |
| | 1396 | |
|
| 5 | 1397 | | var artists = val.Split(delimiters, StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries); |
| | 1398 | |
|
| 5 | 1399 | | artistsFound.AddRange(artists); |
| 5 | 1400 | | return artistsFound.DistinctNames(); |
| | 1401 | | } |
| | 1402 | |
|
| | 1403 | | /// <summary> |
| | 1404 | | /// Gets the studios from the tags collection. |
| | 1405 | | /// </summary> |
| | 1406 | | /// <param name="info">The info.</param> |
| | 1407 | | /// <param name="tags">The tags.</param> |
| | 1408 | | /// <param name="tagName">Name of the tag.</param> |
| | 1409 | | private void FetchStudios(MediaInfo info, IReadOnlyDictionary<string, string> tags, string tagName) |
| | 1410 | | { |
| 16 | 1411 | | var val = tags.GetValueOrDefault(tagName); |
| | 1412 | |
|
| 16 | 1413 | | if (string.IsNullOrEmpty(val)) |
| | 1414 | | { |
| 14 | 1415 | | return; |
| | 1416 | | } |
| | 1417 | |
|
| 2 | 1418 | | var studios = Split(val, true); |
| 2 | 1419 | | var studioList = new List<string>(); |
| | 1420 | |
|
| 8 | 1421 | | foreach (var studio in studios) |
| | 1422 | | { |
| 2 | 1423 | | if (string.IsNullOrWhiteSpace(studio)) |
| | 1424 | | { |
| | 1425 | | continue; |
| | 1426 | | } |
| | 1427 | |
|
| | 1428 | | // Don't add artist/album artist name to studios, even if it's listed there |
| 2 | 1429 | | if (info.Artists.Contains(studio, StringComparison.OrdinalIgnoreCase) |
| 2 | 1430 | | || info.AlbumArtists.Contains(studio, StringComparison.OrdinalIgnoreCase)) |
| | 1431 | | { |
| | 1432 | | continue; |
| | 1433 | | } |
| | 1434 | |
|
| 2 | 1435 | | studioList.Add(studio); |
| | 1436 | | } |
| | 1437 | |
|
| 2 | 1438 | | info.Studios = studioList |
| 2 | 1439 | | .Distinct(StringComparer.OrdinalIgnoreCase) |
| 2 | 1440 | | .ToArray(); |
| 2 | 1441 | | } |
| | 1442 | |
|
| | 1443 | | /// <summary> |
| | 1444 | | /// Gets the genres from the tags collection. |
| | 1445 | | /// </summary> |
| | 1446 | | /// <param name="info">The information.</param> |
| | 1447 | | /// <param name="tags">The tags.</param> |
| | 1448 | | private void FetchGenres(MediaInfo info, IReadOnlyDictionary<string, string> tags) |
| | 1449 | | { |
| 10 | 1450 | | var genreVal = tags.GetValueOrDefault("genre"); |
| 10 | 1451 | | if (string.IsNullOrEmpty(genreVal)) |
| | 1452 | | { |
| 8 | 1453 | | return; |
| | 1454 | | } |
| | 1455 | |
|
| 2 | 1456 | | var genres = new List<string>(info.Genres); |
| 20 | 1457 | | foreach (var genre in Split(genreVal, true)) |
| | 1458 | | { |
| 8 | 1459 | | if (string.IsNullOrEmpty(genre)) |
| | 1460 | | { |
| | 1461 | | continue; |
| | 1462 | | } |
| | 1463 | |
|
| 8 | 1464 | | genres.Add(genre); |
| | 1465 | | } |
| | 1466 | |
|
| 2 | 1467 | | info.Genres = genres |
| 2 | 1468 | | .Distinct(StringComparer.OrdinalIgnoreCase) |
| 2 | 1469 | | .ToArray(); |
| 2 | 1470 | | } |
| | 1471 | |
|
| | 1472 | | /// <summary> |
| | 1473 | | /// Gets the track or disc number, which can be in the form of '1', or '1/3'. |
| | 1474 | | /// </summary> |
| | 1475 | | /// <param name="tags">The tags.</param> |
| | 1476 | | /// <param name="tagName">Name of the tag.</param> |
| | 1477 | | /// <returns>The track or disc number, or null, if missing or not parseable.</returns> |
| | 1478 | | private static int? GetDictionaryTrackOrDiscNumber(IReadOnlyDictionary<string, string> tags, string tagName) |
| | 1479 | | { |
| 4 | 1480 | | var disc = tags.GetValueOrDefault(tagName); |
| | 1481 | |
|
| 4 | 1482 | | if (int.TryParse(disc.AsSpan().LeftPart('/'), out var discNum)) |
| | 1483 | | { |
| 4 | 1484 | | return discNum; |
| | 1485 | | } |
| | 1486 | |
|
| 0 | 1487 | | return null; |
| | 1488 | | } |
| | 1489 | |
|
| | 1490 | | private static ChapterInfo GetChapterInfo(MediaChapter chapter) |
| | 1491 | | { |
| 0 | 1492 | | var info = new ChapterInfo(); |
| | 1493 | |
|
| 0 | 1494 | | if (chapter.Tags is not null && chapter.Tags.TryGetValue("title", out string name)) |
| | 1495 | | { |
| 0 | 1496 | | info.Name = name; |
| | 1497 | | } |
| | 1498 | |
|
| | 1499 | | // Limit accuracy to milliseconds to match xml saving |
| 0 | 1500 | | var secondsString = chapter.StartTime; |
| | 1501 | |
|
| 0 | 1502 | | if (double.TryParse(secondsString, CultureInfo.InvariantCulture, out var seconds)) |
| | 1503 | | { |
| 0 | 1504 | | var ms = Math.Round(TimeSpan.FromSeconds(seconds).TotalMilliseconds); |
| 0 | 1505 | | info.StartPositionTicks = TimeSpan.FromMilliseconds(ms).Ticks; |
| | 1506 | | } |
| | 1507 | |
|
| 0 | 1508 | | return info; |
| | 1509 | | } |
| | 1510 | |
|
| | 1511 | | private void FetchWtvInfo(MediaInfo video, InternalMediaInfoResult data) |
| | 1512 | | { |
| 8 | 1513 | | var tags = data.Format?.Tags; |
| | 1514 | |
|
| 8 | 1515 | | if (tags is null) |
| | 1516 | | { |
| 3 | 1517 | | return; |
| | 1518 | | } |
| | 1519 | |
|
| 5 | 1520 | | if (tags.TryGetValue("WM/Genre", out var genres) && !string.IsNullOrWhiteSpace(genres)) |
| | 1521 | | { |
| 0 | 1522 | | var genreList = genres.Split(new[] { ';', '/', ',' }, StringSplitOptions.RemoveEmptyEntries | StringSpli |
| | 1523 | |
|
| | 1524 | | // If this is empty then don't overwrite genres that might have been fetched earlier |
| 0 | 1525 | | if (genreList.Length > 0) |
| | 1526 | | { |
| 0 | 1527 | | video.Genres = genreList; |
| | 1528 | | } |
| | 1529 | | } |
| | 1530 | |
|
| 5 | 1531 | | if (tags.TryGetValue("WM/ParentalRating", out var officialRating) && !string.IsNullOrWhiteSpace(officialRati |
| | 1532 | | { |
| 0 | 1533 | | video.OfficialRating = officialRating; |
| | 1534 | | } |
| | 1535 | |
|
| 5 | 1536 | | if (tags.TryGetValue("WM/MediaCredits", out var people) && !string.IsNullOrEmpty(people)) |
| | 1537 | | { |
| 0 | 1538 | | video.People = Array.ConvertAll( |
| 0 | 1539 | | people.Split(new[] { ';', '/' }, StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntr |
| 0 | 1540 | | i => new BaseItemPerson { Name = i, Type = PersonKind.Actor }); |
| | 1541 | | } |
| | 1542 | |
|
| 5 | 1543 | | if (tags.TryGetValue("WM/OriginalReleaseTime", out var year) && int.TryParse(year, NumberStyles.Integer, Cul |
| | 1544 | | { |
| 0 | 1545 | | video.ProductionYear = parsedYear; |
| | 1546 | | } |
| | 1547 | |
|
| | 1548 | | // Credit to MCEBuddy: https://mcebuddy2x.codeplex.com/ |
| | 1549 | | // DateTime is reported along with timezone info (typically Z i.e. UTC hence assume None) |
| 5 | 1550 | | if (tags.TryGetValue("WM/MediaOriginalBroadcastDateTime", out var premiereDateString) && DateTime.TryParse(y |
| | 1551 | | { |
| 0 | 1552 | | video.PremiereDate = parsedDate; |
| | 1553 | | } |
| | 1554 | |
|
| 5 | 1555 | | var description = tags.GetValueOrDefault("WM/SubTitleDescription"); |
| | 1556 | |
|
| 5 | 1557 | | var subTitle = tags.GetValueOrDefault("WM/SubTitle"); |
| | 1558 | |
|
| | 1559 | | // For below code, credit to MCEBuddy: https://mcebuddy2x.codeplex.com/ |
| | 1560 | |
|
| | 1561 | | // Sometimes for TV Shows the Subtitle field is empty and the subtitle description contains the subtitle, ex |
| | 1562 | | // The format is -> EPISODE/TOTAL_EPISODES_IN_SEASON. SUBTITLE: DESCRIPTION |
| | 1563 | | // OR -> COMMENT. SUBTITLE: DESCRIPTION |
| | 1564 | | // e.g. -> 4/13. The Doctor's Wife: Science fiction drama. When he follows a Time Lord distress signal, the |
| | 1565 | | // e.g. -> CBeebies Bedtime Hour. The Mystery: Animated adventures of two friends who live on an island in t |
| 5 | 1566 | | if (string.IsNullOrWhiteSpace(subTitle) |
| 5 | 1567 | | && !string.IsNullOrWhiteSpace(description) |
| 5 | 1568 | | && description.AsSpan()[..Math.Min(description.Length, MaxSubtitleDescriptionExtractionLength)].Contains |
| | 1569 | | { |
| 0 | 1570 | | string[] descriptionParts = description.Split(':'); |
| 0 | 1571 | | if (descriptionParts.Length > 0) |
| | 1572 | | { |
| 0 | 1573 | | string subtitle = descriptionParts[0]; |
| | 1574 | | try |
| | 1575 | | { |
| | 1576 | | // Check if it contains a episode number and season number |
| 0 | 1577 | | if (subtitle.Contains('/', StringComparison.Ordinal)) |
| | 1578 | | { |
| 0 | 1579 | | string[] subtitleParts = subtitle.Split(' '); |
| 0 | 1580 | | string[] numbers = subtitleParts[0].Replace(".", string.Empty, StringComparison.Ordinal).Spl |
| 0 | 1581 | | video.IndexNumber = int.Parse(numbers[0], CultureInfo.InvariantCulture); |
| | 1582 | | // int totalEpisodesInSeason = int.Parse(numbers[1], CultureInfo.InvariantCulture); |
| | 1583 | |
|
| | 1584 | | // Skip the numbers, concatenate the rest, trim and set as new description |
| 0 | 1585 | | description = string.Join(' ', subtitleParts, 1, subtitleParts.Length - 1).Trim(); |
| | 1586 | | } |
| 0 | 1587 | | else if (subtitle.Contains('.', StringComparison.Ordinal)) |
| | 1588 | | { |
| 0 | 1589 | | var subtitleParts = subtitle.Split('.'); |
| 0 | 1590 | | description = string.Join('.', subtitleParts, 1, subtitleParts.Length - 1).Trim(); |
| | 1591 | | } |
| | 1592 | | else |
| | 1593 | | { |
| 0 | 1594 | | description = subtitle.Trim(); |
| | 1595 | | } |
| 0 | 1596 | | } |
| 0 | 1597 | | catch (Exception ex) |
| | 1598 | | { |
| 0 | 1599 | | _logger.LogError(ex, "Error while parsing subtitle field"); |
| | 1600 | |
|
| | 1601 | | // Fallback to default parsing |
| 0 | 1602 | | if (subtitle.Contains('.', StringComparison.Ordinal)) |
| | 1603 | | { |
| 0 | 1604 | | var subtitleParts = subtitle.Split('.'); |
| 0 | 1605 | | description = string.Join('.', subtitleParts, 1, subtitleParts.Length - 1).Trim(); |
| | 1606 | | } |
| | 1607 | | else |
| | 1608 | | { |
| 0 | 1609 | | description = subtitle.Trim(); |
| | 1610 | | } |
| 0 | 1611 | | } |
| | 1612 | | } |
| | 1613 | | } |
| | 1614 | |
|
| 5 | 1615 | | if (!string.IsNullOrWhiteSpace(description)) |
| | 1616 | | { |
| 0 | 1617 | | video.Overview = description; |
| | 1618 | | } |
| 5 | 1619 | | } |
| | 1620 | |
|
| | 1621 | | private void ExtractTimestamp(MediaInfo video) |
| | 1622 | | { |
| 8 | 1623 | | if (video.VideoType != VideoType.VideoFile) |
| | 1624 | | { |
| 0 | 1625 | | return; |
| | 1626 | | } |
| | 1627 | |
|
| 8 | 1628 | | if (!string.Equals(video.Container, "mpeg2ts", StringComparison.OrdinalIgnoreCase) |
| 8 | 1629 | | && !string.Equals(video.Container, "m2ts", StringComparison.OrdinalIgnoreCase) |
| 8 | 1630 | | && !string.Equals(video.Container, "ts", StringComparison.OrdinalIgnoreCase)) |
| | 1631 | | { |
| 7 | 1632 | | return; |
| | 1633 | | } |
| | 1634 | |
|
| | 1635 | | try |
| | 1636 | | { |
| 1 | 1637 | | video.Timestamp = GetMpegTimestamp(video.Path); |
| 0 | 1638 | | _logger.LogDebug("Video has {Timestamp} timestamp", video.Timestamp); |
| 0 | 1639 | | } |
| 1 | 1640 | | catch (Exception ex) |
| | 1641 | | { |
| 1 | 1642 | | video.Timestamp = null; |
| 1 | 1643 | | _logger.LogError(ex, "Error extracting timestamp info from {Path}", video.Path); |
| 1 | 1644 | | } |
| 1 | 1645 | | } |
| | 1646 | |
|
| | 1647 | | // REVIEW: find out why the byte array needs to be 197 bytes long and comment the reason |
| | 1648 | | private TransportStreamTimestamp GetMpegTimestamp(string path) |
| | 1649 | | { |
| 1 | 1650 | | var packetBuffer = new byte[197]; |
| | 1651 | |
|
| 1 | 1652 | | using (var fs = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read, 1)) |
| | 1653 | | { |
| 0 | 1654 | | fs.ReadExactly(packetBuffer); |
| 0 | 1655 | | } |
| | 1656 | |
|
| 0 | 1657 | | if (packetBuffer[0] == 71) |
| | 1658 | | { |
| 0 | 1659 | | return TransportStreamTimestamp.None; |
| | 1660 | | } |
| | 1661 | |
|
| 0 | 1662 | | if ((packetBuffer[4] != 71) || (packetBuffer[196] != 71)) |
| | 1663 | | { |
| 0 | 1664 | | return TransportStreamTimestamp.None; |
| | 1665 | | } |
| | 1666 | |
|
| 0 | 1667 | | if ((packetBuffer[0] == 0) && (packetBuffer[1] == 0) && (packetBuffer[2] == 0) && (packetBuffer[3] == 0)) |
| | 1668 | | { |
| 0 | 1669 | | return TransportStreamTimestamp.Zero; |
| | 1670 | | } |
| | 1671 | |
|
| 0 | 1672 | | return TransportStreamTimestamp.Valid; |
| | 1673 | | } |
| | 1674 | |
|
| | 1675 | | [GeneratedRegex("(?<name>.*) \\((?<instrument>.*)\\)")] |
| | 1676 | | private static partial Regex PerformerRegex(); |
| | 1677 | | } |
| | 1678 | | } |