mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-18 15:33:15 +00:00
19 lines
767 B
Plaintext
19 lines
767 B
Plaintext
#------------------------------------------------------------------------------
|
|
# File: gps2xmp.args
|
|
#
|
|
# Description: Argument file for copying GPS information from EXIF to XMP
|
|
#
|
|
# Usage: exiftool -tagsFromFile SRCFILE -@ gps2xmp.args DSTFILE
|
|
#
|
|
# Revisions: 2009/01/09 - P. Harvey Created
|
|
#
|
|
# Notes: Most of the GPS tags are copied by the first argument, but
|
|
# the XMP GPS coordinate and date/time tags are composites of
|
|
# more than one EXIF GPS tag, so they are handled separately.
|
|
#------------------------------------------------------------------------------
|
|
-XMP:all < GPS:all
|
|
-XMP:GPSLatitude < Composite:GPSLatitude
|
|
-XMP:GPSLongitude < Composite:GPSLongitude
|
|
-XMP:GPSDateTime < Composite:GPSDateTime
|
|
# end
|