This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
exiftool [2022-05-27 15:19:41] mi [See also] |
exiftool [2023-09-10 13:34:33] (current) mi |
||
---|---|---|---|
Line 54: | Line 54: | ||
exiftool -r -ext jpg '-FileModifyDate<DateTimeOriginal' /path/to/process | exiftool -r -ext jpg '-FileModifyDate<DateTimeOriginal' /path/to/process | ||
+ | |||
+ | == Copy JPEG Comment to Exif UserComment | ||
+ | |||
+ | For all .jpg files in current directory: | ||
+ | |||
+ | <code bash> | ||
+ | for f in *.jpg; do exiftool "-EXIF:UserComment<FILE:Comment" "$f"; done | ||
+ | </code> | ||
== See also | == See also |