Parse more date formats

This commit is contained in:
Deluan
2020-09-06 00:27:00 -04:00
committed by Deluan Quintão
parent 78ecda5239
commit 2d0031f709
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -15,7 +15,8 @@ var _ = Describe("ffmpegMetadata", func() {
"1980.07.25": 1980,
"2004-00-00": 2004,
"2013-May-12": 2013,
"May 12, 2016": 0,
"May 12, 2016": 2016,
"01/10/1990": 1990,
}
for tag, expected := range examples {
md := &baseMetadata{}