Merge pull request #180 from jareware/patch-1

Allow reading movie caption from QuickTime Title, when available
pull/187/head
Romain 5 years ago committed by GitHub
commit d899528ecb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -83,7 +83,8 @@ function caption (exif, picasa) {
tagValue(exif, 'IPTC', 'Headline') ||
tagValue(exif, 'XMP', 'Description') ||
tagValue(exif, 'XMP', 'Title') ||
tagValue(exif, 'XMP', 'Label')
tagValue(exif, 'XMP', 'Label') ||
tagValue(exif, 'QuickTime', 'Title')
}
function keywords (exif, picasa) {

Loading…
Cancel
Save