|
Given a filename, I need to be able to access certain metadata in an image for a (closed source) project I'm currently developing, without regard to how the metadata is stored (that is, Exif, IPTC, or XMP). In particular, I want to access geotagging data...
Started by Chris Charabaruk on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
EXIF items can be extracted from an....
Perhaps it can do that
Old question, I know, but EXIF can be extracted with just the base .NET framework (no third party DLLs) .
Check the FreeImage project - a C++ image loading and processing that has .NET wrapper .
|
|
Does Adobe Lightroom store metadata in the pictures? Which metadata is actually stored in which isn't?
Started by J. Pablo Fernández on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Lightroom stores all of its metadata metadata from the source image....
In general, all good it will usually be preceded with clear indications of that action .
This article should help: Making Sense of Metadata Settings in Lightroom .
|
|
Does Google Picasa store metadata in the pictures? Which metadata is actually stored in which isn't?
Started by J. Pablo Fernández on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
From the Google Picasa Help pages here Caption and tags in the IPTC metadata of the jpg, and the GPS location information in the EXIF metadata of a JPEG image from a Pentax....
No, Picasa stores all metadata information in a database.
|
Ask your Facebook Friends
|
When you set a cookie, you set the raw cookie data, and some metadata. This metadata includes the path for where the cookie is valid, the expiration time of the cookie, and so on.
When a browser performs a request, what exactly will the browsers send ...
Started by August Lilleaas on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
When you define a cookie on the server a Set-Cookie header is created in the response carrying the name, value and other metadata about the cookie if the metadata were....
In subsequent requests, the other metadata stays on the client.
|
|
How can I access/remove PNG metadata?
I'm looking for a Mac application or a PHP snippet.
Started by konzepz on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
PNGCrush can remove metadata as well as optimize.
Take a look at Smush_it image optimizer + API.
|
|
I have a few downloaded podcast MP3s, and I'd like to set up some basic metadata for them (artist name, album for date) in Windows Media Player. Is there a way to do this without downloading a program (create a metadata file or the like)? Otherwise, can...
Started by C. Ross on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Do you mean edit metadata on downloaded podcasts within WMP or to setup a regular set of metadata for specific podcasts?.
Edit: think I may have misunderstood.
It's kind of like a slow double-click.
|
|
Windows 7 has a very nifty way of showing "Contributing Artist" metadata in Windows Explorer. In wonder how can I access that metadata from C++? Maybe you even point to some source code? Greatly appreciate in advance.
Started by Roman Kagan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I found this metadata reader worked well with mp3 and wma files..
Independently.
|
|
Couldn't seem to find any info about this googling. Hope that doesn't mean because you can't do it. I'm trying to check if metadata exists on an element. So if I have an element like <a href="#" class="myclass {myid:2,text:bla}"> , with my click...
Started by Roger on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
As far as I can tell, the metadata extracted by that plugin is read-only, and it also caches-write solution, it wouldn't be too hard to write a little function that would take the metadata.
|
|
Given a collection of files which will have associated metadata, what are the recommended methods for storing this metadata?
Some files formats support storing metadata internally (EXIF,ID3,etc), but not all file formats support this, so what are more...
Started by Peter Boughton on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
To store metadata in database has ....
Also, instead of inventing your own format, XML might.
Description ATTRIBUTE a_id a_label VALUE v_id v_label METADATA md_file md_attribute md_value are a good example for this kind of metadata.
|
|
Let's say I have a set of data where each row is a pair of coordinates: (X, Y). Associated with each point I have arbitrary metadata, such as {color: yellow} or {age: 2 years}.
I'd like to be able to store the data and metadata in such a way that I can...
Started by Ron Eggbertson on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Example data table....
SQLite should second table would have something like 3 working columns: metadata key, metadata value, and associated entry id.
Doing a join between a couple of tables, one for the data and one for the metadata).
|