Wondering if it would be possible to have exiftool report back on wether:
PDF has incremental updates (multiple EOF markers)
PDF has 3D/RichMedia content (embedded AV or 3D Models)
Quote from: thorsted on April 10, 2023, 02:18:14 PMPDF has incremental updates (multiple EOF markers)
Maybe try this:
grep -c %%EOF FILEQuotePDF has 3D/RichMedia content (embedded AV or 3D Models)
Maybe this for the RichMedia?
exiftool -v FILE | grep RichMediaContentI'm not sure about the 3D, but you should be able to figure out something.
- Phil
Thanks Phil, I'll give that a try.
Any chance getting metadata like this available through the XML output? I have a workflow running which parses the XML.
Thanks.
Adding the ability to do either of these would add significant extra processing overhead, which would slow things down for all other uses. At the moment, I don't see that it is worth the trade-off.
- Phil
Is there an option to use verbose and XML together? Verbose has everything thing I need, even gives me a count of the PDF dictionaries!
The -v and -X options don't work together, but you could do something like this:
exiftool -v -w verbose -execute -X -w xml -common_args FILE
This will create .verbose and .xml output files for each input FILE.
- Phil