Skip to main content
Participant
June 30, 2018
Answered

Incorrect file info

  • June 30, 2018
  • 5 replies
  • 780 views

I took a number of photos and processed them in Photoshop. Now the file info says author/copyright is somebody who I have never heard of. I can correct the info one file at the time but not simultaneously correct the info for every file in a folder or every file in a set of folders in a single operation. I have dozens of files with this problem. but there are dozens of files with this error. How did this error occur. What is a fast way to correct the author and copyright fields for all the photos.

    This topic has been closed for replies.
    Correct answer SuperMerlin

    If it is a second hand camera it could contain the last owners information, so check the camera.

    5 replies

    Kukurykus
    Legend
    June 30, 2018

    Paste it to Notepad and save as "Author and Copyright.jsx" (incl. double quotes) in Adobe Startup Scripts folder, so 'C:\Program Files\Common Files\Adobe\Startup Scripts CC\Adobe Bridge CC 2018', and then reopen Bridge. Right click on the folders containing (subfolder with) images where (some) have written Author and Copyright fields and select last item from the commands list: "Author and Copyright". This functionallity will be always available in your Bridge as far as you keep the 'Author and Copyright.jsx' script in mentioned folder.

    If the 'Author and Copyright' item won't be at its place then go to Edit/Preferences/StartupScripts. Then find checkbox with item name and check it. Reopen Bridge and script should be loaded.

    #target bridge

    NtC = new MenuElement('command', 'Author and Copyright', 'at the end of Thumbnail')

    NtC.onSelect = function() {

         function rec(sF, dst, i) {

              if (fld = io(sF)) sF = sF.getFiles(); for(; i < sF.length; i++) {

                   if (io(fof = sF)) dst.push(fof.name), rec(fof, dst, 0)

                   else if((r = /.jpe?g$/i).test(fof)) {

                        (md = new Thumbnail(fof).synchronousMetadata)

                        .namespace = 'http://ns.adobe.com/photoshop/1.0/'

                        md.Author = '', md.Copyright = ''

                   }

              }

              return dst

         }

         function io(v) {return v instanceof Folder}

         if (len = (sel = (ad = app.document).selections).length) {

              for(h = 0; h < len; h++) if (io(spec = sel.spec)) rec(spec, [], 0)

         }

    }

    Participant
    June 30, 2018

    Thanks for the script. I decided to just correct the info in blocks of 10-20 files at a time which always worked. Got it all done. Bridge sporadic if I tried to change more than about 20 files at once.

    Participant
    June 30, 2018

    What do you mean by blocks? A folder with 10 - 20 files? So you mean you did that with a script or other way? and if by a script I understand it failed for more than 20 files when running it on a folder (with subfolders) containing your files?

    If there was more than 20 files I guess it could take a time before script finished its job, so at the time of working you saw Bridge freezes. If there were many files it wouldn't let for interaction untill metadata in all files was changed.

    I didn't try it on more than 20 files though, I have to try it. Btw how many files in sum you had to get processed?


    By blocks I mean if I had a folder with 80 photos in it, if I selected all 80 files and tried to type in new data into the Author or Copyright field, Bridge would not show any characters as I tried to type in the new data. But If I manually selected a 'block' of 10 photo files I could sucesfully fill the fields in Bridge File Info and update. thanks. Dan

    On Saturday, June 30, 2018, 1:02:34 PM PDT, Kukurykus <forums_noreply@adobe.com> wrote:

    Incorrect file info

    created by Kukurykus in Photoshop - View the full discussion

    What do you mean by blocks? A folder with 10 - 20 files? So you mean you did that with a script or other way, and if you by a script I understand it failed for more than 20 files when running script on a folder (with subfolders) containing them?

    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/10476006#10476006 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/10476006#10476006

    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 by email or at Adobe Community

    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

    This email was sent by Adobe Community because you are a registered user.

    You may unsubscribe instantly from Adobe Community, or adjust email frequency in your email preferences

    Participant
    June 30, 2018

    I discovered that the previous owner of the D810 had set the copyright and author in the camera. I fixed that issue. Now I am hunting for a fast way to correct all the photos in Bridge. If I go into a folder and select all photos and try to change the data in mass I find I can't type any characters into the Author and Copyright fields.

    SuperMerlin
    SuperMerlinCorrect answer
    Inspiring
    June 30, 2018

    If it is a second hand camera it could contain the last owners information, so check the camera.

    Participant
    June 30, 2018

    You are right - that was the case. thanks.

    D Fosse
    Community Expert
    Community Expert
    June 30, 2018

    daniels40941523  wrote

    Now the file info says author/copyright is somebody who I have never heard of.

    That would probably be the person who originally created them and therefore holds the copyright -

    JJMack
    Community Expert
    Community Expert
    June 30, 2018

    I would think that would be easy to do using the bridge select all the file then edit their metadata bridge should change all the selected files metadata to what you edited.

    JJMack