File: exif2iptc.args

package info (click to toggle)
libimage-exiftool-perl 11.16-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 24,024 kB
  • sloc: perl: 245,177; xml: 120; makefile: 9
file content (31 lines) | stat: -rw-r--r-- 1,382 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#------------------------------------------------------------------------------
# File:         exif2iptc.args
#
# Description:  Tag name translations for converting EXIF to IPTC
#
# Usage:        exiftool -tagsFromFile SRCFILE -@ exif2iptc.args DSTFILE
#
# Requires:     ExifTool version 6.51 or later
#
# Revisions:    2011/09/13 - P. Harvey Created
#               2017/07/06 - PH Set time zone from new EXIF OffsetTime tags
#
# Notes:     1) IPTC requires a timezone but EXIF does not support one, so
#               the local timezone is assumed when writing the IPTC times
#
#            2) These arguments will not delete existing IPTC tags which are
#               missing from the EXIF.  The IPTC tags should be deleted
#               beforehand if required.
#------------------------------------------------------------------------------
-IPTC:By-line < EXIF:Artist
-IPTC:CopyrightNotice < EXIF:Copyright
-IPTC:Caption-Abstract < EXIF:ImageDescription
# the inverse IPTC date and time conversions automagically pull the
# appropriate date or time part out of the EXIF date/time value
-IPTC:DateCreated < EXIF:DateTimeOriginal
-IPTC:TimeCreated < EXIF:DateTimeOriginal
-IPTC:TimeCreated < Composite:SubSecDateTimeOriginal
-IPTC:DigitalCreationDate < EXIF:CreateDate
-IPTC:DigitalCreationTime < EXIF:CreateDate
-IPTC:DigitalCreationTime < Composite:SubSecCreateDate
# end