Added media type specials to json and string output, closes #68

This commit is contained in:
Rhet Turnbull
2020-03-12 20:11:59 -07:00
parent a27ce33473
commit f1ade92e98
2 changed files with 28 additions and 0 deletions

View File

@@ -1019,6 +1019,13 @@ def print_photo_info(photos, json=False):
"iscloudasset",
"incloud",
"date_modified",
"portrait",
"screenshot",
"slow_mo",
"time_lapse",
"hdr",
"selfie",
"panorama",
]
)
for p in photos:
@@ -1053,6 +1060,13 @@ def print_photo_info(photos, json=False):
p.iscloudasset,
p.incloud,
date_modified_iso,
p.portrait,
p.screenshot,
p.slow_mo,
p.time_lapse,
p.hdr,
p.selfie,
p.panorama,
]
)
for row in dump: