exif2iptc.args 1.2 KB

12345678910111213141516171819202122232425262728
  1. #------------------------------------------------------------------------------
  2. # File: exif2iptc.args
  3. #
  4. # Description: Tag name translations for converting EXIF to IPTC
  5. #
  6. # Usage: exiftool -tagsFromFile SRCFILE -@ exif2iptc.args DSTFILE
  7. #
  8. # Requires: ExifTool version 6.51 or later
  9. #
  10. # Revisions: 2011/09/13 - P. Harvey Created
  11. #
  12. # Notes: 1) IPTC requires a timezone but EXIF does not support one, so
  13. # the local timezone is assumed when writing the IPTC times
  14. #
  15. # 2) These arguments will not delete IPTC tags which are missing
  16. # from the EXIF. The IPTC tags should be deleted beforehand if
  17. # required.
  18. #------------------------------------------------------------------------------
  19. -IPTC:By-line < EXIF:Artist
  20. -IPTC:CopyrightNotice < EXIF:Copyright
  21. -IPTC:Caption-Abstract < EXIF:ImageDescription
  22. # the inverse IPTC date and time conversions automagically pull the
  23. # appropriate date or time part out of the EXIF date/time value
  24. -IPTC:DateCreated < EXIF:DateTimeOriginal
  25. -IPTC:TimeCreated < EXIF:DateTimeOriginal
  26. -IPTC:DigitalCreationDate < EXIF:CreateDate
  27. -IPTC:DigitalCreationTime < EXIF:CreateDate
  28. # end