Batch change creation date meta data in Bridge?

In Lightroom i can change the meta data on multiple files to be increased by say 2 minutes and all the creation times are adjusted.  Can this be done in CS4 bridge???

In Bridge you can not change the date created.  That is time stamped by camera when you take the picture.

Similar Messages

  • Changing the Default meta data field property required into not required.

    Hi,
    Is it possible to change the default meta data field property values in UCM server.
    For example consider the meta data Revision field which property required is true, then how to change this property required into not required.
    Is this possible or not?
    Thanks
    Hari

    Hari,
    in your case (if you don't want to use versioning) I'd rather recommend to change it to hidden than not required. You should be able to do it with standard profiles (the field name, I believe, is dRevision)
    I don't think you can have the field empty (in case someone deletes the content).

  • Is is possible to batch change photos to original date?

    I'm amazed at how mixed up my photo lib is (I'd really like it to be chronological) due to edits and other mysteries. Is there a way to batch change a bunch of photos (I have 11,000 - how many should be in a "batch"?) to revert back to original date taken??? Thanks for any help! Donna

    Do Not use Shootshifter on photos already in the iPhoto Library. This will rename the files and that will damage your Library. Every file renamed will be lost to iPhoto.
    Instead, try an experiment:
    Export a few of the files from iPhoto and use Graphic Coverter (you can download a Free Trial) to examine them. See what it tells you is the date of the photo. This will tell us if the problem is with the pic or iPhoto.
    Regards
    TD

  • Batch change time only, not dates

    I have imported photos from my cell phone and have discovered that the date stamp on all of them is exactly 7 hrs fast, even though the cell phone itself displays the correct time.
    How can I change the time by exactly 7 hours on all of these imported photos (of which there are hundreds), other than one at a time? I see with batch change that you have to change to the same date and time on all your selected photos.
    Thanks.
    Barb

    It will work. Select the pics and use the Hour column to add seven hours. The date will only change adding the seven hours will push the photo past midnight.
    So, a photo tagged at 7 am on January 1 will be time shifted to 2pm on January 1
    A photo tagged at midday in January 3 will be time shifted to 7pm on January 3
    A photo tagged at 8 pm on January 4 will be time shifted to 3 am on January 5
    Back up before you try this. If it doesn't work, restore your back up.
    Regards
    TD

  • Changing creation or modification date with Automator

    Three computers access iTunes in my apartment. The files are located on a drive connect to an airport extreme base station. Each computer needs to import music and have physical access to it for iPods and playlist creation. Since iTunes does not automatically check for new files I am in the process of building an Automator script to fix the problem.
    I have created an Automator action that allows the user to control-click a folder with audio files in it and have Automator manually change the file name, then import the files into iTunes. My hope was that this would change each files modification date so that, at a later time, another Automator action could search the network drive for newly added media via the modification date. My problem is that simply changing the name does not change the modification date. Even creating an archive and unzipping it before importing does not change the date.
    What action can I do with Automator that will change the modification date on those files so that I can search for them later? I know I can add the date to the file name but I don't want a user to have to guess which dates files were added (i.e. I'd have to tell Automator "look for this specific date in the file name' which is obviously unhelpful if I don't know the specific date).
    Long story short, how can I change either dates with Automator?

    Create a column with the following.
    TIMESTAMPDIFF( SQL_TSI_day, Opportunity."Created Date" , CURRENT_TIMESTAMP )
    add a filter on this column, for example, <=90.
    the SQL_TSI_month does not return accurate number of months.
    Cheers!
    Shilei

  • Applescript to batch change creation dates (different dates each file)

    I was pointed to an older thread that almost gets me what I need, but I'm not great with applescript, so I'm lost. Basically, I have a bunch of files. The name of the files are in a yyyymmddhhmmss.extension format (such as 20040710141231.mp4). I want to set the creation date of each file to the date by which they are all named. I found the older thread with a similar script and modified it, but I know it's not all there. I can post the whole script, but I'm pretty sure my main issue is with this part:)
                        tell originalFileCreationDate
                                  set myY to year
                                  set myM to text -2 through end of ("0" & (its month as integer))
                                  set myD to text -2 through end of ("0" & day)
                                  set myHr to text -2 through end of ("0" & (its time) div 3600)
                                  set myMin to text -2 through end of ("0" & (its time) mod 3600 div 60)
                                  set mySec to text -2 through end of ("0" & (its time) mod 60 as text)
                        end tell
    I'm not sure how to write that to set the date based on the file name. Can someone point me in the right direction?
    Thanks.

    Try this instead.
    This will change the access and modification times of the file:
    set theDir to choose folder
    do shell script "
    for f in " & POSIX path of theDir & "*
    do
              n=${f##*/}
              if [[ $n =~ ^[0-9]{14} ]]; then
                       touch -t ${n:0:12}.${n:12:2} \"$f\"
              fi
    done

  • How to edit video files (mp4, avi ...) meta data (Title, author ...) ?

    Hello all,
    After transcoding a DVD into MP4 using Avidemux I would like to change the video meta data title so that it looks great when listed into my favorite portable video reader.
    It seems Avidemux uses the file name as title, but do not provide any way to change it afterwards. I also know how to set the title using ffmpeg, but I do not want to re-encode the video each time I want to do that !
    Does anybody know about a simple tool (command line or gui) to change MP4 and other video formats meta data such the movie title ?
    Thank you very much for sharing your experience !
    Cheers,
    Chicha.

    shtrom wrote:
    Easytag works fine for MP4 files, but doesn't consider even showing AVI files in its list. I ended up using FFmpeg for similar purposes.
    From what I've seen around, it seems to have supported command line arguments like "-title" or "-comment". My version (22511-1) does no like them. It however supports a generic "-metadata" argument.
    ffmpeg -metadata title="TITLE" -metadata artist="ARTIST" -metadata date=DATE -metadata genre="GENRE" -metadata comment="COMMENT" -acodec copy -vcodec copy -i old.avi new.avi
    The list of metadata names FFmpeg supported at some point in time (r20910, 2009-12-21) can be found here [0].
    For some reason, my vlc (1.0.5-5) doesn't show them in the media information, but mplayer does.
    [0] http://multimedia.cx/eggs/supplying-ffm … -metadata/
    FFmpeg's metadata handling is in flux. If one builds an unpatched version from subversion right now, the metadata doesn't line up properly in some cases. This may be why VLC isn't seeing the data. It's for sure why MPD from Git is having trouble right now. The patch below fixes a lot of it. I added a comment on a bug report that I filed with FFmpeg previously to try to get them to commit it:
    http://lists.mplayerhq.hu/pipermail/ffm … 83487.html

  • Changing Meta Data in Bridge CS4

    I have Bridge CS4.
    I imported about 800 photos from two cameras.
    Unfortunately the date of one of the cameras was incorrect an so I cannot sort in true sequential date/time captured.
    What I do have is a list of two halves. One half Camera 1 in sequence followed by Camera 2, in sequence.
    I need to mesh the images in actual/correct time captured in an automated, non-manual way.
    I selected File > File Info... > and put the correct date in the IPTC tab. Nothing changed, so I'm not sure how to complete the process.
    Given the number of images that I require to re-date I would like to make a batch change to the date only....the time element is near enough.
    Any help will be appreciated.
    Thanks
    Andrew

    Thanks Curt
    That's useful to know.
    I believe the/a TP product is ShootShifter
    Kind regards
    Andrew

  • Batch change does not change meta data name when exporting or copy

    I use batch change to change the name of an event when photos from more than one source (camera) are imported. When I copy or export the photos the name reverts to the original meta data file. I do this to override duplicate names. For instance photos from two cameras taking pictures of the same event can have identical names such as IMG_0100. Iphoto does not show all the metadata on info but does show the change in the name when viewing info in iphoto.
    Is there some way to permanently change the name on photos using a group or batch method?

    No you're not changing any filenames at all.
    There is no way to change a filename in iPhoto at all. What you with Batch Change is add a Title to the photo. A Title is an entry in the metadata.
    You can set the name of an exported file to be the same as the title, when you export... if you choose that option.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.

  • IPhoto batch change is choosing date modified rather than date created

    Hello all,
    I have a large number of MOV files which I have imported into iPhoto. I want to batch change them all, renaming them to the footage date and time.
    iPhoto has chosen the date last modified rather than date created to rename them to. When in Finder and open Inspector, it does have the correct date created.
    I can adjust date and time and tick the box to modify the original file for each one but given the quantity I have to do, I would rather the batch change pick up on the date creted. 
    Any ideas on how I can get iPhoto to do this correctly?
    I have spent some time searching online and haven't had any luck so far.
    I am using iPhoto 11 v.9.4.3 if it makes a difference.
    Thanks all
    Andrew

    iPhoto can only change the date on image files which have EXIF fields.  Movie files don't have EXIF fields so you'll need to do the job outside of iPhoto with an application that can change the file created date like  A Better Finder Attributes 5: Mac OS X Batch Date Changer for EXIF Photos, Files and Folders
    or
    File Date Changer: Change file creation and modification dates and times for Mac OS X files
    OT

  • Batch Change "Date Modified" to match Exif Data After iPhoto Export

    Among several other posts about similar situations, I have found none that directly and simply resolve this issue.
    My wife imported a bunch of photos into iPhoto directly, but I wanted them in a folder on the hard drive.
    I pulled them out of iPhoto into a folder, then deleted the ones in iPhoto so that I could sort them and reimport.
    I then realized that the photos all now showed the date they were imported into iPhoto as their created/modified dates, which makes it impossible to easily sort them by the date of the pictures.
    I checked the Exif data, and it has preserved the correct creation date event though checking "info" on the pictures shows create date the same as modified the same as iPhoto import.
    Is there an easy way to batch change an entire folder of pictures to change the Created/Modified dates to match the Created date from the Exif data?
    The only other similar posts had answers that reccomend a piece of software that does not seem to actually do this, and one that suggests some sort of confusing script that I don't really understand.
    Please help - I have a bunch of family photos that I really need to fix.

    shootShifter helps to redate and rename complete folders of images based on the EXIF data or Finder dates.
    So it will do batches.
    I also believe that exporting the Original (File -> Export: Kind Original) will make all of this unnecessary.
    I don't like having them only in iPhoto so I organize the originals into folders by choronological event then import them so I have copies outside the iPhoto library to put elsewhere.
    You understand that you're using twice the disk space there, right? And that it's quite unnecessary. All iPhoto does is to put them in folders too. Have you looked inside the iPhoto Library ever?
    Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed. Your photos are in the Masters folder.
    Standard warning: Don't change anything in the iPhoto Library Folder via the Finder or any other application. iPhoto depends on the structure as well as the contents of this folder. Moving things, renaming things,, deleting them or otherwise making changes will prevent iPhoto from working and could even cause you to damage or lose your photos.
    Regards
    TD

  • How do I change creation dates of scanned photographs?

    I have just scanned thousands of old photos into my computer, and would now like to change their creation dates to reflect when the photos were actually taken (some as far back as the early '70s) -- that way I can organize them chronologically in iPhoto.  Is there any way to do this?
    Thanks!

    Select a [photo (or photos) and use the Batch Change time and date command to set the date or a scanned photo
    LN

  • Changing creation date on adobe acrobat 9

    I've got a folder full of old PDF files at work. They are all labeled DD-MM-YY to signify the date they were made but the pdf's were originally in Word format and when they were all converted to PDF's, they all took that day as their created date. I'm looking for a way to change the created date on these hundreds of PDF's to match the date in the file name. Is there an easy way to do this?  I have to print the documents and organize them chronologically by date.  However, I need to also have corresponding creation dates with the documents.  I'm not good with scripting or programming however I am great at following step by step directions.  I would greatly appreciate help on this since this is a semi time sensitive project.
    Thank you.

    Acrobat does not offer any way to change creation date. It is correct: by definition, it is the day when the PDF was made, it is not supposed to be set to a different date that might be more convenient.

  • How to batch change a date in aperture

    Is it possible to batch change a date in aperture the way I do it in iphoto (command option B)?  I dont want relative dates, I want a group of scanned pictures (negatives) to have the same date, but separated by one second.

    Dale,
    Aperture does not support this. I wrote a little Apple Script to adjust the data and time like iPhoto and posted it on my web page. You may have a look and take this as a starting point. I wrote the script last year; so it has only been tested with Aperture 3.2.4 and Lion, not with the current version: The script is here: Adjust Date and Time in fixed increments
    But no guarantees given for the current Aperture version 3.4.3.
    Regards
    Léonie

  • Problem writing meta data changes in xmp in spite of enabled settings

    Dear Adobe Community
    After struggling with this for two full days and one night, you are my last hope before I give up and migrate to Aperture instead.
    I am having problems with Lightroom 5 writing meta data changes into xmp and including development settings in JPEG, inspite of having ticked all three boxed in catalog settings.
    In spite of having checked all boxes, Lightroom refused to actually perform the actions. I allowed the save action to take a lot longer than the saving indicator showed was needed, but regardless of this no edits made in the photo would be visible outside Lightroom. I also tried unticking and ticking and restarting my compute.
    Therefore, I uninstalled the program and the reinstalled it again (the trial version both times). I added about 5000 images to Lightroom (i.e. referenced). After having made a couple of changes for one photo in development settings, I tried closing the program. However, then this message was then displayed:
    I left the program open and running for about 5-5 hours, then tried closing the program, but the message still came up so I closed the program and restarted the computer. I tried making changes to another photo, saving and then closing and the same message comes up. The program also becomes unresponsive, and of course still no meta data has been saved to the photo, i.e. when opening it outside Lightroom, the edits of the photos is not shown.
    What do do? I would greatly appreciate any insights, since I have now completely hit the wall.
    Oh yes, that´s right:
    What version of Lightroom? Include the minor version number (e.g., Lighroom 4 with the 4.1 update).
    Lightroom 5.3
    Have you installed the recent updates? (If not, you should. They fix a lot of problems.)
    I installed the program two days ago and then for the second time today.
    What operating system? This should include specific minor version numbers, like "Mac OSX v10.6.8"---not just "Mac".
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36
    What kind(s) of image file(s)? When talking about camera raw files, include the model of camera.
    JPEG
    If you are getting error message(s), what is the full text of the error message(s)?
    Please see screen dumps above
    What were you doing when the problem occurred?
    Trying to save metadata + trying to open images that it seemed I had saved meta data to
    Has this ever worked before?
    No
    What other software are you running?
    For some time Chrome, Firefox, Itunes. Then I closed all other software.
    Tell us about your computer hardware. How much RAM is installed?  How much free space is on your system (C:) drive?
    4 GB 1333 MHz DDR3
    Has this ever worked before?  If so, do you recall any changes you made to Lightroom, such as adding Plug-ins, presets, etc.?  Did you make any changes to your system, such as updating hardware, printers or drivers, or installing/uninstalling any programs?
    No, the problems have been there all the time.

    AnnaK wrote:
    Hi Rob
    I think you succeeded in partly convincing me. : ) I think I will go for a non-destrucitve program like LR when I am back in Sweden, but will opt for a destructive one for now.  Unfortuntately, I have an Olypmus- so judging from your comment NX2 might not be for me.
    Hi AnnaK (see below).
    AnnaK wrote:
    My old snaps are JPEG, but I recently upgraded to an Olympus e-pl5 and will notw (edited by RC) start shooting RAW.
    Note: I edited your statement: I assume you meant now instead of not.
    If you start shooting raw, then you're gonna need a raw processor, regardless of what the next step in the process will be. And there are none better for this purpose than Lightroom, in my opinion. As has been said, you can export those back to Lightroom as jpeg then delete the raws, if storage is a major issue, or convert to Lossy DNG. Both of those options assume you're willing to adopt a non-destructive workflow, from there on out anyway (not an absolute requirement, but probably makes the most sense). It's generally a bad idea to edit a jpeg then resave it as a jpeg, because quality gets progressively worse every time you do that. Still, it's what I (and everybody else) did for years before Lightroom, and if you want to adopt such a workflow then yeah: you'll need a destructive editor that you like (or as I said, you can continue to use Lightroom in that fashion, by exporting new jpegs and deleting originals - really? that's how you want to go???). Reminder: NX2 works great on jpegs, and so is still very much a candidate in my mind - my biggest reservation in recommending it is uncertainty of it's future (it's kinda in limbo right now).
    AnnaK wrote:
    Rob Cole wrote:
    There is a plugin which will automatically delete originals upon export, but relying on plugins makes for additional complication too.
    Which plugin is this?
    Exportant (the option is invisible by default, but can be made visible by editing a text config file). To be clear: I do not recommend using Exportant for this purpose until after you've got everything else setup and functioning, and even then it would be worth reconsidering.
    AnnaK wrote:
    Rob Cole wrote:
    What I do is auto-publish to all consumption destinations after each round of edits, but that takes more space.
    How do you do this?
    Via Publish Services.
    PS - I also use features in 'Publish Service Assistant' and 'Change Manager' plugins (for complete automation), but most people just select publish collections and/or sets and click 'Publish' - if you only have a few collections/services it's convenient enough.
    AnnaK wrote:
    Would you happen to have any tips on which plugins I may want to use together with Photoshop Elements?
    No - sorry, maybe somebody else does.
    Did I get 'em all?
    Rob

Maybe you are looking for

  • Blue screen error /Blue screen of death(Your pc ran into a problem and needs to be restart)

    Hello,          About 15 days ago,my laptop is showing blue screen errors,really this is very frustrating.          I use a lenovo laptop, Processor Core i3 (3rd Generation) System Memory 4 GB DDR3 HDD Capacity 320 GB Operating System Windows 8 Syste

  • Can i get my files off my phone if the battery is faulty and i can't switch on my phone

    Please help! My iphone 4s died today. My network provider has told me the battery is completely broken and i need to claim on my insurance for a new phone. However, I've not backed up my pictures for a month (photo stream does my head in) and I have

  • Parse an xml file using cm tag

    I have question about Content Management and weblogic portal 9.2 In VCR directory, I will have xml file with bellow structure Test Repository --->Test ----Test.xml Test.xml File will be like <main_content>      <content>           <Subject>Subject</S

  • HOWTO: Openbox Menu Icon in PyPanel

    Using Openbox and PyPanel (or similar) and are tired of either having to minimize windows or adjust maximum window size to leave space for right-clicking on the desktop?  Do you have a keyboard shortcut set up to open the menu, but also want to be ab

  • Upgrading from old Mac to new- how to sync iPhone with new Mac?

    Hi all, My dad is upgrading from an old iBook to a nice new iMac. He has spent quite a few days tweaking his new iMac and importing old files and folders. The one thing we haven't yet done, though, is iTunes. He has an iBook G3 that he syncs his iPho