Support MKV DATE_RELEASED tag for PremiereDate

https://www.matroska.org/technical/tagging.html#temporal-information
This commit is contained in:
Maxr1998 2021-04-04 15:08:08 +02:00
parent 8d27e10cb6
commit 873ad72c18
No known key found for this signature in database
GPG Key ID: ECECF0D4F4816C81
1 changed files with 1 additions and 0 deletions

View File

@ -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)