Browse Source

Support MKV DATE_RELEASED tag for PremiereDate

https://www.matroska.org/technical/tagging.html#temporal-information
Maxr1998 4 years ago
parent
commit
873ad72c18
1 changed files with 1 additions and 0 deletions
  1. 1 0
      MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs

+ 1 - 0
MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs

@@ -131,6 +131,7 @@ namespace MediaBrowser.MediaEncoding.Probing
             info.PremiereDate = FFProbeHelpers.GetDictionaryDateTime(tags, "retaildate") ??
                 FFProbeHelpers.GetDictionaryDateTime(tags, "retail date") ??
                 FFProbeHelpers.GetDictionaryDateTime(tags, "retail_date") ??
+                FFProbeHelpers.GetDictionaryDateTime(tags, "date_released") ??
                 FFProbeHelpers.GetDictionaryDateTime(tags, "date");
 
             if (isAudio)