Add metadata/XMP to psb file

Is it possible to add metadata/XMP to a .psb file? In Bridge the File Info Panel option is greyed out, and so are all the fields in the metadata panel.
If it's not possible to add metadata to a psb file, can anyone suggest a suitable solution so that when I save a JPEG from the psb file, I can easily get the metadata for the image into that JPEG file? I want to make sure that if I later make some changes to the psb and re-save as a JPEG, all the metadata that was in the original JPEG would not get lost (or if it does get lost, there's an easy way to add it back again).
Thanks
Dave

Thanks for the info, I tried saving a RAW file as a psb like you suggested, and it did indeed let me add metadata in Bridge.
So I did some more testing, and I still have no idea why I can't add metadata/XMP to these two psb files I have. They were both created by PTGUI, but I just tried creating a new psb file with PTGUI, and I could add metadata to it okay, so it doesn't seem PTGUI is causing the problem. I also tried making the file large dimensions and megabytes wise (like the two problem files), and still I could add metadata to it okay, so it doesn't seem that large file size or dimensions is the problem either.
So the solution seems to be to take a new psb file, copy all the layers from the problem psb into it, and then save the new psb file and delete the old one, then I can add metadata to the new psb file okay.
Thanks for the help
Dave

Similar Messages

  • Add metadata to Flash flv file?

    I am trying to add metadata to a Flash Video file (in hoping Google can index my video).  I have Premiere CS3, and in the help menu it says, "Using Adobe Media Encoder, in the Export Settings dialog box, select XMP Info on the settings tab menu".
    For the life of me, I cannot find the XMP setting tab.  Anyone know the best way to accomplish this task?
    Thank you!

    I do not use CS3 but i think its under the little wing menu next to 'Others'
    Looks like this:

  • How can I add metadata to a MTS-file in Adobe Bridge?

    Hello,
    I want to add some tags to my Videos. Those are MTS-files.
    Is this possible in Bridge? How can I do this? Or do I need another programm for this?
    Thanks for your help!

    I want to add some tags to my Videos. Those are MTS-files.
    Is this possible in Bridge? How can I do this? Or do I need another
    for this?
    Don't think Bridge and .MTS files are a good match but don't use those file (nor much video at all, mostly photography) myself and can't check.
    But you can try it yourself very easily.
    To be sure make a back up so when it does not work nothing is lost. Point Bridge to the folder with MTS files (use the folder panel for quick navigation on your HD) and when you can see a preview (or file thumb) check the metadata panel IPTC or other fields.
    If you see a pencil at the right side of the panel for a field click on it and you can add info, if there is no pencil you can't.
    Also check this thread from Adobe Premiere
    http://forums.adobe.com/thread/784613

  • Editing Metadata in PSB files

    My production artist brought this to my attention: He is unable to
    add metadata to PSB file formats through Bridge (we are currently using CS4).
    Has anyone else experience this issue? Is XMP for this format not supported in CS4?
    Any ideas on how to work around this? I haven't asked him to see if it's possible to just open the PSB and add the data via the File Info. But this is a bit cumbersome since the PSB file would need to be open in PS.
    Thanks,
    Lisa

    Actually you can add metadata to a psb file (that is the editable fields in
    IPTC core in the metadata tab), You can also view the other metadata.
    First of all the file must not be locked (but obvious you have checked that
    already)
    But probably the file is to large to show in Bridge as a preview or a
    thumbnail. Find the file size of the largest psb file you are using and in
    Bridge Preferences go to the thumbnail section. Inhere change the 'process
    no files large then' field a little above the largest file size.
    Now Bridge needs to cache the file first. This takes time (the large the
    file the longer) and you might even need to use the right mouse button to
    choose purge cache for selection.
    When the thumbnail in the content panel is rebuild you should be able to add
    metadata. (I just checked it again on a 4 GB sized psb file and that still
    worked )
    My production artist brought this to my attention: He is unable to
    add metadata to PSB file formats through Bridge (we are currently using CS4).

  • [svn:fx-trunk] 12379: Add [ExcludeClass] metadata to new utils file.

    Revision: 12379
    Revision: 12379
    Author:   [email protected]
    Date:     2009-12-02 10:33:56 -0800 (Wed, 02 Dec 2009)
    Log Message:
    Add metadata to new utils file.
    QE notes:
    Doc notes:
    Bugs: SDK-23930
    Reviewer: Deepa
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23930
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/utils/MaskUtil.as

    Update: actually this has nothing to do with i915 (I can see the issue earlier in the journal), and after hours of downgrading/reupgrading madness the problem just disappeared... It was probably a bug of Firefox because of the number of tabs opened in the same time or something like that... Maybe related to a website in particular, since I saw some libmozalloc segfault in the log. Anyway, topic invalidated.

  • Adding/Reading XMP Metadata in a psd file

    Hi,
    I'm having some troubles to understand how to add and read XMP metadata on a psd file. I followed the Panel developer guide tutorial, and try to look on the internet for some answers, but I'm still stuck ...
    Here is the simple example I'm trying to make (using part of the code from the panel developer guide) :
         The function loads the XMP Script Library.
         @returns True if the XMP Script Library was loaded successfully.
         @type Boolean
    function loadXMPLibrary(){
         if ( !ExternalObject.AdobeXMPScript ){
              try{
                   ExternalObject.AdobeXMPScript = new ExternalObject('lib:AdobeXMPScript');
              }catch (e){
                   alert("Can't load XMP Script Library");
                   return false;
         return true;
         The function unloads the XMP Script Library.
    function unloadXMPLibrary(){
         if( ExternalObject.AdobeXMPScript ) {
              try{
                   ExternalObject.AdobeXMPScript.unload();
                   ExternalObject.AdobeXMPScript = undefined;
              }catch (e){
                   alert("Can't unload XMP Script Library");
        Try to put a new property into the metadata
    if( app.activeDocument || !loadXMPLibrary()){
        var xmp = new XMPMeta(activeDocument.xmpMetadata.rawData);
        xmp.setProperty( XMPConst.NS_EXIF, "myProperty", "test" );
        activeDocument.xmpMetadata.rawData = xmp.serialize();
        unloadXMPLibrary();
        Window.alert(activeDocument.xmpMetadata.rawData);
    I don't really know where I'm wrong, could you help me please ?
    Thanks,
    Julien

    Rather mess with EXIF and Dublin Core namespaces, wouldn't it be better to create your own?
    IE:
    #target photoshop
    addtoMeta();
    function addtoMeta(){
    if(!documents.length) return;
    if (ExternalObject.AdobeXMPScript == undefined) ExternalObject.AdobeXMPScript = new ExternalObject("lib:AdobeXMPScript");
    var xmp = new XMPMeta( activeDocument.xmpMetadata.rawData);
    var myNamespace = "http://my.fantastic.newspace/";
    var myPrefix = "nsfns:";
    XMPMeta.registerNamespace(myNamespace, myPrefix);
    xmp.setProperty(myNamespace, "myProperty", "A Test String");
    app.activeDocument.xmpMetadata.rawData = xmp.serialize();

  • File importer detected an inconsistency in the file stucture of (file name). Reading and writing this file's metadata (XMP) has been disabled.

    I have duplicated a project to work on another computer. The project opens fine but when I import new footage/audio files I get this message. "File importer detected an inconsistency in the file stucture of (file name). Reading and writing this file's metadata (XMP) has been disabled." Then I can't play my timeline and Premier Pro crashes.  I have to force quit and restart my computer to continue working. What does this error really mean? How do you rectify?
    Our workflow requires that we duplicate projects to make updates because we are frequently revising but need to keep original project unchanged and intact.

    I have a similar issue and message , but occurs when I import AVI clips from OnLocation CS4 to Premier Pro CS4.

  • Replace Metadata in Bridge CS4 appears to truncate 5.9GB .PSB File; Does CS6 do this too?

    I am running Photoshop CS4 on a MacBook Pro with Mac OS X 10.6.8, and ran into a problem with Bridge. I would like to know if this problem occurs with Photoshop CS6. Here's the sequence of events:
    1.  I have a 5.9GB .psb file created with PS; it loads into PS cleanly - no errors.
    2.  In Bridge, I create a metadata template, and apply it to my .psb file using "Replace Metadata".
    3.  The "Replace Metadata" operation completes quite quickly, no error messages
    4.  Immediately after the "replace Metadata" operation Bridge reports that my 5.9GB file is now a 1.6GB file - 4.3GB smaller!!
    5.  Bridge displays the updated metadata, no visible indication anything is wrong.
    6.  Now the file will not open in Photoshop - the read starts, but errors out with "unexpected end of file".
    7.  I restore the 5.9GB file and can open it in Photoshop without problems.
    Update:
    This problem is not specific to the "Replace Metadata" function in the Bridge menu.  I get a similar result by updating the metadata for this file in the Metadata Panel; the resulting file is truncated, but appears to be a different size this time, and it will not open in Photoshop - same error message as before.
    This is a 34-image 36856px X 7464px panorama

    Thanks for your suggestion, appreciate your effort to help.  The link you provided seems to focus on transfer rates and performance; it does take a while to write or read this file, but I expect that.  I'm not using RAID of any flavour.  I do not expect file corruption, which is what I believe is happening (and PS is reporting).
    I have a number of large panoramas; this is the largest.  I believe the largest of the others is a bit over 3GB; I have no difficulty updating the metadata in the other panoramas through the metadata panel or with "Replace Metadata".  All of these files live on the same drive (therefore connected to the same firewire port).  They are backed up to a USB drive with Time Machine, and I've recovered the 5.9GB file from the Time Machine drive a number of times.  I can always read the recovered file with PS, and the size after recovery is always exactly the same.  When I realized that the size of my 5.9GB file changed during/because of the metadata update, I reverted to an earlier stage in the post-processing, got a 3.8GB .PSB and put a copy on DVD; the DVD copy is good, and I can easily and quickly reconstruct the 5.9GB file by applying the same actions used the first time (the 5.9GB file has three layers that are not in the 3.8GB .PSB).  I have not tried to change metadata in the 3.8GB PSB, and can't try that for the next few weeks as I'll be travelling.  The only thing I'm certain of is that updating the metadata in the 5.9GB .PSB reduces the size to 1.6GB (put text in Headline field through Metadata panel) or 1.4GB ("Replace Metadata" in Bridge Tools menu), depending on how the update is done.
    So, the 5.9GB file has survived several complete transfers (PS=>Disk, Disk=>Time Machine, multiple Time Machine=>Disk, PS=>Disk to 3.8GB after deleting layers, and Disk(3.8GB)=>DVD) with no signs of corruption.
    It's very hard to accept the idea that there's some kind of hardware problem that afflicts just one file.  The 5.9GB file is output from PS CS4, and I can read it back into PS with no problem. 
    I'll watch this forum for a few days to see if there are more answers until I have to travel.  If not, I'll figure it out another way and report a bug in CS6 if that appears to be appropriate.

  • Rreading and writing this file's metadata (xmp) has been disabled. Renders unplayable/corrupted files

    Hi everyone,
    I've been using Premiere Pro CC for a while now, as I have a YouTube channel, and I've rendered, exported and edited around a dozen different videos, and have had no issues until now. I haven't done anything to my settings, but randomly, I am now unable to export any videos. I've tried exporting multiple times, using different formats, and I still get the same error:
         File importer detected an inconsistency in the file structure of [FILE NAME]. Reading and writing this file’s metadata (XMP) has been disabled.
    I've looked around, and I've seen just about no help in fixing the issue, so I was hoping that someone could help me out.
    Some of my computer details are:
    Premiere Pro CC
    Toshiba Z10T
    Windows 8.1
    Hopefully that's enough to go by
    Thanks guys

    After moving LR3.5 and catalogs to a new computer running Windows 7 and LR from an XP system, I suddenly had 6400 files with exclamation points--failure to synch metadata or similar warnings on every file.  If I thought I had one without the error, if I clicked on it--there error showed up.    It was very frustrating and I was wondering if I was going to have to keep my old computer forever.
    After I searched for a couple of hours and found that there have been several discussions concerning failures to sync xmp sidecar files and failures to write metadata on this forum and others.  Some of the postings had angry rants against Adobe.  On my system, it was not Adobe that should be blamed, it was Microsoft:
    On one of the Adobe threads, I noticed a post that the person had multiple external drives and the problem did not show itself on one drive.  The person said that changing the permissions on the other hard drives solved the problem.   I tried this and it worked for me.  I did not have this problem with this same drive on my XP system.  I will try to find that other forum and thank the person who gave me the solution.

  • XMP metadata lost in PNG files

    Hello,
    My XMP metadata is lost from a PNG file if the file is modified and saved. Here is what I am doing
    1. Put some metadata in a PNG file using m_xmpFile.OpenFile( FileName, kXMP_PNGFile , kXMPFiles_OpenForUpdate)
    2. Edit this file in Photoshop (changed the brightness and contrast of the file)
    3. Saved the the modified files.
    All my XMP metadata is now lost fromt the file.
    is my implementation wrong? Is there some other way to stamp metadata in PNG files?
    Thanks,
    Hitesh

    Info: Mac, Yosemite, Bridge CC
    I have an extensive collection of PNG files that HAD been keyworded in Bridge (XMP). I noticed several days ago that the XMP of all those files is now missing.
    When attempting to assign keywords back in, I also get the message: "The file ####.png canot store XMP metadata. No changes will occur." Weird. Like you said, it's looking like a bug.
    And here's the kicker... if I duplicate the PNG file (Edit > Duplicate), the "copy" DOES contain the original XMP that went missing.
    I really don't want to have to manually duplicate all my PNG files just to regain the metadata. Any brainy solution? I'm attaching an example of the original PNG (missing XMP) and the duplicated PNG (magically restored XMP).

  • Using photoshop elements 6.0 - converting raw photos files to dng, how/where do I add metadata?

    Using photoshop elements 6.0 - converting raw photos files to dng, how/where do I add metadata?

    Metadata can be added in Properties panel. select a file and hit Alt+Enter. It will open up Properties panel. You may drag drop tags on the media and do File > Write tags info to files to write tags in file metadata.
    Thanks
    Andaleeb

  • Is there any way to change IPTC metadata in psb files?

    I created an file by combining a number of images into a panorama. As is expected, the panorama picked up the IPTC metadata from one of the source images, and saved it into the resulting file.
    If I had saved the file as a psd or tiff, I could easily use Bridge or Lightroom to change the IPTC metadata after saving the file. But Lightroom doesn't even read psb files, and Bridge won't let me change any of the metadata (the metadata appears to be read-only).
    The only way I could figure out to change the metadata was to use exiftool. It seems very strange that a third-party tool is required to make rather simple changes to what is (I believe) a proprietary file format of Adobe. Or am I missing something?
    Thx for any advice

    You might get a better response in the Bridge forum...
    http://forums.adobe.com/community/bridge/general?view=discussions
    One thought...
    What size have you got in Bridge :-
    Preferences - Thumbnails - Do Not Process Files Larger Than:
    Maybe the file is larger than the above?

  • Why can't I add metadata to my files?

    I have uploaded my pictures to an external hard drive then opened the files in bridge to add metadata.  When I try, it says, "file cannot be modified".  Any ideas on why this happens or how fix it?

    Any ideas on why this happens or how fix it?
    At first glance you don't seem to have the correct write permissions to your External Disk. Check the disk and folders and also check if the files are not locked (those will show with a lock icon in Bridge)
    You have to have admin privileges (read and write) to make changes to the files.

  • How to read XMP metadata of an indd file using Actionscript

    Hi All,
    I am trying to read XMP metadata of an indd file using CS Extension Builder in Flash Builder 4.5.
    The documentation has many class like XMPmeta, XMPStruct, etc.
    I have got the currently opened document in InDesign as follows:
    var myDoc:Document = InDesign.app.activeDocument();
    And a new XMPmeta object is created as follows:
    var myXMP:XMPMeta = new XMPMeta();
    How to initialize document's xmp metadata in the XMPMeta object? Or is there any other way to get the XMP metadata of currently opened document in InDesign?

    I have found that the XMP data of an InDesign document can be retrieved in actionscript as follows:
    InDesign.app.activeDocument.metadataPreferences
    This returns the MetadataPreference object.
    But I am not able to iterate each namespace in the xmp. There isn't any XMPFile class which allows me to serialize the object to xml file so that I can iterate all elements in the XMP.
    I could not relate class like XMPMeta, XMPProp, etc. with the MetaDataPreference class. So, how to obtain the entire xmp packet from the MetadataPreference object?
    Can anyone shed light on this?

  • Can "Add w/o copying" add metadata to source files on HD?

    Hi all.
       I wonder, is there a way to add metadata to source files on a hard drive that you are copying into Lightroom without adding?
    Bill

    Bill Truran wrote:
    I have 2 Lightroom catalogs of about 65,000 images.
    Therefore, I only import by copying (with metadata) without moving.
    My question is: If I import in this way, can I write the same metadata to the files on the hard drives?
    the simple answer is YES, you can write metadata to files. (I don't know what you mean by "same" metadata)
    What I don't understand, because you probably need to explain in more detail: why 2 catalogs are relevant to this issue? and what the word "same" is doing in your question?
    It sounds like you are trying to synchronize the metadata between two catalogs. If that's what you are trying to do, it would simply be easier to put everything into a single catalog, and not have this issue at all.

Maybe you are looking for

  • How to connect a E1200 wireless router to a machine tool network for wireless communications

    Hello all, I am new to the forum, hope someone can help me out. I am wanting to connect my E1200 wireless router to a machine tool in our factory that has programmable controllers and is connected to the machine components via ethernet connections. T

  • Listner Err

    Kindly provide solution to solve these listner error, when i trying to start up listner it showing the error like these LSNRCTL> START LSNRCTL Starting tnslsnr: please wait... TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Production System paramet

  • Delivery does not contain items to be picked

    Hi I have created Stock Transport Order (STO) and then Delivery Note with VL10g. In Delivery Output EK00 (Picking list Printing ) gets populated along with EKSU (Picking List EDI output). But EK00 only turns green and EKSU turns Red saying that "Deli

  • "No SID found for value '*00 ' of characteristic 0UNIT ".

    Hi, while loading data from ODS to cube iam facing load issue like "No SID found for value '*00 ' of characteristic 0UNIT ". pls help me it is urgent. i will assign points your help will be highly appreciated....

  • Save HTML data in a Oracle Column

    what would be the best way to Save HTML data in a Oracle Column? while varchar2 can be used for upto 4000 bytes. it would still mean escaping a lot of special character. Is there a better way to do this? any help would be greatly appreciated.