Tagged Questions

3
votes
1answer
900 views

reading/writing xmp metadatas on pdf files through pypdf

I can read xmp metadatas through pyPdf with this code: a = pyPdf.PdfFileReader(open(self.fileName)) b = a.getXmpMetadata() c = b.pdf_keywords but: is this the best way? And ...
1
vote
3answers
122 views

Read image XMP data in Python

Can I use PIL, like in this example? I only need to read the data, and I'm looking for the easiest simplest way to do it (I can't install pyexiv). edit: I don't want to believe that the only way to ...
1
vote
0answers
183 views

complete xmp/iptc manipulation command line tool or python wrapper? (osx)

im searching for a complete command line tool or even better a python wrapper to manipulate and retrieve image metadata. i tried pyexiv2 which is very nice but i cant register a new namespace like ...
1
vote
3answers
977 views

XMP image tagging and Python

If I were to tag a bunch of images via XMP, in Python, what would be the best way? I've used Perl's Image::ExifTool and I am very much used to its reliability. I mean the thing never bricked on tens ...
0
votes
1answer
22 views

How to programatically extract XMP Tags added by WLPG?

I tried both exif.py (in Pyhton) and ExifTool (just for debugging on command-line). No matter what I do, I'm unable to extract image Tags or Rating added to a JPEG by Windows Live Photo Gallery. I ...
0
votes
1answer
305 views

Fuse-Python: Unable to run example

I'm tinkering around with the fuse-python bindings and I can't seem to grasp how to run the example xmp.py from the library package (xmp.py is located here: ...