EXIF Tags In Nautilus

After seeing one of the new Windows Vista screenshots showing Explorer listing image titles in the list view, I decided to have a quick hack on this in Nautilus. Hey presto:

ROCK ON. At the moment it only lets you see the image title on JPEG files (from the Image Description EXIF tag), but I'll extend that later. The good thing is that it's nicely behaved, using asynchronous I/O and only reading as much of the file as it needs.

NP: Worldwide Underground, Erykah Badu

14:50 Thursday, 28 Jul 2005 [#] [computers] (13 comments)

Posted by PlanetReader at Thu Jul 28 15:55:36 2005:
Just wondering -- what did you use to write the descriptions into the EXIF tags?  I haven't found any good open-source applications that allow easy editing of EXIF tags ...
Posted by Julian Turner at Thu Jul 28 15:57:52 2005:
That's typical for the Linux Open Source fanatics... They always copy Microsoft's big innovations!
</sarcasm>

Cool Stuff!
Posted by Ross at Thu Jul 28 16:04:31 2005:
Mysterious PlanetReader: I use a custom script which calls the Perl module Image::MetaData::JPEG.  It's nice and short so I'll paste it here:

<pre>
use Image::MetaData::JPEG;
my $usage = "jpeg-title.pl <filename> <title>";
my $filename = shift @ARGV || die $usage;
my $title = shift @ARGV || die $usage;
my $jpeg = new Image::MetaData::JPEG($filename);
die "Error: " . Image::MetaData::JPEG::Error() unless $jpeg;
$jpeg->set_Exif_data({'ImageDescription' => $title}, 'IMAGE_DATA', 'ADD');
$jpeg->save($filename)
</pre>
Posted by emmanuel at Thu Jul 28 16:08:42 2005:
I submitted a GNOME bug for something close to this:
http://bugzilla.gnome.org/show_bug.cgi?id=304967

But that bug was more "general" maybe.
great work otherwise!
Posted by joeuser at Thu Jul 28 16:22:44 2005:
nice little feature, but there is a prerequisite bug that needs to be solved:

http://bugzilla.gnome.org/show_bug.cgi?id=47806

othervise, that feature is quite useless
Posted by Ross at Thu Jul 28 16:29:03 2005:
Not sure I'd go as far as "useless"...  it still works fine.
Posted by Alan at Thu Jul 28 18:16:34 2005:
It is not just Windows Longhorn this functionality has been around a while but only with the increased use of Digital cameras and lots of files with good metadata do they have a good reason to expose this feature. 

Go to windows Explorer, choose
View,
  Choose Details

and you can add a whole bunch of extra information. 
Unfortunately not many documents have metadata worth showing so it is not generally worth turning on permanently but it can be useful for in a few select folders.
Posted by Colin Marquardt at Thu Jul 28 21:32:54 2005:
And to install the Perl module nicely on Debian, do

dh-make-perl --build --install --cpan 'Image::MetaData::JPEG'
Posted by Tom at Fri Jul 29 15:01:44 2005:
Looks great. It will be very usefull with new search tools. I hope you could edit the title same way you can rename files.

Thanks, keep up the good work.
Posted by Colin Marquardt at Sun Aug 21 22:45:50 2005:
Please give us a patch! :)  http://bugzilla.gnome.org/show_bug.cgi?id=304967 would be a good place to attach it.
Posted by Colin Marquardt at Tue Aug 30 23:00:19 2005:
Another tool for writing EXIF metadata:

http://www.sno.phy.queensu.ca/~phil/exiftool/
Posted by assente at Wed Jul 19 14:16:03 2006:
We need this in Nautilus:
http://www.photothumb.com/IPTCExt/
Posted by Tyler Rick at Thu Jan 15 06:00:51 2009:
It looks like you've figured out how to get the Image Description EXIF tag to show up as a column in Nautilus. I'd really like to do the same thing (as well as dimensions and date taken). Any chance you could share how you managed to do it? Thanks.

Name:


E-mail:


URL:


Add 7 and 7 (required):


Comment: