Searching metadata?

I am currently using Bridge as my photo management software. Until recently, it was sufficient in terms of keeping track of my photos, but now we're exploding at the seams and need access from several terminals. However, the most important part of Bridge, for us, was utilizing the metadata tags and being able to search with metadata tags.
Is there a way to do this in the Creative Cloud currently? Ultimately, my company needs to be able to access all our stock photos from several places and multiple users. Creative Cloud is the best match for being able to take care of all our needs, but we're missing one crucial part.  We could edit descriptions and add the information we're missing, but redudency is something we're trying to avoid.
Thanks!

Is this a feature that could be added sometime in the future? I think Creative Cloud is incredible, but I am really wishing searching metadata was possible.

Similar Messages

  • How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

    How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

    How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

  • Search metadata in Premiere that I create in Prelude

    So I am trying to get the video team more organized here where I work and Prelude seemed like a pretty awesome tool ... at first.  Call me crazy or maybe I am just completely missing this but when I ingest clips in Prelude and add custom metadata how would I search by this metadata in Premiere?  Isn't this the point of taking the time to add metadata? 

    In the upcoming release of Premiere Pro you will be able to search all of the metadata created in Prelude.
    Hope this helps!
    Michael

  • Searching metadata added in a Custom Panel

    Hello,
    I have created a Custom Panel. Only problem is that when I try to do a search through the File Browser, it does not seem to search any of the data I entered into the custom fields.
    Any thoughts?
    thanks!
    -Alicia

    Yes, I can see all the data values. They are under the Advanced > XMP Core Properties. I have the fields of EventName, EventDate, People, BuildingLocation. All the data shows in the advanced tab, and if I export the data. But in the file browser, even if I select "Other Metadata" in the search field, it won't pull up any images in the search results.
    If there was something wrong with how I wrote the custom panel (which is possible since I really don't have experience in that sort of thing) then it would have even showed up in the advanced tab, right?

  • Writing & Searching Metadata

    I've ingested a large batch of h.264's using Prelude (without transcoding) and I've written lots of metadata into the 'Dynamic Media' and 'Script' schemas.
    I'm now using the files in Premiere and I'm not able to search for some keywords that I know have been assigned.
    I'm also unable to write any metadata at all to P2, .MXF files in Prelude.
    I was able to write metadata after I'd tried transcoding a couple of MXF's but I'd rather not have to do that.
    Any ideas?
    Thanks,

    Hi Mark,
    Thanks for the response and advice.
    I have tried using the CMD+F function to search which did successfully search the Script schema, although this search method is not realistic as it only produces ONE result at a time.
    I have logged a large amount of media and it would be incredibly inefficient to sift through each clip one at a time as opposed to a bin search which immediately FILTERS the results so I see everything that's relevant and nothing that isn't.
    The good news I guess is that the Adobe search engine IS functional in searching the script schema but somehow not from the main search field.
    BTW, I did speak to Ankit Singh from Adobe Support who was trying to replicate the problem but I've not heard back from him ((Case #0186059787)
    Thanks,

  • Search metadata by default in Bridge CS5

    I have metadata embedded into my images in a custom xmp namespace that I've defined. Unfortunately, Bridge does not search the metadata by default when I perform a search.
    Instead, I have to open up the find window and explicitly tell it to include all metadata fields in its search in order for it to work the way I want it to.
    Is there a way to make this the default behavior so that anytime I search using the search bar in the top right corner, it looks at the metadata by default?

    You'll get the best result by asking in the Bridge forum:
    http://forums.adobe.com/community/bridge/general?view=discussions

  • Problems Searching metadata in a Final Cut Project Uploaded to FCS

    We had an intern go through some footage that was on our FCS and load it into a Final Cut Pro project. He then went through and cut up the footage, made it an Independent Clip in Final Cut, and then Renamed the clip. He created multiple clips in Final Cut which all link back to the big master clip which is in Final Cut Server.
    I then just uploaded the Final Cut Project which then created elements for all of the independent clips that were made in Final Cut. Upon closer inspection of the Final Cut Project in FCS, I noticed that in the elements of that project, it created all of the clips that we made independent. Great....almost. Two problems arose. All of the proxy files for those elements all have the same thumbnail based on the master clip, but do have the In/Out points when looking at the proxy file. Can you get the proxy file just to encode the In/Out points and make appropriate thumbnails?
    Problem 2:
    With these elements, when I perform a search with the exact filename of the element in the Final Cut project, it will only show me the Final Cut project. I have to open up that Final Cut project and then look into the Elements Folder of that project. Is there a way to search elements of a Final Cut project where the elements are reference files or metadata of a master clip within Final Cut Server?
    If this doesn't make sense, I'll try and re-explain.

    Yes, I did, but it doesn't show the element only the project and the master clip. In order to actually find it, I have to double-click the found Final Cut Project and then look into the elements tab. I'm trying now to figure out a way to make a custom lookup in the advanced search parameters that would allow me to only search Elements of a Final Cut Pro Project.

  • Adding more search metadata

    How do you add more search data fields on the main page ie Producer search fields ability ? I have created all the Look up tables and gone into the permissions section and double clicked to find the search fields but for the life of me I can't seem to add or remove certain fields ... yes I have read the manual and that was more bland then chicken soup !
    Cheers

    If I understand your question correctly, there are two Metadata groups called "Production Filter" and "Asset Filter". You can add as many metadata fields to these groups as you wish. Add them, then log out of your client, and log back in. The fields you added should appear in your advanced search options.

  • JS CS3 search metadata

    Hi All,
    I'm sure someone here had posted this great code to parse a files metadata.
    function parseMetadata(xmp, tag) {
                            var re = new RegExp('<' + tag + '>(.+)</' + tag + '>');
                            var m = xmp.match(re);
                            if (!m) {
                            re = new RegExp("<[^:]+:" + tag + ">(.+)</[^:]+:" + tag + '>');
                            m = this.xmp.match(re);
                            }                        return (m ? m[1] : '');
                            };var xmp = activeDocument.xmpMetadata.rawData;var myTag = parseMetadata(xmp, "rdf:li");
    The problem I'm having is I'm adding "TAG" to the to the keywords field, and as it's sitting in the tree as shown below I am only getting the first instance of the rdf:li tag which is <rdf:li>8</rdf:li>.
    <dc:subject>
                <rdf:Bag>
                   <rdf:li>TAG</rdf:li>
                </rdf:Bag>
             </dc:subject>
    I thought I might be able to use the exec() to return a true or false but i'm just getting undefiend in the script console.
    function parseMetadata(xmp, tag) {
                                var re = new RegExp('<rdf:li>TAG</rdf:li>');
                                return re.exec(xmp);}
    Any suggestions?
    Cheers.

    Parsing metadata is not as simple as that function   "rdf:li"  is used all over the place for list items there may be multiple elements in a  list item and more then one list item as well as more then one list. I just open a raw file that has no keywords and extracted the metatdata and looked for rdf:li found data like this:
          <rdf:Description rdf:about=""
                xmlns:dc="http://purl.org/dc/elements/1.1/">
             <dc:creator>
                <rdf:Seq>
                   <rdf:li>McAssey</rdf:li>
                </rdf:Seq>
             </dc:creator>
             <dc:format>image/tiff</dc:format>
          </rdf:Description>
            <crs:ToneCurve>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurve>
           <exif:ISOSpeedRatings>
                <rdf:Seq>
                   <rdf:li>800</rdf:li>
                </rdf:Seq>
             </exif:ISOSpeedRatings>
    There are no keywords for this image but you parse function found my name..."McAssey"

  • Any Recommendation for storing and searching metadata

    Hi all,
    We upload images to the DB and extract the DICOM, IPTC, XMP and EXIF fields in the DB as xmltypes. This works good.
    Now I am wondering what the recommended way is to make these fields searchabe by the user. I have tried to create an index over those fields, which works ok, but updating them when images are uploaded or removed takes a long time (with jobs).
    Also we need to write those fields back to the image. I read the reference and saw that the example suggest to write a new XML file and then write this back to the image. I only saw the example with XMP, but I guess I can do that with IPTC too, or? If so any examples? Our application allows the user to edit and add new keywords and those fields need to be stored back to the image.
    TIA for any answers.

    OK, we only support replacing Metadata in XMP format.
    Also, we do not support replacing metadata with DICOM medical images.
    Do you have a write up of your application? If we onderstood what you were trying to do, we would be in a better position to make recommendations, like what kind of indexing to use. If possible, you could send it to me at [email protected]
    If you have interMedia requirements, send them to [email protected]
    Larry

  • Help searching metadata in finder

    Hello,
    I have a long list of movie files in a folder. They have pretty random names, but it is not something I can change. What I can do is add a specific title to 'spotlight comments' and then try and search for that specific title in spotlight when need be. I thought this would work, but I get zero results back in my serach query. Any ideas why?
    thanks
    dan

    It sounds like the Desktop folder's "bundle bit" may have become set, making it behave like a "package" instead of a folder.
    You can try to fix it with Terminal, but the needed SetFile command normally requires a prior installation of Xcode Tools. Instead, I would try the following:
    Download [Path Finder|http://www.cocoatech.com], which has a 30-day free trial period. Navigate to the Desktop folder from within Path Finder, select it, then File Menu>Get Info. If the "Bundle bit" box is checked, uncheck it:

  • Exif metadata not displayed in Metadata panel & searching

    Is there a way to customize the exif and/or IPTC data shown in the Metadata panel in LR 5?
    And is there a way to search and/or filter on metadata not in that panel?
    I needed to find some photos that have the exif category "art filter" and I cannot search for the value in that field in LR, nor does that field show up in the metadata panel. I can see it with J. Friedl's metadata plugin, or in GraphicConverter, so I know it's there. I tried searching on the text, but LR doesn't find it. What I'd really love is the feature where you have the little arrow by the metadata value in the panel and click it to filter by that criteria.
    Is there a way to get LR to recognize and display other exif or IPTC data?

    I'm not sure which metadata field you want to search -- is it the IPTC field "Category"?  That field is displayed in Metadata > IPTC panel in the right column:
    Unfortunately, that field is not searchable using LR's text search filter or smart collections. 
    In general, to view and search metadata fields not fully handled by LR, you've got to use a third-party plugin:
    - Metadata Extensions makes additional fields that LR knows about searchable using the filter bar and smart collections.
    - ExifMeta makes nearly all metadata fields viewable and searchable in LR.
    - Data Explorer lets you more quickly view, search, and browse more of the fields that LR knows about.
    - Any Filter lets you search any field LR knows about, writing boolean search queries similar to smart collections.
    These plugins have different capabilities and are optimized for different use cases.

  • Ability to search specific metadata (from all metadata)

    The ability to search metadata is currently very limited.
    I'd like to be able to search a specific metadata/exif field for text. In my case I want to search for any images that don't have copyright metadata but the scenario applies to almost any field.

    yes it does

  • How do I get rid of AOL search engine in the main search window? I selected Google search in the search engine at the right side of the page, but I want to use the window in the middle of the page, most of the time. Thanks for any help

    seems self explanatory to me. I don't know what else to say.

    You can check if you have the ZoneAlarm search engine file in the browser\searchplugins folder in the Firefox program or in the searchplugins folder in the Firefox profile folder.
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    You can delete the search.json file and possible search-metadata.json and search.sqlite files in the Firefox profile folder to reset the search engines to the default.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Firefox will rebuild the search.json file from the default search engines in the "browser\searchplugins" folder in the Firefox program and the searchplugins folder in the Firefox profile folder.

  • XMP Metadata created in Premiere not searchable with Bridge?

    I am working on a 13 episodes TV show and need to identify shot content using Metadata. Each episode will be a different Premiere Project.
    I want to be able to search through all the footage at once to find specific shot and bring them in another project if needed. So I was under the assumption that I could add values in the XMP Comment Field in Premiere and be able to search that with Adobe Bridge. I did a test and Bridge don't find anything. I tried searching "All Metadata" in the Find Dialog box in Bridge and nothing comes up. What am I doing wrong?

    XMP is a powerful metadata format and I believe that it can be written directly to any mov or mp4 format media but not other formats such as mts. I have also experimented with using Prelude, Bridge, and Premiere to try and tag my footage. The conclusion I came to was that it just isnt worth the effort yet. None of them really communicate with each other very well and the interface for searching metadata (even after painfully inputting it using their metadata panels) is slow and cumbersome. Adobe did great by creating xmp, and lots of highend propriety software solutions for broadcast seem to be using it with custom software but there is nothing at the low end for normal users. Bridge doesn't seem to have been touched in several years. Even Lightroom, which would appear to be Adobe's most natural video tagger/organiser for the prosumer, doesn't create searchable usable tag data for use with Premiere. Right now I would say a good folder structure, using Finder's tag system (if you are on a mac), and spreasdsheets are the best way to work on smaller projects. Just my $2.

Maybe you are looking for

  • Split Time Machine migration over 2 volumes?

    Hi, I've just bought a shiny new MBP with 128GB SSD, which I am migrating to from an iMac.  I have my Time Machine backup of the iMac (which I've sold).  The iMac had just under 1TB used all-in.  My intention is to keep the OS and apps on SSD and kee

  • How to dinamically name objects in a for statement using addChild

    Hi. I was wondering where did go the for statement with attachMovie from library in AS 3. I mean i was having in AS 2: for (i=0; i<5; i++) { attachMovie("sim", "sim"+i, i); Now in AS 3: for (var i=0; i<5; i++) { addChild(new sim()); I can't figure ou

  • I haven't seen anything from Apple on the Maps App being only in Chinese after iOS5 upgrade. Does anyone know anything?

    This issue is all over the forums, and google claims they are addressing it with Apple, the developer of the Google Maps app.  However, still nothing has been done, the thousands of users that depend on this app to get around in China are desparate,

  • New laptop. how do i get my itunes&music on there?

    hi i have itunes on my desktop, but i just got a laptop and i would like to put my music on my laptop, but i don't know how. i know i can easily DL itunes to my laptop, but how do i get all of the music i have already DL into itunes on my desktop on

  • HELP- need to find files

    I hope someone can help me out there! Recently I experienced a problem that Lightroom was condensing my pictures (500x500 jpeg), when I went to go in to resize to a larger size it lost the image and became blurry and noisy.... I did not save the RAW