Aperture 3 - Copy/paste metadata to external database

Hi all, I'm trying to create an external database of the lat., lon, direction, date and other metadata for ~1000 photos. I can see see the metadata alongside the image in browser mode or have it appear at the bottom of the image in full-screen view. I'd like to be able to a) create a table to those data to a text file that I can put in a spreadsheet (fast way) or, b) be able to copy/paste those data separately into the spreadsheet. As it stands now, I cannot do either. I cannot highlight and copy the text. Does someone know where those data are stored or have a solution?
I appreciate your help.

I have the same issue. This is what I get when exorting the data:
Version Name          Title          Urgency          Categories          Suppl. Categories          Keywords          Instructions          Date Created          Contact Creator          Contact Job Title          City          State/Province          Country          Job Identifier          Headline          Provider          Source          Copyright Notice          Caption          Caption Writer          Rating          IPTC Subject Code          Usage Terms          Intellectual Genre          IPTC Scene          Location          ISO Country Code          Contact Address          Contact City          Contact State/Providence          Contact Postal Code          Contact Country          Contact Phone          Contact Email          Contact Website          Label          Latitude          Longitude          Altitude          AltitudeRef
DSC09894                                                                                                                                                                                                          0
What am I missing that actually will have it export the real values?

Similar Messages

  • Copy/paste metadata

    Can someone help me with copy / paste Metadata in LR 4?  It works perfectly for me in LR 3, put I can get the past metadata function to work.

    I went back into LR4 and checked to see if the boxes were checked, and they were not. I use this feature all the time in LR3, and had simply forgotten that I had to go into LR4 and check the boxes again the first time(s) I was using it.  Thanks for your help! I work in the latest version of Lion.  I have not checked all of the boxes for all of the metadata items, but the ones that I have checked now do work.  This would be: keywords, caption, title, copyright, etc.
    Again, than you for your prompt answer.

  • Copy and paste metadata

    I'd like to be able to copy and paste metadata from one to many. I envisage it as a process similar to copying and pasting Adobe Camera Raw settings, with a Paste Special style dialog. Camera EXIF data would be excluded, but you'd be choose to paste just the keywords, or the keywords and the description etc.
    While you can always save a metadata template, that's not ideal for routine work. And you have to edit a metadata template manually before risking applying it to other images.
    John

    You could modify the code to suit as an example I have added Description to Keywords
    This just appends the description, if you want to replace uncomment the marked line..
    #target bridge
    DataCopy();
    function DataCopy(){
    var SP = new TabbedPalette( app.document, "Copy MetaData", "CMtab", "script", "left", "top");
    SP.content.onResize = function(){
      var b = this.bounds;
      pnl.bounds = b;
      this.layout.resize(true);
      SP.content.layout.layout(true);
        Keywords=[];
        Description =[];
        Title=[];
        Headline='';
    var pnl = SP.content.add("panel", undefined , "");
    pnl.alignChildren = ["center", "fill"];
    var mainBtnGp = pnl.add("group");
    mainBtnGp.orientation = "column";
    var titleGp = mainBtnGp.add("group");
    titleGp.alignment ="column";
    var title = titleGp.add("statictext", undefined, "Copy/Paste Metadata");
    var g = title.graphics;
    g.font = ScriptUI.newFont ("Arial", 14);
        var gp2 = mainBtnGp.add("group");
    gp2.p1 = gp2.add('panel');
         gp2a = gp2.p1.add('group');
        gp2a.orientation = "column";
    gp2a.alignment ="left";
        gp2a.cb1 = gp2a.add("checkbox",undefined,'Key Words');
        gp2a.cb2 = gp2a.add("checkbox",undefined,'Description');
        gp2a.cb3 = gp2a.add("checkbox",undefined,'Title');
        gp2a.cb4 =gp2a.add("checkbox",undefined,'Headline');
        gp2a.cb5 =gp2a.add("checkbox",undefined,'Desc to Key Words');
        gp2b = gp2.p1.add('group');
        gp2b.orientation = "column";
    gp2b.alignment = "fill"
        gp2b.bu1 = gp2b.add('button',undefined,'Select Data');
         gp2b.bu2 = gp2b.add('button',undefined,'Reset');
         gp2b.bu2.onClick = function(){
         Keywords=[];
         Description=[];
         Title=[];
         Headline='';
         gp2a.cb1.value  = false;
         gp2a.cb2.value  = false;
         gp2a.cb3.value  = false;
         gp2a.cb4.value  = false;
         gp2a.cb5.value  = false;
        gp2b.bu1.onClick = function(){
            var dat = false;
            if(gp2a.cb1.value) dat = true;
            if(gp2a.cb2.value) dat = true;
            if(gp2a.cb3.value) dat = true;
            if(gp2a.cb4.value) dat = true;
            if(gp2a.cb5.value) dat = true;
            if(!dat) {
                alert("Please select at least one checkbox");
                return;
            loadXMPLib();
            var thumb = app.document.selections[0];
    if(!app.document.selections.length) return;
        if(thumb.type != "file") return;
    var selectedFile = thumb.spec;   
    var myXmpFile = new XMPFile( selectedFile.fsName, XMPConst.UNKNOWN, XMPConst.OPEN_FOR_READ);
    myXmp = myXmpFile.getXMP();
    try{
    if(gp2a.cb1.value){
    Keywords = getArrayItems(XMPConst.NS_DC,'subject');
    if(gp2a.cb2.value){
    Description =  getArrayItems(XMPConst.NS_DC, "description");
    if(gp2a.cb3.value){
    Title = getArrayItems(XMPConst.NS_DC, "title");
    if(gp2a.cb4.value){
    Headline =  "\"" + myXmp.getProperty(XMPConst.NS_PHOTOSHOP, "Headline") + "\"";
    Headline=Headline.replace(/\"/g,'');
    if(gp2a.cb5.value){
    Description =  getArrayItems(XMPConst.NS_DC, "description").toString().replace(/\r|\n/g,'');
    unloadXMPLib();
    }catch(e){alert(e +" Line: "+ e.line);}
    gp2b.bu3 = gp2b.add('button',undefined,'Use Metadata');
    gp2b.bu3.onClick = function(){
    var sels = app.document.selections;
    loadXMPLib();
    for (var a in sels){
    var thumb = new Thumbnail(sels[a]);
       if(thumb.hasMetadata){
          var selectedFile = thumb.spec;   
          var myXmpFile = new XMPFile( selectedFile.fsName, XMPConst.UNKNOWN, XMPConst.OPEN_FOR_UPDATE);
      var myXmp = myXmpFile.getXMP();
            try{
            if(gp2a.cb1.value){
            myXmp.deleteProperty(XMPConst.NS_DC,'subject');
            for(var s in Keywords){
            myXmp.appendArrayItem(XMPConst.NS_DC, "subject", Keywords[s], 0,XMPConst.PROP_IS_ARRAY);
        if(gp2a.cb2.value){
            myXmp.deleteProperty(XMPConst.NS_DC, "description");
            myXmp.setLocalizedText( XMPConst.NS_DC, "description", null, "x-default", Description );
        if(gp2a.cb3.value){
            myXmp.deleteProperty(XMPConst.NS_DC, "title");
            myXmp.appendArrayItem(XMPConst.NS_DC, "title", Title, 0, XMPConst.ALIAS_TO_ALT_TEXT);
            myXmp.setQualifier(XMPConst.NS_DC, "title[1]", "http://www.w3.org/XML/1998/namespace", "lang", "x-default");
        if(gp2a.cb4.value){
            myXmp.deleteProperty(XMPConst.NS_PHOTOSHOP, "Headline");
            myXmp.setProperty(XMPConst.NS_PHOTOSHOP, "Headline", Headline);
        if(gp2a.cb5.value){
            //uncomment the line below to remove all keywords before adding the description
           // myXmp.deleteProperty(XMPConst.NS_DC,'subject');
            myXmp.appendArrayItem(XMPConst.NS_DC, "subject", Description, 0,XMPConst.PROP_IS_ARRAY);
        if (myXmpFile.canPutXMP(myXmp)) {
            myXmpFile.putXMP(myXmp);
             myXmpFile.closeFile(XMPConst.CLOSE_UPDATE_SAFELY);
        }catch(e){alert(e+" Line : "+e.line);}
        unloadXMPLib();
    SP.content.layout.layout(true);
    function getArrayItems(ns, prop){
    var arrItem=[];
    try{
    var items = myXmp.countArrayItems(ns, prop);
       for(var i = 1;i <= items;i++){
         arrItem.push(myXmp.getArrayItem(ns, prop, i));
    return arrItem;
    }catch(e){alert(e +" Line: "+ e.line);}
    function loadXMPLib(){
    if (ExternalObject.AdobeXMPScript == undefined) {
        ExternalObject.AdobeXMPScript = new ExternalObject("lib:AdobeXMPScript");
    function unloadXMPLib(){
       if( ExternalObject.AdobeXMPScript ) {
          try{
             ExternalObject.AdobeXMPScript.unload();
             ExternalObject.AdobeXMPScript = undefined;
          }catch (e){ }

  • Copy paste in the application(from file to database)

    Hi!
    Is it possible to provide a 'copy-paste' functionality in end-user app? I know there is such feature in SQL Workshop but I would like to prepare an application which enables users to copy data from fxls/csv file and the paste it into the application. The data should be saved then in the relevant table in database.
    Regards,
    Tom

    Are you talking about importing data into an existing table where the column data type
    needs to match the column data type in your table? Preferably a comma or semicolon
    separated or tab delimited data.
    If this is so, then there is a simple way to acomplish this using external tables as an
    interface. There you need access to your underlying file system. You could do this in
    the following way:
    1. Create a text area and paste some data in it,
    2. Copy that data into a BFILE on your file system,
    3. Create an external table which will read the created file
    4. Query your external table, validate the data and transfer it into your target table.
    This is, of course a simple way - you know the structure of your data in advance.
    You could also do it the way ApEx does it - providing an interface for more then one
    case and letting user create their own tables, load from file, load from xml file, etc.
    However, this would require much more time to make it working.
    Unfortunatelly, there is no access to file system on htmldb.oracle.com for me to
    show you how this could be done. I have a description on how to handle this problem
    here:
    http://htmldb.oracle.com/pls/otn/f?p=31517:94
    This may help you to start with.
    Denes Kubicek

  • Can't copy/paste 2+GB vids to external drive.

    I've got some videos on my iMac which are up to 11GB in size and I'd like to move them off of this comp in order to reclaim some space but when I try to copy/paste files that are about 2 or more GB in size to an external drive via USB it stops and gives me an "Error code 0". Smaller files have no problem pasting, just the heavy weight ones do. Anyone know what's wrong..??

    is it Fat32? remember 4GB file size limit.
    if not than, do the suggested by draggign them, as copy&paste method isnt the most secure and best way to transfer files.
    the data cache of something that large may not have enough time to copy every file, so dragging simply buffers the process and creates that cache as it goes so all the files get accounted for and transferred.
    goodluck.

  • Shortcut-Bug in Bridge CS6 for Mac / Bridge cant' copy and paste metadata

    The cmd-keys / shortcuts doesn't work in the file info panel btw. in the xmp / iptc fields (e.g. cmd+c, cmd+v, ...) of Adobe Bridge CS6 (Mac OS 10.6.8 and 10.7.3). You are not able to cut and paste info from one box to another like previous versions.
    This bug only appears in the file info window (opened via alt+i) in Bridge CS6 - if you edit information or metadata in the file info panel in Photoshop CS6, the shortcuts or copy and paste from one field to another works.
    The shortcuts also work under Windows (tested under Vista).
    I noticed this minor bug already one in the Photoshop CS6 Beta more than one months ago. I hoped that this was corrected in the official test version, but unfortunately it is not. Although it is a minor bug, it is IMHO a basic function and would be very helpful in my daily work. Bridge CS6 and ACR 7 are very good and meet my expect ions or needs - it is too bad, that such a small thing is making working with the application a little bit annoying.
    It would be nice, if you could forward this to Adobe engineers that they can fix it.
    Thanks so much!

    Thanks! If there is a workaround or simple solution, I would be very glad if you could inform me.
    Christian
    (signature removed by the Admin)
    Am 14.05.2012 um 13:49 schrieb FrankBiederich:
    Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    created by FrankBiederich in XMP SDK - View the full discussion
    Thanks for your report; we'll look into it.
    Frank
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    To unsubscribe from this thread, please visit the message page at Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in XMP SDK by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.
    Message was edited by: Arpit Kapoor

  • Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata

    The cmd-keys / shortcuts doesn't work in the xmp file info panel btw. in the xmp / iptc fields (e.g. cmd+c, cmd+v, ...) of Adobe Bridge CS6 (Mac OS 10.6.8 and 10.7.3). You are not able to cut and paste info from one box to another like previous versions.
    This bug only appears in the xmp file info window (opened via alt+i) in Bridge CS6 - if you edit information or metadata in the file info panel in Photoshop CS6 copy and paste from one field to another works.
    The shortcuts also work under Windows (tested under Vista).
    I noticed this minor bug already one in the Photoshop CS6 Beta more than one months ago. I hoped that this was corrected in the official test version, but unfortunately it is not. Although it is a minor bug, it is IMHO a basic function and would be very helpful in my daily work - it is too bad, that such a small thing is making working with the application a little bit annoying.

    Thanks! If there is a workaround or simple solution, I would be very glad if you could inform me.
    Christian
    (signature removed by the Admin)
    Am 14.05.2012 um 13:49 schrieb FrankBiederich:
    Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    created by FrankBiederich in XMP SDK - View the full discussion
    Thanks for your report; we'll look into it.
    Frank
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    To unsubscribe from this thread, please visit the message page at Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in XMP SDK by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.
    Message was edited by: Arpit Kapoor

  • My iTunes appears to be installed on my laptop (25%) and external hard drive (75%). To get it all in 1 place is it simply a copy-paste exercise for the folders?

    My iTunes appears to be installed on my laptop (25%) and external hard drive (75%). To get it all in 1 place is it simply a copy-paste exercise for the folders?

    Most probably, you have a 'private'-folder = part of an AVCHD-structure on your root-level of that drive.
    Put it back into its folder (or any folder) - done.
    Don't rip AVCHD-folders apart!

  • New user...how do you drag or move or copy a file or folder from the desktop to an external drive?  I have tried dragging and copy/pasting.

    new user...how do you drag or move or copy a file or folder from the desktop to an external drive?  I have tried dragging and copy/pasting.

    My guess the problem you are running into is the drive is formatted for a PC as NTFS. OS X can read files from NTFS however it cannot write to it. Check the formatting on the drive, if it's NTFS then it should be reformatted to Mac OS Extended (Journaled), you can use Disk Utility to do this.
    If you still have a PC and want to share the EHD with the PC and Mac please read MacWorld's Share an external drive between a Mac and a PC article.

  • I can't copy iPhoto to my external hard drive. It will not allow me to drag and drop or copy and paste., I can't copy iPhoto to my external hard drive. It will not allow me to drag and drop or copy and paste.

    I can't copy iPhoto to my external hard drive. It will not allow me to drag and drop or copy and paste., I can't copy iPhoto to my external hard drive. It will not allow me to drag and drop or copy and paste.

    NTFS is your problem.
    iPhoto needs to have the Library sitting on disk formatted Mac OS Extended (Journaled). Users with the Library sitting on disks otherwise formatted regularly report issues including, but not limited to, importing, exporting, saving edits and sharing the photos.
    See this article
    http://support.apple.com/kb/TS5168
    for more. Note also the comment:
    “Additionally, storing the iPhoto library on a network rather than locally on your computer can also lead to poor performance or data loss.”

  • Is there a way to copy & past an entire FCE project to external dr

    Is there a way to copy & paste an entire FCE project to an external drive so that I can delete the project on my hard drive and begin another project?

    You need to keep the following:
    Your *FCE project file* (normally located in your Final Cut Express Documents folder)
    Your *captured clips* (normally located in your Final Cut Express Documents / Capture Scratch folder)
    Any other *source media files* - photos, sound files, etc. - that you used in your project.
    You can copy the files to any folder you wish to copy them to.
    There is no need to keep any of the render files. You can always rerender your project as long as you have your FCE project file and the source clips & other source media that you used in the project.

  • How do I move a file from a memory stick to a an external drive using a mac (copy paste doesnt work)

    How do I move a file from one memory stick to another using mac pro? copy paste doesnt work

    Have you tried simply dragging the file from one stick to the other? Do you know the format of the memory sticks (Macs can't write to those formatted as NTFS without the use of third-party software)?
    Clinton

  • Project duplication:  Copy/Paste vs. Export/Import

    Anyone have any thoughts on project duplication?
    Presently I am copying a project and then pasting it into multiple new locations then renaming them. Recently I was in a training session where the instructor suggested exporting the project and then importing it claiming database size savings. Can anyone shed any insight?
    Thanks in advance.

    I can't imagine why an export/import would be a smaller footprint within the database than a project copy/paste. Not to mention that if you are talking about a relatively large project it can take a substantial amount of time to export and import. One of our schedules that is about 18k activities takes approximately 1.5 hours to export/import where as a project copy/paste only takes about 10 minutes. Note that we do not copy the baseline schedules when replicating projects.

  • I have an IMAC and I'm running OSX 10.9.2.  I'd like to store my Aperture /IMovie Libraries to an external hard drive.  In addition, I'd like to partition the external hard drive so that Time Machine can use it to both back up my IMac and the externa

    I have an IMAC and I'm running OSX 10.9.2.  I'd like to store my Aperture /IMovie Libraries on an external hard drive.  In addition, I'd like to partition the external hard drive so that Time Machine can use it to both back up my IMac and the external library drives.  Is this possible? Can I set up a RAID 5 format for redundancy?

    I'd like to store my Aperture /IMovie Libraries on an external hard drive.
    That is fine and recommended.. use the fastest disk you can afford.. ie Thunderbolt>USB3>FW800>USB2.
    In addition, I'd like to partition the external hard drive so that Time Machine can use it to both back up my IMac and the external library drives.
    Let me be clear.. you want to partition the one disk.. use it for TM and move your files to the external disk.. and then backup to the same disk.. You can do it.. but that is not a backup.. that is an experiment in how long you can get away with running files and backups on the same disk before you lose everything.. like Russian Roulette.. pull the trigger enough times and laws of probability will do you in.
    You must have backups on a different disk .. otherwise it is pointless.
    Can I set up a RAID 5 format for redundancy?
    No.. you can buy special USB and Thunderbolt external drives that support RAID..
    BUT that is still not a backup.. let me show why.. you make a silly move and corrupt your file in aperture.. it is not that rare.
    Raid will corrupt all copies of the files.. it is replicated across all disks.
    Delete a photo it is deleted across all disks.. you have no recovery.
    Alway, always consider RAID system one disk.. backup onto another disk.. and if the photos or movies are at all important to you.. ie your family .. make another copy and store in a relatives house.. There is no such thing as too much redundancy.

  • I installed Windows 7 in my Macbook pro, I can access Windows data in Mac, but I can't copy and delete it. and the same case while i am working in Windows. Could you please guide me if there is any solution, where I could copy/paste/delete my data.

    I installed Windows 7 in my Macbook pro, I can access Windows data in Mac, but I can't copy and delete it. and the same case while i am working in Windows. Could you please guide me if there is any solution, where I could copy/paste/delete my data.

    OS X can natively read NTFS of Windows, but not write to it.
    Windows can't read or write to HFS+ of OSX, and that's a good thing from a security standpoint.
    Ideally if you share files between operating systems you should have a FAT/MSDOS formated USB key or hard drive. (exFAT external drive if any of your files are over 4GB in size) both these formats are universal for OS X or Windows.
    If you install software into Windows and OS X to read each others formats, then you have to pay to update/upgrade it deal with headaches.
    If you swtich between Windows and OS X a lot, don't need full hardware performance for Windows, you may consider installing virtual machine software like VMFusion or Parallels which can take a copy of your Windows in Bootcamp and place it into OS X as a file then run that copy of Windows in a window in OS X like so.
    Advantage here is you run most of your light weight Windows programs like this at the same time as OS X.
    Benefit is you can run just about any Windows or Linux version and OSX server editions (not client versions)
    Bootcamp only allows Windows 7, that's it now.
    You'll also be interested in two fre pieces of software, Carbon Copy Cloner and Winclone on macupdate.com.
    CCC clones OS X partition and Winclone clones the Bootcamp partition. Valuable for you.
    Good Luck

Maybe you are looking for

  • Quicktime player query

    When I upload a video from my camera, it views it in Quicktime Player. If I try to trim the video, I can d it fine, but it won't save the trimmed video. It offers me a mp4 option, offers a format option of iPod touch or iPhone 3GS, which says it is a

  • Simple question - how to burn a mp3 cd as being a cd audio disk

    I use to use Toast in os 9.x to do this. What I want to do: Take an mp3 [or several mp3 files] and burn an audio cd disk that will play in my truck's cd player [that can't play mp3's obviously]. Question: Can this be done in Tiger without third party

  • Mac pro delay again ?

    its been more than one month since i ordered  a customise mac pro and my dealer told me there will be delay in orders does any one facing the same ?

  • Avoid variance calculation on product order

    Hi experts, i have a question. We have a material with cost estimate with quantity structure, cost estimate is release. All cost components in cost component structure are in inventory valuation. On the product order are then target costs. When mater

  • Adoby Acrobat 7.0 opens some times when I close firefox or fire fox will not shut down.

    I have recently updated to firefox 4.0.1 and things are running slower and I have noticed that fire fox does not want to shutdown when I close it. Also every so often when I close fire fox my adobe acrobat professional will open randomly.