Tagged Questions

4
votes
3answers
405 views

Audio/video file formats that support embedded markers and comments/annotations?

I am looking at creating an app for OS X and/or iOS that allows the user to arbitrarily embed markers into the audio at various intervals during the audio recording process. It would be nice to have ...
3
votes
2answers
857 views

Reading “People Tags” inserted by Windows Live Photo Gallery

Photo Gallery gives you the ability to mark a person's face and apply a tag to it. I understand it inserts tags directly into the file rather than store it off in a database or accompanying metafile ...
3
votes
1answer
899 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 ...
2
votes
0answers
62 views

Displaying all XMP tags

I am trying to get all The XMP data from a Image, with the XMP Library from Adobe. I will actually like to retrieve the information of the image, so i believe i have to retrieve data from the name ...
2
votes
0answers
104 views

Where can I get a practical tutorial with examples of XMP sidecar files?

I need some examples of XMP sidecar files and also some info on how to fill them out. I'm making an application where the metadata is generic and can come from IPTC or XMP. It's stored in a database ...
2
votes
2answers
229 views

Inserting/Updating XMP in a PDF?

How can I insert/update some XMP metadata into a PDF file preferably using java ?
2
votes
2answers
5k views

Read/Modify PDF Metadata using iTextSharp

I am trying to use iTextSharp to read/modify PDF metadata. I figured out how to do it using pdfreader and pdfstamper. I was wondering if I could also read/modify additional metadata information like ...
2
votes
4answers
3k views

How can I read XMP data from a JPG with PHP?

PHP has built in support for reading EXIF and IPTC metadata, but I can't find any way to read XMP?
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
1answer
265 views

Good metadata image dump utilities?

I'm looking for the best tool out there to extract any and all metadata embedded within the most populat image file formats (JPEG and PNG specifically). whatever's in there, I'd like to know about it ...
0
votes
0answers
129 views

Zend_Pdf problem extracting metadata from PDF/XMP file

I have successfully created a PDF from a multi-page .tiff file using Zend Framework, Zend_Pdf, but cannot access the XMP/metadata. Here is my code: //Create the PDF from .tiff file ...
0
votes
1answer
311 views

using XMPCore to get metadata of a file through actionscript

Is there a simple example to read/write metadata of e.g. a local .jpg? XMPCore ActionScript Reference Unfortunately I was not able to apply the instructions from adobe. A simple example will help me ...
0
votes
0answers
26 views

Extensible external metadata standards?

Are there any standard or popular methods of storing external metadata for many generic purposes? I've heard of XMP but how popular is it besides embedded in JPEG images? I'm looking for a format I ...
0
votes
1answer
304 views

C#: Take Out Image Portion of JPEG to Backup Metadata?

This will be a little backwards from the typical approach. I've used ExifTool for metadata manipulation before, but I really want to keep the best metadata backup I can before I make anything ...
0
votes
2answers
463 views

Correct way of parsing XMP XML metadata attached to the end of a PDF file?

I have a PDF with some meta data in XMP XML format attached to the end. What is the correct way of parsing and using this meta data? At the minute i have a working solution using C99, parsing each ...