-
Hi, here ! I'm currently developing a little app where I need to extract all images metadata etc ... I was wondering if there was a way (and if not what is your thought on adding this feature, I'm okkay with working on it), to "print" theses datas in "machine readable" format ? Also (because in my case it'll be simpler), what do you think of adding a way for exiv to read the picture on Stdin (like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Exiv2 can do all of those things. It can print metadata as "value" (raw data) or "translated" (human readable).
It can read images from stdin (and write to stdout)
Exiv2 is optimized to read metadata from remote locations using HTTP ByteRange to avoid copying the complete file. The code in the exiv2 application that prints the output above is in src/actions.cpp
The API If you're happy with my answer, please mark this question as answered. As I have retired and I don't subscribe to github, please email if you wish to discuss this further. [email protected] |
Beta Was this translation helpful? Give feedback.
Exiv2 can do all of those things. It can print metadata as "value" (raw data) or "translated" (human readable).