Adding "creation_time" as a tag lookup for FFProbe for premiere date (#8884)

This commit is contained in:
bradvolen 2022-12-19 10:52:09 -08:00 committed by GitHub
parent 497d8c4957
commit f20dee8e0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -144,7 +144,8 @@ namespace MediaBrowser.MediaEncoding.Probing
FFProbeHelpers.GetDictionaryDateTime(tags, "retail date") ??
FFProbeHelpers.GetDictionaryDateTime(tags, "retail_date") ??
FFProbeHelpers.GetDictionaryDateTime(tags, "date_released") ??
FFProbeHelpers.GetDictionaryDateTime(tags, "date");
FFProbeHelpers.GetDictionaryDateTime(tags, "date") ??
FFProbeHelpers.GetDictionaryDateTime(tags, "creation_time");
// Set common metadata for music (audio) and music videos (video)
info.Album = tags.GetValueOrDefault("album");