Appending Keywords and other metadata to the masterfile

I can't find an answer to the question:
How do I append Keywords and other metadata I added in Aperture to the masterfile without exporting?
I need that to import all that metadata of the masterfiles in a Portfolio database.

I guess you will need a new copy of the RAW to import into Portfoilio. That's really the only way to get Aperture to make the XMP file that contains the keywords. There is a program called Annoture which can convert Aperture metadata into metadata for the program iView Media Pro. No one has made a program to get metadata directly into Portfolio. Aperture wpn't "embed" the keywords in a RAW file because it will not alter the original. Maybe someday Aperture will create DNG files.

Similar Messages

  • U3D, Ids and other metadata in the sceneobject

    From the JS3D reference, and the "supported elements" in U3D, it seems that there could exist some overlap between what is accessible on a sceneobject through js and what is in the U3D, but that mapping is not explained anywhere. In particular I would like to know if these properties map to anything in the U3D file and what that mapping is:
    SceneObject.name The SceneObject objectâs name.
    Type: string
    SceneObject.objectGUID
    A value that uniquely identifies the SceneObject in custom data.
    Type: string
    SceneObject.objectID
    An unsigned 32-bit value that uniquely identifies the SceneObject.
    Type: integer
    Thanks!
    Johan

    For the last two items, the scene does not automatically assign any U3D metadata to these properties. The latest reference for them can be found here:
    http://livedocs.adobe.com/acrobat_sdk/9/Acrobat9_HTMLHelp/wwhelp/wwhimpl/common/html/wwhel p.htm?context=Acrobat9_HTMLHelp&file=JS_3D_Intro.90.1.html
    However, the "metadataString" property might give you something you could use. Here's a hunk of JS code to show the values of all node properties in the Acrobat JS console. Attach this script to the model and compare the output to what you see from your original U3D creation program. There indeed could be some overlap you would find useful, and this is the easiest way to determine that, I'll bet (and the most dependable way).
    First, here's how to use the script, just in case:
    1) Attach the script to the 3D object, not as page script. To do this, use the "Select Object Tool" and double-click the 3D annot, click the 3D tab, script field is at bottom.
    2) Activate the 3D annot, and open the Javascript console (ctrl+j) to see the results of the property search.
    Here's the script:
    console.println ("Number of nodes in scene = " + scene.nodes.count + "\n");
    console.println ("Looping through nodes...\n");
    for (i = 0; i < scene.nodes.count; i++)
    objNode = scene.nodes.getByIndex(i);
    console.println ("------------------------------------------------------");
    console.println ("NODE INDEX " + i);
    console.println ("-------------");
    if (objNode == undefined)
    { console.println (" *** node = undefined ***\n\n"); }
    else
    console.println (" PROPERTIES:");
    console.println (" objNode.firstChild = " + objNode.firstChild );
    console.println (" objNode.hitEnabled = " + objNode.hitEnabled );
    console.println (" objNode.info = " + objNode.info );
    console.println (" objNode.metadataString = " + objNode.metadataString );
    console.println (" objNode.name = " + objNode.name );
    console.println (" objNode.nextSibling = " + objNode.nextSibling );
    console.println (" objNode.objectGUID = " + objNode.objectGUID );
    console.println (" objNode.objectID = " + objNode.objectID );
    console.println (" objNode.parent = " + objNode.parent );
    console.println (" objNode.type = " + objNode.type );
    console.println (" objNode.transform = " + objNode.transform );
    console.println (" objNode.wireframeColor = " + objNode.wireframeColor );
    console.println (" objNode.visible = " + objNode.visible );
    console.println ("");
    console.println (" METHODS:");
    console.println (" objNode.detachFromCurrentAnimation(). = " + objNode.detachFromCurrentAnimation() );
    console.println ("\n");

  • Are keywords and other metadata in web galleries Google-searchable

    I am currently creating my first website and wish to use one of the website templates in LR 2.6.
    My question is, will Google-etc search engines 'see' my keywords and image titles during their searches?
    I hope someone can help.
    Thank you

    Not by google, yet, but by other methods.
    .Jeffreys Exif viewer will read it and there are other web based image search engines that do. Only time before google does likewise I would guess.
    This is a usful link to how to add google analytics to LR web sites

  • LR2 Question syncing keywords and/or Metadata.

    I am shooting RAW and import the files into my catalog as DNG.
    After adding keywords and changing metadata to all the DNG files I would like to apply those changes back to my original RAW files.
    Can I do that easily? Maybe adding XMP files to the same directories as the original RAW files?
    Once I have the RAW files tagged with the same keywords and metadata I plan to archive them and delete from my disk.
    Thank you,

    For your first question - You can select the folder containing the files then use the Save Metadata command from Folder panel context menu (see attached screen shot). Alternatively, you can select the actual files then use Save Metadata to file command (Ctrl/Cmd+S). This latter method is much slower.
    For you second question - not using your current workflow. That said, if you changed your workflow slightly it's possible. To do it you ned to import your raw files without converting to DNG. Next, you apply keywords, metadata, etc. then use method described above for saving back to file (this creates the XMP sidecars). Now select all of the images in Grid view and convert the raw files to DNG (Convert to DNG from Library menu).
    The final step would be to archive the raws plus XMP sidecars, this will need to be done outside of Lightroom.

  • I have 2 Macs - an iMac that holds my entire iPhoto library and a Mac Book Pro that I use to hold a subset of the main library - how can I transfer photos and their metadata from the main library of the iMac to my Mac Book?

    I have 2 Macs - an iMac which holds my main iPhoto library and a Mac Book Pro which holds a subset of the library. How can I transfer photos and their metadata from the main library to the smaller 1 on the Mac Book Pro?

    Link the two Macs together and use iPhoto Library Manager
    Regards
    TD

  • Printing graph and other text in the same page

    Hi,
    I am aware that for providing graphs in ABAP report we have a FM which is called via a pushbutton in the output screen generally.
    Is there any way I can do away with the pushbutton and print the graph and other text in the same page at one go ? I think Smartforms will not allow graph printing.......any other method to achive this ?
    The user wants to print the graph and other text in the same page.
    Regards,
    Sandip.

    Hi ! no it is not related to smartforms
    search for custom container on google you idea about custom container.
    following code is for displaying alv on selection screen which is created using custom container
    and docking container.
    I hope you will get some idea about how to use custom container for your problem
    DATA DECLARATIONS
    DATA: CONT_DOCKING TYPE REF TO CL_GUI_DOCKING_CONTAINER,
    GRID TYPE REF TO CL_GUI_ALV_GRID,
    CUST_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
    IT_FIELDCAT TYPE LVC_T_FCAT,
    GS_LAYOUT TYPE LVC_S_LAYO.
    *ITAB TYPE TABLE OF SBOOK.
    *& SELECTION SCREEN PARAMETERS
    *PARAMETERS:P_TEST TYPE I .
    *& AT SELECTION SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
    IF EBELN[] IS NOT INITIAL.
    CREATE OBJECT CONT_DOCKING
    EXPORTING
    REPID = SY-REPID
    DYNNR = SY-DYNNR
    SIDE = CONT_DOCKING->DOCK_AT_BOTTOM
    EXTENSION = 100.
    IF CUST_CONTAINER IS INITIAL.
    *----Create the alv with docking container
    PERFORM CREATE_AND_INIT_ALV .
    ENDIF.
    ENDIF.
    *& Form BUILD_FIELDCAT
    FORM BUILD_FIELDCAT .
    DATA WA_FIELDCAT TYPE LVC_S_FCAT.
    WA_FIELDCAT-FIELDNAME = 'EBELN'.
    WA_FIELDCAT-REPTEXT = 'Airline Code'.
    APPEND WA_FIELDCAT TO IT_FIELDCAT.
    WA_FIELDCAT-FIELDNAME = 'EBELP'.
    WA_FIELDCAT-REPTEXT = 'Flight Connection Number'.
    APPEND WA_FIELDCAT TO IT_FIELDCAT.
    *WA_FIELDCAT-FIELDNAME = 'WUNIT'.
    *WA_FIELDCAT-REPTEXT = 'Weight Unit'.
    *APPEND WA_FIELDCAT TO IT_FIELDCAT.
    *LOOP AT IT_FIELDCAT INTO WA_FIELDCAT.
    *IF WA_FIELDCAT-FIELDNAME EQ 'WUNIT'.
    *WA_FIELDCAT-EDIT = 'X'.
    *WA_FIELDCAT-DRDN_HNDL = '1'.
    *WA_FIELDCAT-CHECKTABLE = '!'.
    *MODIFY IT_FIELDCAT FROM WA_FIELDCAT.
    *ENDIF.
    *ENDLOOP.
    ENDFORM. "build_fieldcat
    *& Form CREATE_AND_INIT_ALV
    FORM CREATE_AND_INIT_ALV .
    CREATE OBJECT GRID
    EXPORTING I_PARENT = CONT_DOCKING.
    *--perform build field catalog for alv display
    PERFORM BUILD_FIELDCAT .
    *--fill the drop down list values
    PERFORM fill_dropdown_table .
    *----fill final output table
    SELECT * FROM EKPO
    INTO CORRESPONDING FIELDS OF TABLE ITAB WHERE EBELN IN EBELN.
    *UP TO 10 ROWS.
    *---display alv
    CALL METHOD GRID->SET_TABLE_FOR_FIRST_DISPLAY
    CHANGING
    IT_FIELDCATALOG = IT_FIELDCAT
    IT_OUTTAB = ITAB[].
    *---Set editable cells to ready for input initially
    CALL METHOD GRID->SET_READY_FOR_INPUT
    EXPORTING
    I_READY_FOR_INPUT = 1.
    ENDFORM. "create_and_init_alv
    *& Form set_drdn_table
    FORM fill_dropdown_table.
    DATA: LT_DROPDOWN TYPE LVC_T_DROP,
    LS_DROPDOWN TYPE LVC_S_DROP.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'KG'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'G'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'B'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'T'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    CALL METHOD GRID->SET_DROP_DOWN_TABLE
    EXPORTING
    IT_DROP_DOWN = LT_DROPDOWN.
    ENDFORM. "set_drdn_table

  • Can I add or edit Keywords and captions from within the Map module?

    I frequently find a need to edit or add to the caption while reviewing  and geotagging photos in the Map module.  Constantly toggling between modules is inconvenient.  Is there a way to add/edit captions or keywords while working in the Map module  (or view the map module while working in the Library?
    Thanks!
    Steve

    thank you
          From: Modesto Vega <[email protected]>
    To: Steve Murray <[email protected]>
    Sent: Thursday, January 29, 2015 3:27 PM
    Subject:  Can I add or edit Keywords and captions from within the Map module?
    Can I add or edit Keywords and captions from within the Map module?
    created by Modesto Vega in Photoshop Lightroom - View the full discussionYou should be able to change the title, the caption, the sublocation, the city, the state/province, the country, the ISO country code, the altitude, the direction, and a few other fields. However, you cannot add keywords. It would be real nice if Adobe could add this to the Map module. If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7145077#7145077 and clicking ‘Correct’ below the answer 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: Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7145077#7145077 To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"  Start a new discussion in Photoshop Lightroom by email or at Adobe Community For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • For iTunes Match, how come some songs "match" on an album and other songs on the same album "upload" without matching?

    For iTunes Match, how come some songs "match" on an album and other songs on the same album "upload" without matching?  All songs are available on iTunes.  I don't get it!  Any way to manually match songs that iTunes apparently can't match?  I have hundreds in this unmatched state.

    gsl wrote:
    Shazam has NO problem determining what these songs are. Maybe Apple needs to consider licensing their technology as it seems MUCH more accurate than what they are doing.
    You aren't comparing like with like.
    The main task that Shazam has is to identify the name or a track and the artist. I believe that it suggests the album as well, but if it gets that wrong then it doesn't really matter too much.
    With iTunes Match, getting the album (i.e. identifying which version it is) is much more important. If it gets that wrong then it breaks up the flow of an album. This makes the task that match has very much harder.
    In fact, there is a strong argument to say that currently the problem iTunes has is that it is matching too many songs, resulting in matches from different albums.
    I'm sure that match is not struggling to identify whether it has a song or not, but whether it has the correct version of a song. When you introduce different masterings into the process then, depending on the thresholds set, it is probably correct in concluding that it hasn't got a particular version, even if you think it has.
    The solution would appear to me to be a tweaking of the matching thresholds along with the ability to force an upload, but we just don't know what restrictions they have (remember that if Shazam gets it wrong the it doesn't present you with a copy of a new track that you didn't have previously). It is almost certainly not just a case of improving their technology.

  • My Ipad did work on my wireless at home and works on other wireless but no longer at home. My IPhone works at home and others can use the wireless Confused that it did work and now does not?

    My Ipad did work on my wireless at home and works on other wireless but no longer at home. My IPhone works at home and others can use the wireless> Confused that it did work and now does not?

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    Additional things to try.
    Turn Off your iPad. Then turn Off the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    On your iPad go to Settings > General > Reset > Reset network settings and see if that enables you to connect.
     Cheers, Tom

  • I am considering buying an iPad 3. I have an iMac with OSX 10.6.8. On the iMac I have many photos and work with iPhoto and Photoshop Elements on the computer. Can I interchange or transfer photos and other work from the iMac to the iPad? How?

    I am considering buying an iPad 3. I have an iMac with OSX 10.6.8. On the iMac I have many photos and work with iPhoto and Photoshop Elements on the computer. Can I interchange or transfer photos and other work from the iMac to the iPad? How?

    velma Monreal wrote:
    I am considering buying an iPad 3. I have an iMac with OSX 10.6.8. On the iMac I have many photos and work with iPhoto and Photoshop Elements on the computer. Can I interchange or transfer photos and other work from the iMac to the iPad? How?
    Yes you can. In iPhoto create a Album with the photos you want in it. You can drag them from your Events folder. In iTunes with your iPad connected go to Photos by cliking on your iPad. You can then select the album or events you want.

  • Trying to move my iTunes Music and other media from the main drive on my pc to an external hard drive but iTunes is not recognizing the new file location?  Ideas?

    Trying to move my iTunes Music and other media from the main drive on my pc to an external hard drive but iTunes is not recognizing the new file location?  Ideas?

    Hello there, Underwriter.
    The following Knowledge Base article provides in-depth instructions on how to migrate your content to an external drive:
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/ht4527
    Particularly of note for your situation:
    External drive
    This option requires more work than Home Sharing, but it creates a backup of your iTunes library on the external drive in addition to moving your content.
    Notes before you start:
    You can use most iPods as an external drive.
    Windows operating systems don't recognize Mac OS-formatted disks (HFS or HFS Plus formats). Because of this, you can't use a Mac-formatted iPod or external drive to move your music to a Windows PC. See iPod: How to determine iPod's hard disk format if you're not sure how your iPod is formatted.
    Mac OS X can read Windows-formatted iPods and drives. This means there are many ways to migrate your information from your old Windows-based PC to your new Mac.
    Mac OS X: To be sure external drives appear on your desktop, choose Preferences from the Finder menu. Be sure the options for "External disks" and "Hard disks" are enabled.
    Part 1: Locating and consolidating the iTunes Media folder
    Part 2: Copy iTunes folder from the old computer:
    Part 3: Get iTunes ready on your new computer
    Part 4: Back up any music that's already on your new computer
    Part 5: Copy music to your new computer
    Part 6: Add preexisting music that was on the new computer back into the library
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • How do I transfer my photos and other items from the cloude to my Dell desktop

    How do I transfer my photos and other items from the cloud to my Dell
    desktop

    Hello johnfromwildomar,
    Thank you for using Apple Support Communities.
    You can use the following articles to help you set up to share photos from iCloud to your computer.
    iCloud: Set up My Photo Stream
    iCloud" My Photo Stream FAQ
    Regards,
    Jeff D. 

  • My location service is not working from the day one the response is that (cannot able to determine the location) .What can i need to do to see my location in maps and other application even the location services is enabled in the settings?

    From the day one the response is that (cannot able to determine the location) while using ios5.1 .What can i need to do to see my location in maps and other application even the location services is enabled in the settings?.Which means that is there is any problem in my ipad ? currently running on IOS 6.

    Your location is determined from a location database which contains the MAC addresses of routers and their physical location. A MAC address is a unique number which is built-in to all network devices when manufactured. The database is built and updated by actually driving around and mapping router locations.
    Since you just moved the location of your router has not been updated in the database and when you use Maps you will see your old location.
    If you go outside your house you can be correctly located because your iPod sees other routers which are in the location database. Note that you do not need to be connected to a router for your iPod to see it and obtain its MAC address.

  • How can I stop my iphone 4s from asking for my icloud, yahoo and other passwords all the time?

    How can I stop my iphone 4s from asking for my icloud, yahoo and other passwords all the time?

    As long as you share that AppleID for iCloud, you cannot.  You are sharing a a single iCloud account and sync services.  The only thing you can do is get a second AppleID and use it with iCloud - you do not have to use that new AppleID for anything but iCloud (ie. you can still share an AppleID for iTunes and App store purchases).
    P.S. I am assuming you both want to sync your contacts with iCloud?

  • Application is throwing NSAPI and other errors after the migration

    We started seeing NSAPI and other errors after the migration of new codes and recently make some changes
    1) During the migration, all the 4 WLS cluster instances were bounced simultaneously. What is the best practice and recommendation from BEA Oracle? Do we need to bounce it one by one for any specific reason?
    2) we recently introduced the 4th weblogic cluster instance on Solaris 10 zone. All other WLS instances are running on Solaris 8.
    Is it okay to have two different OS versions( Solaris 8 and Solaris 10) and different hardware to host WLS cluster instances? Does BEA Oracle support this kind of configuration?
    3) We are consistently seeing below errors in the iplanet web server error logs even though site is working fine
    [11/Sep/2009:08:53:50] failure ( 4453): for host XX.XX.XX.XX trying to POST /servlet/FSO, wl-proxy reports: exception occurred for backend host 'YY.YY.YY.YY/23120/0': 'CONNECTION_REFUSED [os error=0, line 1732 of URL.cpp]: Error connecting to host YY.YY.YY.YY.YY:23120'
    Do we need to upgrade our WLS proxy plugin? . Current version of WLS proxy plug-in is libproxy_61.so. Our Weblogic version is WLS 92 MP2
    I'll really appreciate if some can anwsers those questions

    OK booted in to Virtualbox, seems too be working fine this way, maybe it is the ATi drivers
    any Help would be appreciated

Maybe you are looking for

  • How can I delete an old file from my library on iTunes

    Occasionally I have to replace PDF manuals with ones that have been updated.  But after I sync the new file the old one remains on my Mac itunes library.  How can I delete the old file?  So far all I do is deselect the old file but it's still there. 

  • Unable to Edit or Delete in Calendar - Normal?

    Just got my iPhone and am not certain I like it. I am still having to carry my Palm Treo. Back to carrying a phone AND a PDA. Why? The calendar in the iPhone does not allow me to edit, move or delete calendar entries. There is no edit button when I t

  • Crash when viewing

    When viewing phots in slide show on MBA iPhoto shuts down. I have not used iPhoto previously for viewing, but instead mostly for organizing photos. Transfered a few large sets of photos to view on TV using MBA. Worked fine for about 50 photos but now

  • Getting following error when running eg. Applet + JMS. Why?

              Im trying to run the example Applet provided in the bea documentation in Weblogic           8.1, but im getting the following error. Can someone shed some light on the matter.           Thank you all for           your time           java.l

  • Mac Pro vs Loaded iMac

    Okay, so I have the same dillema that a lot of others have about the new Mac Pro. I have been waiting for the release for some time and although I like the Mac Pro it leaves some lingering questions.  Do I buy the new Mac Pro or a pimped out 27" iMac