You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#260 is merged, but the output for that MOV file is the same. The descriptor needs to be updated to interpret that field as a date. Currently it's just printing the directory's string verbatim.
The QuickTime
.mov
files produced by my iPhone use theISO8601
format in the QuickTime Metadata Header, e.g.2019-12-24T22:35:06+0100
.This format is not supported by the
TryGetDateTime()
extension function (in classDirectoryExtensions
).The date can be parsed with this custom date and time format string:
yyyy-MM-ddTHH:mm:sszzz
.I propose to add this format string to the private list of formats in
string[] _datePatterns
which is used by theTryGetDateTime()
function.Thanks a lot for this great library!
The text was updated successfully, but these errors were encountered: