Does anyone know any free alternatives to Informator?

alt text

As a sidenote, this doesn't deal with EXIF metadata only. I'm hoping for video, music, and who knows what else beside images metadata. Being able to view and edit as well.

link|improve this question

68% accept rate
feedback

3 Answers

If your not afraid of using the Terminal :

mdls /path/to/file

link|improve this answer
1  
+1; you (probably) do not need any more than this – trolle3000 Feb 28 '10 at 0:19
That's great, but I couldn't find how to edit the metadata with it, which is what I wanted. It seems it's not possible. And I still hope for a GUI. :) – Cawas Mar 2 '10 at 17:12
mdls is read-only. xattr can write the data – Brock Woolf Jun 3 '10 at 21:43
feedback

http://search.macupdate.com/search.php?keywords=Exif+edit&os=mac

link|improve this answer
1  
As I just added on the question, it's not just EXIF. – Cawas Mar 13 '10 at 2:32
Doing a different search query there I've found a piece of software that I could enjoy, tho: Metadata Hootenanny. So, thanks! search.macupdate.com/… – Cawas Mar 13 '10 at 2:56
Thanks for proving that you don't actually search for anything before posting new threads. – Hasaan Chop Mar 13 '10 at 3:27
1  
you really should take your anger elsewhere. Your link is not good, and it doesn't answer my question. I just enjoyed it because I try to see the good side and get some value out of people. I don't search the entire web before posting new threads, of course not. Get a life dude. – Cawas Mar 15 '10 at 15:45
feedback

Unfortunately there do not see to be any tools which let you edit the Apple metadata beyond the standards created for digital images like EXIF, which I understand you aren't concerned about.

You can achieve the writing of metadata elements such as kMDItemWhereFroms in the Terminal using the xattr command. mdls is for reading the metadata only.

Example for writing the file's origin:

xattr -w com.apple.metadata:kMDItemWhereFroms 'http://www.example.com' <filename>

See more here

link|improve this answer
¡I think You Can, I think I just figured it out! It's listed in the developer's tools, although you still might be able to do it if you haven't downloaded them. If you have, check out: /Developer/Tools/SetFile If not, here's a manual page: developer.apple.com/mac/library/documentation/Darwin/Reference/… From what I understand, xattr changes extended metadata (extra stuff I guess?) while SetFile will change things like creation date, last opened, all those. Not sure if this is what you're looking for, but it's something! – Brett Johnson May 30 '10 at 19:04
@Frost Shadow. We are trying to change the extended metadata. SetFile won't change kMD metadata. Cheers for the info though – Brock Woolf Jun 3 '10 at 21:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.