Quandary with batch rename  of photos

This seems like it ought to be a simple task, but I'm stumped. I've got a couple hundred photos in an Event that I want to rename with a title + number. This part is easy using iPhoto's "Batch Change".
But then some time later, I need to be able to add more photos to that Event and rename them with the same scheme. The problem is that the Batch Change doesn't let me specify what number I want the new photos to start at. It just starts them at 1 so I end up with duplicate titles within the event. Is there some clever way to do this that I haven't found yet?
The Batch Change feature does allow for renaming the Title to match the Filename, but I've read that messing about in the Finder (to actually rename the files themselves) is a big NO-NO, so I don't think I want to go that route. But I haven't been able to find anything within Automator or any plug-ins that will allow for this changing of the photo title while specifying a starting index number.
Hoping someone can point me to a way to do this. Thanks.

I thought I'd follow up here in case others run into this. It turns out that you can achieve this as long as you sort it properly before the rename. An easy way to do this is to rename the newly added photos to something alphabetically after the set that is already in the event. Then just sort by title, Select All in the Event and do the batch rename again. All the original photos will retain their original titles (including the appended number) and the new ones will get new names that begin numerically after those.
It would still be way better if the batch change just let you specify the number you want to start with.

Similar Messages

  • Can't batch rename my photos

    I used to be able to batch name my photos with a title and then let i-photo put a number after it (like airshow 1, airshow 2.....) Now it won't work it looks like its going through the process but when I check info the photos still have the file names from my camera.
    I have not done any upgrades since os 10.4.2 and it took away my ability to print through my network
    Any Ideas on what would be wrong with the batch reame?
    Joe

    Thank you for the information, it helped some maybe you can help me out, I want to back up 5000 photos to dvd so I have a hard copy of them. Last week end I went through the export as originals and burned them to dvd. My problem is I have about 500 photos that have the same file name (the one given by the camera) and when I go to export them into a burn folder it says do I want to replace the photos already in the burn folder. So I am missing some pics. I thought I was double selecting the photos but I found one of the file names and did a search an 2 different photos showed up. I was hoping with batch rename the file names so this wouldn't happen.
    Any thoughts
    Thanks
    Joe

  • Photos does not display generic title of image (ex: IMG_2234) as actual title. Is there a way to batch rename all photos using the generic title?

    Photos does not display generic title of image (ex: IMG_2234) as actual title. Is there a way to batch rename all photos using the generic title?

    If you launch Script Editor and open the Help menu, you will see the APpleScript Help and a Language Guide:
    To see, which commands an application understands, open the File menu in Script editor and select Open Dictionary.  In the list locate "Photos".
    You will see examples how o script Photos.

  • Batch rename in photos app?

    Now that Apple has forced us to move from iPhoto to the new Photos app in OSX 10.3, I can't find a way to batch rename like we could in iPhoto.  Am I missing something or did Apple simply decide we didn't need this feature any longer?

    Well I have several as you can see
    So to trouble shoot this I'd start with the basics. Can you see the iPhoto Library from any app - iMovie, Pages, Mail?

  • LR5 Batch rename all photos to CAPTURE DATE+CAPTURE TIME+ORIGINAL FILENAME

    Hello there,
    Does anyone know of a way to get LR5 to batch rename all it’s photos to CAPTURE DATE+CAPTURE TIME+ORIGINAL FILENAME?
    I know the data is in there somewhere but my DATE+ORIGINAL FILENAME import rename preset has named all our photos with the date photos were imported not created (eeek!)
    Thanks in advance for any input,
    Alex

    alanterra wrote:
    If you are using Macintosh, you could also try purchasing A Better Finder Rename 9—I love it, and you can create droplets for all your file-renaming chores.
    Beware: such app is best used *before* importing.
    If you rename (outside Lightroom) after importing, your files will go missing and you'll have to re-link (or god forbid: re-import). Maybe that will be OK with you, and maybe it won't..
    Also, such app has no idea what the original filename was, so in this case it would not do what the OP wants.
    Rob

  • Help with batch renaming

    I need to create a custom renaming script and just can't seem to figure it out. I'm already in Bridge CS6 with the Batch Rename dialog open.
    My files are currently named as such: ABC-100-name-01
    I need them to read: ABC-100-01-name
    Absolutely any help is appreciated! This will be an incredible time saver.

    OK, try adding this to your scripts folder… Done slighty long hand so's you can swap about if needed…
    To run select Custom Rename at the bottom of the Tools menu…
    #target bridge
    #engine main
    if ( BridgeTalk.appName == 'bridge' ) {
              var toolMenu = MenuElement.find( 'Tools' ),
              customRename = new MenuElement( 'command', 'Custom Rename', '-at the end of toolMenu', 'muppet009' );
    customRename.onSelect = function () { renameFiles(); }
    function renameFiles() {
              if ( app.documents.length == 0 ) { return; }
              var i, count, doc, file, parts, baseName, ext, oldName, newName;
              doc = app.document;
              count  = doc.visibleThumbnailsLength;
              for ( i = 0; i < count; i++ ) {
                        if ( doc.visibleThumbnails[i].type == 'file' ) {
                                  oldName = decodeURI( doc.visibleThumbnails[i].name );
                                  baseName = oldName.match( /(.*)\.[^\.]+$/ )[1];
                                  ext = oldName.replace( /^.*\./,'' );
                                  parts = baseName.split( '-', 4 );
                                  newName = parts[0] + '-' + parts[1] + '-' + parts[3] + '-' + parts[2];
                                  if ( ext != '' ) { newName += '.' + ext; }
                                  file = doc.visibleThumbnails[i].spec;
                                  //$.writeln( newName );
                                  file.rename( newName );

  • How to batch rename iPhoto photo-files?

    Hi there,
    I do have some 15.000 photos in my library and many of them do have the same names (digital camera or digital disc transfer).
    So when I just want to copy some photos to another folder or whatever, i run into some problems because many photos carry the same name, they cant be saved into one folder.
    Do i have a chance of batch renamining the FILENAMES of my iPhoto library without damaging anything?
    Alexander

    You can select the files you want to rename, right click and choose "Batch Change". Select the title, select Text, and then type in a name... click on the checkbox to append a sequence number to the photo.
    OR if you want to go through and manually select photos and rename them, just edit their title.
    NOW for the tricky part. This renames the image in the iPhoto library, but as you mentioned, the filenames are not being changed. Select the photos you just renamed, and export them (from the file menu). You then can direct iPhoto to export them using the TITLE rather than the existing original file name. Look in the folder, and you will see that you have new files created with the title as the filename instead.
    This can be confusing, but just remember iPhoto IS a database, not a file browser (like Finder).
    If you find this helpful or if it solves your issue, please indicate this by clicking the appropriate icon in the header of this response.

  • I Batch Renamed some photos and I need to know if I can name them back to what they were before? I didnt check the preserve metafile

    I am hoping there is a big undo Button I haven't found yet. LOL

    I doubt there is you dropped it and broken the screen
    try holding the top button and the round button at bottom of screen
    hold both until maybe an Apple logo appears if nothing after 20 secs
    the iPad is toast
    It can be exchanged at an apple store for around $249 to $219 depending on model
    Apple do not do repairs
    I would own up now before it gets more complicated

  • Any way to batch rename photos in Finder?

    After three days of wrestling with iPhoto '09, rebuilding libraries, etc., and following advice of helpful knowledgeable folks on Apple Support Communities, I have failed to prevent the crashes that follow every attempt to export retitled photos to a USB drive or garbbling up the the photos in the newly created libraries.  I am still open to tips from the Apple Support Communities but my hopes are not high.
    Another way I am hoping to complete the task is to drag the photos from iPhoto to the USB drive (or Desktop), but the new titles do not come through and all revert to the original file names which are cryptic.  So, my question is if there is a way to "batch" rename the photos on USB, but such that I can enlarge the thumbviews to enable me to better identify which photo is which?  I can not find a way to rename the files in batches in Finder.  Does OSX offer any utility in any of its other features?  Do I need to get an App online?

    You can use this Automator Service.
    1. Open Automator
    2. Select Service
    3. Select Rename Action, [✓] Show this Action when the workflow runs.
    4. Save as Rename
    The Workflow is:
    Now, select the files in Finder, right-click and select Rename:

  • Batch Renames do not carry over to Finder

    When I Batch Rename my photos in Adobe Bridge, the images file names appear to change in Bridge, but when I close out of Bridge and open my images in Finder the images keep their old names and do not carry over the new Bridge batched rename.
    Can anyone tell me how to get my files to permanently change their names from Bridge to Finder?

    Working across a server in general, is not supported by Adobe.
    Bridge in particular is very sensitive to any problem(s) in your server configuration, which we cannot troubleshoot for you.
    This is the boilerplate text often used in connection to saving to a network (please NOTE the part where it explains that normally, it does work, but that it is impossible to troubleshoot someone else's network remotely, and that's why it's not supported by Adobe):
    If you are opening files over a network or saving them to a network server, please cease and desist immediately in the event you are currently experiencing problems with one or more files. Working across a network is not supported.
    See: 
    http://kb2.adobe.com/cps/406/kb406793.html
      Copy the CLOSED file from your server to your local hard disk, work on it, save it again to your local hard disk, close it, and copy the closed file back to the server.
         Of course, the fact that Adobe does not support working across a network does not necessarily mean it won't work.   It should.
        Adobe's position is that there are too many variables in a network environment for them to guarantee that everything will work correctly in every network, especially given the fact that if something does not work properly, it's probably the network's fault, and Adobe has no way of troubleshooting your network.
      If you can't work locally, you are on your own, and if something happens, you're on your own. If you must work from a server, make sure your network administrator is a competent professional.
    When problems arise, a lot of valuable work can be lost.

  • Batch Rename HELP!

    So I have used Bacth Rename a hundred times! But this morning, I went to rename an entire set of photos (about 70 of them). Somehow, instead of just renaming the photos, it altered the file type- so I guess they aren't jpegs anymore! I can't open them in any program! Any suggestions on how to fix this?

    it altered the file type- so I guess they aren't jpegs anymore! I can't open them in any program! Any suggestions on how to fix this?
    If you have set to rename also the file type or extension they still are jpeg only the system will not recognize them as such. If you are sure they were jpeg files you only have to rename them again with batch rename.
    First check if there is no current extension or dot in the filename. If so choose the options in new filenames 'current filename' / 'name' / original case and second 'new extension' and in the field fill in: .jpg
    Then check if all is correct ant apply the new names. This should make it again OK.

  • Batch rename in bridge

    i am having trouble with batch renaming. it was working fine previously and not sure what happened to cause it not to work. i am using a mac osx 10.6.3/ CS4.
    basically when i click on batch rename, it won't let me select "rename in same folder". it also will not highlight MAC OS in the compatibility line. i have restarted the program, computer, and cleared the cache. (same problem when i try to rename in a different folder)  any ideas?

    I am not familar with the workings of a Mac computer.  You would get a better response to post in the Mac Bridge forum.
    I suspect you need to reset the preferences which in a PC is press and hold the Ctrl key and click on start icon for Bridge.  You will get a reset window with 3 options.

  • Batch rename in Bridge: can you truncate filenames?

    I know there are free-standing programs to do this, but:
    My images come out of the DSLR as DSC_001.NEF and so forth.
    Is it possible with Batch Rename to just strip off the DSC so that DSC_001.NEF becomes just 001.NEF??

    I've used A better Finder renamer. It's a good program. But also, i'm a fan of using the tools already at my disposal -- ie. what's included in the OS.
    For simple rename actions I might use Automator or the "trim file names" apple script that apple includes a part of the sample scipts. I've modified it to my needs.
    It all comes down to what works best for your individual situations.
    With that said. I'd still like to see Adobe beef up the batch rename fucntion in Bridge. Call me spoiled, but i don't want to have to leave Bridge just to rename my files.

  • How do I rename many photos all at one time with one click?

    I have got many photos of a sery and want to rename it all with one click only (instead of clicking through it all in single actions and wasting time).
    How can I rename many pictures/photos all together with one click only? -
    1) I have OS X Yosemite
    2) Aperture
    3) Automator App
    to use for this purpose, but I do not see through with any of it.
    Detailed Support for 1) and 2) and 3)  please!
    jona li

    Here is an article on how to batch rename files in Yosemite using just the Finder. This is a new feature in Yosemite. See if this article helps you get your files renamed.

  • Issue with Adobe Bridge batch rename crashing

    Hi, I have been trying to rename photo files in Adobe Bridge CC using the batch rename tool. I have just started using CC apps. All the updates are done. It crashes after doing just a few files. Started with 40 files at a time, crashed. Empty folder cache. Tried with 20 files, worked for a few times then crashed again. Tried 10 files and it crashed immediately. I found directions online (unfortunately it was for CS5, but I assume it's similar to CC). Any ideas on what to do differently? I really need to get these photos renamed and to a client tomorrow. Thanks in advance for any help.
    Cheryl

    Video card is updated, though I've been getting an error message on it.
    I'm not sure what this should have to do with your batch rename problem. Your specs seem more then sufficient and batch renaming does only save the files you already have cached.
    First check if you have enough free space left on your disk (at least 10 - 15 % free space is needed for good operation of your system and apps) and also try to reset preferences for Bridge by holding down contrl key while restarting Bridge. Check reset preferences from the pop up window and try again.

Maybe you are looking for

  • How to move one project datastore to another project

    Hi, i need same data-stores what i implemented in previous project to my current project, but two projects contexts is different. as there any way to copying without importing/exporting. Regards, sh

  • Running Disk Utility off External Hard drive

    To run "repair disk" in disk utility on my internal hard drive I'm supposed to insert my Install DVD, restart my mac and run disk utility - however running this program off the disk is much slower than running it off my 800firewire external hard driv

  • Report builder drill down

    I have a report that is grouped by a certain field. I'd like to give users the ability to click on the sum field, to be able to see the breakdown of the details per grouping, and then collapse the field again. I know how to do this in a cfm page with

  • Error in the SoapRequest when executing WebServices with more thn 10 params

    I'm using Sun One Studio 5 Standard Edition to develop WebServices. I started noticing that whenever I have a WebService which receives more than 10 for example If it receives 25 parameters something happens with the Execute test tool and the value o

  • Adobe Creative Suite Master Collection Help

    Hey all, This is the problem. Basically, my brother finished University last year. He moves out and takes all his stuff with him. A year passes and now it's my time for the great adventure. I have chosen to follow in his path and take Motion Graphics