Skip to content

Commit

Permalink
Merge pull request #180 from jareware/patch-1
Browse files Browse the repository at this point in the history
Allow reading movie caption from QuickTime Title, when available
  • Loading branch information
rprieto committed Sep 1, 2019
2 parents 626127b + fb79e24 commit d899528
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/model/metadata.js
Expand Up @@ -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) {
Expand Down

0 comments on commit d899528

Please sign in to comment.