This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
exiftool [2022-05-27 15:05:14] mi |
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 | ||
Line 59: | Line 67: | ||
* https://exiftool.org/filename.html and the [[https://exiftool.org/faq.html|ExifTool FAQ]] | * https://exiftool.org/filename.html and the [[https://exiftool.org/faq.html|ExifTool FAQ]] | ||
* This guy's Exiftool Cheatsheet : https://gist.github.com/rjames86/33b9af12548adf091a26 | * This guy's Exiftool Cheatsheet : https://gist.github.com/rjames86/33b9af12548adf091a26 | ||
+ | * And this even better one: [[https://ozzyczech.cz/bash/exiftool-tips-and-tricks/|Exiftool tips & tricks]] | ||