Image Metadata Editor

I have been looking for inserting descriptions into my pictures. Unfortunately, there isn't any option to edit Metadata in File Explorers (I tried Thunar and Nautilus). I wouldn't like to have a photo gallery software just to do that, and, by the way, I couldn't find any of those that allows me to edit metadata in a straight-forward way. I have to navigate through a lot of menus in order to do that.
Basically, I was looking for a plugin or other software that enhanced the "Image" tab on Thunar, so I could see and edit all file metadata there. Honestly, I don't know how do you guys keep your photo albums organized without this feature.

I've found Shotwell pretty straightforward to edit tags. However, I personally also use feh + dmenu + a script I found somewhere to view and edit metadata. The latter method I find quite speedy when I've imported a bunch of photos. The script is
image-metadata.sh:
#!/bin/bash
if [ $# -lt 2 ]
then
echo -e usage: "$0 <action> <filename>\n actions: edit-comment, edit-tags"
exit -1
fi
action=$1
file=$2
if [ "$action" == "edit-comment" ]
then
commentText=$(echo | dmenu -t "$(exiv2 -Pt -g Exif.Photo.UserComment $file)")
if [ $? -ne 1 ] # not aborted
then
if [ -z "$commentText" ]
then
exiv2 -M"del Exif.Photo.UserComment" $file
else
exiv2 -M"set Exif.Photo.UserComment $commentText" $file
fi
fi
fi
if [ "$action" == "edit-tags" ]
then
exiv2 -Pt -g Iptc.Application2.Keywords $file > /tmp/._image_keywords.txt
selection=$(exiv2 -Pt -g Iptc.Application2.Keywords $file | dmenu -sb "#000" -nf "#aaa" -nb "#222" -sf "#509ba6" -fn 'Deja Vu Sans Mono-14:bold' -l 10)
if [ -n "$selection" ]
then
exiv2 -M "del Iptc.Application2.Keywords" $file
while read keyword
do
if [ "$selection" != "$keyword" ]
then
exiv2 -M "add Iptc.Application2.Keywords String $keyword" $file
else
deleted=true
fi
done < /tmp/._image_keywords.txt
if [ -z $deleted ]
then
exiv2 -M "add Iptc.Application2.Keywords String $selection" $file
fi
fi
rm /tmp/._image_keywords.txt
fi
if [ "$action" == "show" ]
then
comment=$(exiv2 -Pt -g Exif.Photo.UserComment $file)
exiv2 -Pt -g Iptc.Application2.Keywords $file > /tmp/._image_keywords.txt
echo -n Comment: $comment, "Keywords: "
first=true
while read keyword
do
if [ $first == "false" ]
then
echo -n ", "
fi
echo -n $keyword
first="false"
done < /tmp/._image_keywords.txt
echo
rm /tmp/._image_keywords.txt
fi
It requires exiv2, iptc, and dmenu. (Also ttf-dejavu, but you can edit out that font choice ) The script is not mine; unfortunately, I cannot remember where I found it.
Then in .config/feh/themes, put
tag --action2 ";/path/to/image-metadata.sh edit-comment %f" --action1 ";/path/to/image-metadata.sh edit-tags %f" --info "/path/to/image-metadata.sh show %f"
Browse pictures with "feh -Ttag *.jpg" for instance, then press 1 to edit tags, press 2 to edit comments.

Similar Messages

  • IPTC Metadata Editor with Spellcheck and more

    Bridge and Lightroom could benefit from a robust metadata editor. Quality IPTC data is almost as important as the images themselves. Afterall that's how we and our clients will find our valuable images.
    Desired Features:
    Spellcheck of at least Description and Keyword fields
    Thesaurus would be great for creating Keyword sets
    More flexible keyword sets to allow more nesting and organizing of similar keywords
    Autofill searching of previously used keywords
    Desired Functionality:
    Must be fast and dependable. Currently Bridge is pretty slow, writing one keyword at a time. This seems to cause Bridge to hang up on itself and spit out corrupt files or not apply metadata to random files among a large selection.
    Perhaps it would be better to have the enter all metadata additions and changes at once to all selected files and hit update, append or replace. FotoStation has had a useful interface in which the user can opt to replace and/or append and/or leave alone various metadata fields all at once.
    Currently it is difficult to resolve a large selection of files that all should have the same keyword(s) but some already have it. We are forced to first remove the keywords(s) by pressing the minus sign, wait for that to happen and then reenter the keyword(s). This can be painfully slow for a large batch of files. I've often resorted to manually writing a metadata template in Wordpad an appending the template. It needs to be easier than that.

    The IPTC metadata needs a large amount of work across all the Adobe product line.
    Desired Functions:
    (1)The identical fields/names and consistent characteristics across all products that generate end-user files; for example, Audition (audio), Acrobat (PDF), Photoshop (image), video products and so on. Audition 1.5 still carries the RIFF metadata but no IPTC format data. Acrobat 7.0.7 Pro does have some IPTC like data fields but has a major data integrity problem with the Description field data. In Photoshop CS2, I can utilize CR/LF via "Enter" to make the presentation more readable as separate paragraphs or new line items. In the Acrobat "Description" field I can follow the same procedure and all looks good upon entry. I do a Save and then bring up the IPTC Description data (same file) and all the data after the first CR (Enter) is lost! Never received any error or warning message.
    (2) I think this pertains mostly to generation of PDF files. Currently, when I generate a PDF document having the same location/file-name that I designate for the "new" file, I appropriately get the warning about the "same name". In addition, give me the option to have the metadata in the "old" file copied to the "new" file.
    (3) Publish (at least in the Help function) all the idiosyncracies for each field (e.g., can I not do CR/LF functions?) and the maximum number of characters possible in each field. Please don't reference me to some standard for the information....tell me what the product line supports! In addition, generate warning messages if I do something outside the field support at the time I am entering data in the field. When possible include such information alongside the field window. One example of this is the note below the keyword window about the comma seperator. The problem with this particular comment is that is states "the comma MAY be used as a separator". Don't tell me what MAY be used...tell me what CAN be used (e.g., spaces, semi-colon, etc.).
    (4) Major update required in the Help function for metadata. Right now it is very poor and not of much use.

  • Update image metadata programatically

    Hi
    I developed a plugin, which changes exif information of the image (using a third party program). Is there a way to inform Lightroom programatically to refresh image metadata? Right now I have to right-click on the folder and choose "Synchronize Folder...".

    There's at least one ODBC driver for SQLLite http://www.ch-werner.de/sqliteodbc/, and maybe command line access to the database too
    But there's nothing directly through Lightroom, and you won't be able to code Lightroom to refresh EXIF data. There is no coding mechanism to write to EXIF fields or to refresh the image (ie sadly you can't automate Metadata > Read Metadata).
    If you write directly to the SQL while LR is open, the best you can expect is that the EXIF will use updated data from the database when you next click on that image in Library. However, you are likely to encounter database locking problems  and stand a good chance of corrupting the database. Abandon all hope, ye who enter here?

  • Muse image metadata and global caption styling

    When will Muse be able to import image metadata and perform global caption styling with accurate positioning for lightboxes and slideshows?

    I've done some testing.
    if images are uploaded to the Facebook Wall, the Comments field that Aperture presents before uploading the image becomes the Description field on Facebook.
    however, if the images are uploaded to a known Facebook Album, the Version Name becomes the Description.
    both of these situations are not logical. in the case of uploading to the Wall, 'Comments' should probably be 'Description'. I'll report them to Apple's bugreport.
    images seem to be scaled down to fit within 2048x2048 pixels.

  • Reading Image Metadata..

    Hi,
    I am converting some PHP pages to JSP. There is an image gallery page where images are being displayed and also the comment and Author names is displayed under that image.Those things are set as image metadata.
    The code for doing this in PHP looks like....
    $exif = exif_read_data($full_file_path, 0, true);
    foreach ($exif as $key => $section)
                                            foreach ($section as $name => $val)
    echo $section['Comments'];
    echo $section['Author'];
    How can I achieve this in java i.e. how can I read author and comment metadata fields using java....
    Thanks & Regards
    Shailesh

    http://www.drewnoakes.com/code/exif/

  • Retreiving image metadata

    Can anyone point me on how to retreive image metadata from an image... I was looking into the possibility of using JAI but could not find a clear answer.... If some one could post a link or point me in the correct direction...
    Thanks in advance....
    Sharad R.

    What type of meta data, what type of files?
    You might want to look at:
    http://groups.google.com/groups?q=IIOImage+bufferedimage&hl=en&lr=&ie=UTF-8&oe=UTF-8&selm=2e027e56.0301172122.12504427%40posting.google.com&rnum=3
    - K

  • Image metadata is not retained(stripped) in lightbox slideshow widget

    How is this corrected

    Can someone at Adobe please confirm that there is no reading of the image metadata.  I thought it was limiting that it was only the caption field available.  I am stunned if this is the case that no metadata is being read.  I am working on a photo web site and got to the point of importing photos with the 'captions' checked.  Huge surprise.  It is hard to believe that something as fundamental as basic metadata fields (caption, title, filename, copyright) isn't pulled with the image and available as needed.  C'mon, you are the company that has Photoshop and Lightroom.  Do you guys talk to the other teams?
    I was looking at Muse galleries as an alternative to the LR web module for 2 reasons:  one is flexibility in layout, and the other is speed, since the LR gallery export cranks along at a glacial pace to the point of being almost unusable.  And this is the LR4 upgrade; much slower than LR3.  See the LR threads on this if you're interested.  Still waiting for that fix.
    The thought of manually entering caption info to a dozen galleries, each with 20 or 30 images, is nonsense.  This makes Muse a non-starter for photo galleries.  This is basic capability.  Adobe should be embarrassed that LR4 doesn't do what it should in this regard, and that the feature needed don't even exist in Muse.  Everyone expects a few bugs in the early days of a new software, but not missing essential, fundamental features to make web galleries useful. 
    Rant now over and I will happily apologize if the metada fields are, indeed, available.  Please explain how.  Thanks.

  • How do I edit image metadata?

    What I would like to be able to do is something like:
      tell application "Image Events"
      tell pic
        make new metadata tag with properties {name:"creation", value:cr}
      end tell
      end tell
    Only, sips/Image Events doesn't support setting most image metadata. Any suggestions as to how to approach this problem?

    Thanks. Lightroom 2.4, unfortunately, isn't very scriptable. This is ironic, since the program itself relies on Lua for its interface functionality. I will probably, eventually, manage to compile Exempi and the Python XMP Toolkit and do the job that way.
    Refs:
      [Exempi|http://libopenraw.freedesktop.org/wiki/Exempi]
      [Python XMP Toolkit|http://www.spacetelescope.org/projects/python-xmp-toolkit/docs/index.ht ml]

  • Photoshop elements 11 is not launching or loading images (photo editor)

    Photoshop elements 11 is not launching or loading images (photo editor)

    If you haven't committed to PSE12, yet, then you should be able to download PSE/PRE11 from this website.  Be sure to follow the Very Important Instructions to set the Adobe authorization cookie, because the downloads actually come from Adobe:
    http://prodesigntools.com/photoshop-elements-11-direct-download-links-pse-premiere-pre.htm l

  • PSE8 Crash open as Raw a .jpg image in Editor to get Raw Editor

    Although it works in release 6/7, I crash when I try to open a .jpg image in the raw editor in PSE8.  I use menu file,open as, select an image, and select Camera Raw on  open as drop down menu and then click on Open.  At that point the editor crashes and goes away and has to be restarted.  Anyone have any workaround suggestions or is this broken until relase 9?

    Enjoy your day!
    Ned Brown
    Cel# 408-316-4643
    EMAILING FOR THE GREATER GOOD
    Join me
    Date: Thu, 29 Oct 2009 17:00:24 -0600
    From: [email protected]
    To: [email protected]
    Subject: Re: PSE8 Crash open as Raw a .jpg image in Editor to get Raw Editor
    Same behaviour here (WinXP Pro SP3, PSE upgrade path was 3-4-5-6-7-8).
    I also see 2 times Camera Raw in about plug-ins as well as in the Open as list. Chosing the first one in results in error message "The operation could not be completed, Class alread exists", using the second one in Open as results in error message (my translation from German to English) "This process could not be executed, because there was a program error" (As a software developer, I love this message ).
    I'd be interested in solutions as well.
    Beat Gossweiler
    Switzerland
    >

  • Music metadata editor for S60 5th

    Is there a musin metadata editor for MP3 and/or AAC (ID3, etc) that runs on S60 5th?
    Since the player is so dependant on metadata to organize stuff it would be good to have one editor in the phone itself for the ocasional update.
     Regards
    Rimugunides O'Brian

    Yes.
    It's called the Music Player
    Open the Music Player then go to Options -> Song Details
    You can also add Album Art there if you want.
    640K Should be enough for everybody
    El_Loco Nokia Video Blog

  • Quicktime Metadata editor

    Hi
    I'm looking for a quicktime Metadata editor that will allow me to create a template of new metadata that can be written to any .mov file and read by Final Cut Server. I want to use Quicktime as a way to pre-populate metadata fields before ingest, preferably without having to go into Final cut pro for traditional logging.
    Thank You

    Hi,
    New version 3.9 of SimpleMovieX has a metadata editor with templates.
    I'm not sure that it's exactly what you need.
    For the moment, only a beta version is ready. You can download from here:
    http://aeroquartet.com/SimpleMovieX/SimpleMovieX3.9b.zip
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'
    Regards, BJ

  • Metadata Editor

    Is there a good Mac Metadata editor? I have an oddity in some files - the time listings are way off - 2:30 songs are listed as 11:00 minutes. I would just re-rip them except these are Cd's that the label reissued to replicate the original 45 vinyl singles so there are only 3 tracks per CD - it seems easier to edit the mp3 files? Thanks.

    best one i could see was MP3 Rage at this loc:
    http://www.chaoticsoftware.com/ProductPages/MP3Rage.html
    but i am not sure it does what you want. time changing is not a common request. Some of the PC packages give more comprehensive tag access.

  • Organizer no longer opens image in Editor

    The Organizer and the Editor stopped working together in just 1 of my catalogs. It happens to be the catalog in which I have done the most image manipulations such as renaming, stacking, albums, rating, etc. Now, when I select a photo in Organizer and click on Fix, Edit, the Editor window comes up but the photo does not appear in Editor. The only way I can get an image into Editor is to pull it directly into Editor. Then, when I want to save it as a Version Set I have to choose File> Organize Open File in order to save the image as a version set. Other than deleting and re-creating the catalog, how can I get Editor to open the image from Organizer like it used to do?

    Can you try this-
    1. Launch Editor
    2. Launch Organizer
    3. Now select one such image and click Ctrl+I to open the selected image in Editor
    Does the focus come to Editor app?
    Is the workspace blank?
    What is the file format (camera raw or jpegs) of images you are working on?
    Thanks
    Andaleeb

  • WDS 2012 Image Capture - Stuck at 50% "Capturing Windows image metadata..."

    I have tried capturing a few images after running sysprep, and they are getting stuck at 50% completion, never moving past after hours of waiting.  "Capturing Windows image metadata...".  If I look on the WDS server I see that the file
    hasn't been modified since it was actually capturing and moving the progress bar.
    Has anyone ever experienced this, or have any ideas of how to troubleshoot?
    Thank you!

    Hi motenoob,
    What system edition and MDT edition you are capturing? If it is Windows8 or 8.1, it seems is the know issue, you can refer the following KB:
    Sysprep and Capture task sequence fails when it tries to capture Windows 8 or Windows 8.1 images
    https://social.technet.microsoft.com/Forums/en-US/4e28cac0-29e4-4f24-a8f0-30d34d543a76/wds-2012-image-capture-stuck-at-50-capturing-windows-image-metadata?forum=winserversetup
    Regards,
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for

  • PPOMW - changes in production not allowed

    Hi, We would like to assign a cic-profil to a user in transaction PPOMW in production environment. After saving the changes the error messages u201Cmandant 100 changes not allowedu201D occurs. Our consultants told us, that we have to change to status

  • Custom web adi integrator

    I am developing a custom web adi integrator for uploading Bill of materials details from excel to oracle apps. I have created a custom integrator. I am able to see it while defining layout. I have defined layout,too. But after that when i am going to

  • How contact apple to get the ip white listed ?

    Hi everyone, I'am from France and I need to create a hundred account for Itunes, with the Itunes limit i can't create more than 10 accounts ?? I contact Itunes Support but i don't get any answer ! So i ask to the communities how to contact apple to g

  • Name collision RT

    I'm building an exe in Real Time (8.6.1) and get the following error: An included file had a name collision with the top-level VI - .... Name conflicts involving top-level VIs are not allowed. You can rename files as part of the build process to avoi

  • Why is Thunderbolt backup so slow?

    I've just got a new LaCie Tunderbolt 1TBy drive and am using it as my Time Machine disc.  But why is it so slow?   It is doing the first initial backup (of about 450 GBy) about only backing up at a speed of 1.5GBy per minute, not that much faster tha