Time stamp off by two hours - in file name

When I import, I rename my files to include date and time in the filename, like so:
[IMG NR] - [YYYY]-[MM]-[DD] [HH].[MM].cr2
Here's the strange thing: If I do the renaming on import, LR3 consistently adds +2 to the hours. So an image that was taken at 06.49 will have 08.49 in the filename. And this has only happened to the photos imported with LR3 final. (Not sure about the betas, but the bug wasn't there in LR2.)
I've double checked the camera clock, and it is correct. I've checked the EXIF - which is also correct! And if I do the renaming after importing, LR3 gets it right.
I guess not many will have come across this bug, but if anyone out there has any ideas what might be going on I'm all ears.

ISeward wrote:
Ok. Sounds like a pretty weird bug! Did someone by accident try to build
GMT conversion into the file renaming module ... and fail miserably,
considering it is adding hours, not subtracting?
LR has had problems with date / time since the LR1 beta.  It drove me crazy and reduced me to making small dolls of all the LR engineers to stick pins in – sorry guys
I think LR seems to give preference to xmp data, probably because xmp belongs to Adobe.  In digital photography the original standard EXIF, which is what cameras use, appears to be copied to xmp on import and then LR uses xmp info from then on.  
I think the xmp spec adjusts the time to the local time zone and this action was built into LR.  This “feature” has been largely eliminated but seems to have popped back up to bite us
Hm, well I don't know, I never write XMP. Esp. not on import. But your explanation sounds like the only reasonable one.

Similar Messages

  • Creating a time stamp in the graphic, NOT the file name.

    InDesign has a variable feature that allows you to autogenerate certain kinds of text. I've been trying to find a way, if there is one, to do the same thing in Illustrator. At the very least I'd like to be able to add a date/time stamp to my "Draft" marks on my graphics. Is such a feature available?

    Well you can use the variable feature in AI and script it or use a linked data base.

  • TS4002 iCloud was off for two hours, what about the messages sent in that particular time window?

    my account was off for two hours due to overloaded mailbox, is it possible that some messages were sent to me at that time and therefore I won't receive those messages sent to my account during those two hours? Thanks...

    Messages sent to you while your mailbox is full would've been bounced back to the sender.

  • I turn off my whats app lasseen time stamp more than 24 hours ago and now i can't turn it on it sees " could not connect to whats app services please try again latter"  i try deleting the app  and changing the calendar and still didnt worrk

    I turn off my whats app lasseen time stamp more than 24 hours ago and now i can't turn it on it sees " could not connect to whats app services please try again latter"  i try deleting the app  and changing the calendar and still didnt worrk

    Ok - an update ...
    Managed to get the phone to backup to iCloud, so decided to risk the "Factory" reset.
    Took the reset option including delete all data and crossed fingers.
    It took a while to resotre from iCloud, but everthing seems to be back and ...
    Bluetooth now working agaim.
    Backup to Computer working again.
    And somewhat to my surprise, GMail in the mail app is working again. (The surprise being that the implication of other posts was that this was a 6.1.3 fundamental bug)
    Still no idea why the iPhone was corrupted - but at least the "Factory" reset seems to have recovered the situation.

  • Can you remove a date and time stamp off a photo that has already been taken?

    Can you remove a date and time stamp off a photo that has already been taken?

    only with Photoshop or similar software that offer some clone/heal feature.
    Weekend Travelers Blog | Eastern Sierra Fall Color Guide

  • Calculating Elapsed Time Is Off By One Hour

    I am fully aware of many topics discussed in the various forums here related to the OS timezone and DST settings impacting how the JVM will process date/time calculations. I am running on Windows XP Professional, and I have checked and double checked the timezone setting, it is correctly set to Central Time and the "Automatically adjust clock for daylight saving changes" checkbox is checked.
    The code found at the end of this message clearly shows the problem for which I have yet to find an explination. I intended to be able to use a timer to update a string to show how much time has elapsed since the start of anything for which I need to know this information. As you can see by the results (example of which is listed after the code), the timezone and DST offsets seem to be properly retrieved by the JVM, but if this is the case, then why is the elapsed time value off by one hour?
    I am looking for a solution/explanation involving the date/time classes, not a workaround whereby I end up extracting multiple time representation subsets and manipulating them myself. Any help will be greatly appreciated.
    * TestTimeZone.java
    * Created on September 12, 2004, 7:18 PM
    import java.io.*;
    import java.util.*;
    import java.awt.event.*;
    import java.sql.*;
    import java.text.*;
    * @author  Jared
    public class TestTimeZone {
        java.util.Date startDt;
        /** Creates a new instance of TestTimeZone */
        public TestTimeZone() {
         * @param args the command line arguments
        public static void main(String[] args) {
            new TestTimeZone().go();
        private void go() {
            startDt = new java.util.Date();
            TimeZone tz = TimeZone.getDefault();
            System.out.println("the default timezone is " + tz.getDisplayName(true, TimeZone.LONG));
            System.out.println("the default timezone ID is " + tz.getID());
            System.out.println("useDaylightTime = " + tz.useDaylightTime());
            System.out.println("default locale = " + Locale.getDefault().toString());
            javax.swing.Timer t = new javax.swing.Timer(1000, new ActionListener() {
                public void actionPerformed(ActionEvent ae) {
                    java.util.Date currDt = new java.util.Date();
                    Calendar cal = Calendar.getInstance();
                    long elapsedTime = currDt.getTime() - startDt.getTime() -
                        (cal.get(Calendar.ZONE_OFFSET) + cal.get(Calendar.DST_OFFSET));
                    SimpleDateFormat formatter = new SimpleDateFormat("HH:mm:ss");
                    System.out.println("Elapsed: " + formatter.format(new java.util.Date(elapsedTime)) +
                        " Start: " + formatter.format(startDt) +
                        " Current: " + formatter.format(currDt));
            t.start();
            while (true) try {
                Thread.sleep(10);
            } catch (Exception e) {
                e.printStackTrace();
    }And here is the result I am seeing:
    the default timezone is Central Daylight Time
    the default timezone ID is America/Chicago
    useDaylightTime = true
    default locale = en_US
    Elapsed: 23:00:01 Start: 00:03:57 Current: 00:03:58
    Elapsed: 23:00:02 Start: 00:03:57 Current: 00:03:59
    Elapsed: 23:00:03 Start: 00:03:57 Current: 00:04:00
    Elapsed: 23:00:04 Start: 00:03:57 Current: 00:04:01
    Elapsed: 23:00:05 Start: 00:03:57 Current: 00:04:02
    "

    Great. Now that we have gotten half way to the goal, please let me know how you intend to get that difference in miliseconds presented as a time value using any of the date/time classes Java has to offer. That way, I don't have to rewrite the code that puts it into a properly formatted String (the kind folks at Sun have already written that code). Using date/time classes to acheive this is what I attempted with my application. I added the milisecond adjustments for TZ and DST because if I didn't the reported elapsed time would be off by 6 hours, not just 1.
    I am open to all suggestions.

  • Server Time and Local Time (Dreamweaver) Off By 1 Hour

    How can I get Dreamweaver to show me the correct time stamp on my files on the server and my local machine? When I telnet into my server, the date and time stamp on all files is correct. My server time is set properly to ET (GMT-5). My local machine's time is properly set. I asked my sysadmin if PureFTP has any timezone settings and I was told by the sysadmin that all my server times and timezones are accurate. My sysadmin said that Drwamweaver is the culprit.
    I have lived with this for a long time, but it is extremely annoying and I would like to fix it.
    I searched high and low in the Dreamweaver option settings for some sort of timezone setting or offset -- found nothing.
    Has anyone experienced a 1-hour out-of-sync issue between a file's actual time stamp on the server and what Dreamweaver shows it as in the Remote/Local Files View?
    Thanks.

    During Daylight Savings Time.
    http://forums.adobe.com/message/3545349#3545349
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Time stamp for each DML in spool file

    Hi,
    I need to know how much time is taking for each delete statement in sql file.
    this is my sql file with dml statements.
    set serveroutput on;
    set time on;
    spool C:\PN\PN\temp_spool.log
    delete from tmp_test1;
    commit;
    delete from tmp_test21;
    commit;
    set time off;
    spool off;
    The spool file is creating as below.
    20 rows deleted.
    Commit complete.
    30 rows deleted.
    Commit complete.
    My requirement is to print time for each DML in the spool file. eg
    *17:31:03 SQL>*
    *20 rows deleted.*
    Commit complete.
    *17:31:33 SQL>*
    *30 rows deleted.*
    Commit complete.
    *17:31:53 SQL>*
    If I spool the file with time stamp I can get the timing for each DML.
    Appreciate your help.
    Thanks,

    I need to know how much time is taking for each delete statement in sql file.
    If I spool the file with time stamp I can get the timing for each DML. subtract the consecutive timestamps in the spool file.

  • Time stamp is not getting updated for File Adapter in communication channel

    Hi All,
    Since yesterday, I am observing that the time stamp of communication channel for File adapter is not gettingupdated some times.
    I had to stop and start the communication channel to update the time stamp.Please let me know if anyone has come across such issue or any useful notes on this.I could not find any related notes on Market place.
    Regards,
    Dinakar

    Hi,
    This is happening only with one communication channel which is sender in derection.Any reason why it is happening like this?since the restart of the communication channel it is getting update now.I really do not know how to delete/create the communication channels as this was done our PI consultants.Pls guide me.
    Regards,
    Dinakar

  • Time keeps changing back two hours!

    Ipod touch 4th gen. The time zone is set to Monterey (Tennessee). They have the same time as we do in Crossville. My Ipod keeps changing the time back two hours for some reason. So right now, its 9:26. My ipod says it's 7:26. I can change it back manually, but it just changes back. I didnt have this problem before i had to restore it from the update freeze. Is there another Monterey in the U.S.A. or is it just the ipod?
    My computer (Toshiba Windows 7) does it too, but i dont remember if it did it before my ipod froze.
    Please help!

    I didnt think it was obvious. Everyone I asked always told me it was a different time zone. Well whatever, thanks.

  • Sender File adapter - DataTime stamp at the end of aarchived file name

    Hello,
    I am archiving the file once PI file sender adapter picks the file from source directory.
    The file is archived in the archive directory as <Date-Time-SSS_>FileName.
    I need to append the value <Date-Time-SSS_> after the file name.
    So archived file looks like FileName_<Date-Time-SSS>
    How can I achieve this? Appreciate your help for valuable suggestions.
    Thanks,
    Namadev

    Hi Namdev,
    Generally when we archive file then in sender CC we just put the processing mode as Archive and specify the Archived directory name in Archive Directory section. in that case when the Communication channel pick the source file then after picking it it remove it from source directory and put it into Archived directory without making any change in the file name.
    so if the file name is A.txt then in Archived directory also its name will be A.txt . However if you want to make any change in the name of the source file in the archived directory then you have two write Unix or DOC scrpt( depending upon your soure server )
    if your source server is Unix then write shell script otherwise dos scriprt
    .after wrtting the shell script just place in the archived directory or your source directory and call it in by mentioning it in Coomand Line section of your sender CC. You can easily search and get the required  shell script .
    Regards,
    Saurabh

  • .mov exif data problem - Time is off by 7 hours

    I import my photos and videos taken on my iPhone using "Image Capture", then I sort them using Adobe Bridge CS5.
    When I take a video (.mov file), the exif data shows the "Date Created" at 7 hours ahead of "Date File Modified". (ie: Date Created: 7pm, Date File Modified: 12pm)
    The problem is - the correct time (that the quicktime movie was taken) is the "Date File Modified" time. So, if I should choose to rename that file...of course the "Date File Modified" time is changed.
    Additionally, if I choose to rename all of my files (which I do) using the Date Created - the movies can be given the incorrect name. While sometimes this is not a problem (after all....12pm and 7pm ARE in the same day) if I create a video after 6pm, the "Date Created" ends up in tomorrow....follow?
    Just about everything I've found on the internet says that videos don't have exif data....which is just silly....cause I'm looking at it and sorting my files by it...so....something is there!
    On the other hand, if I could just CHANGE the exif data...I'd even be willing to do that...but I can't seem to find a MAC based exif changer for .mov files.
    sigh.
    I'm just exhausted. I would greatly appreciate any ideas.
    Cheers!

    Hi,
    I'm having a similar problem, which I've been able to easily reproduce. It may be related, but I don't have a fix for it.
    I live in Oslo, and just got back from a trip to Mumbai (which is 4.5 hours ahead of Oslo time). When I arrived in Mumbai, I used the Time Zone function on the phone to set the local time. When I got home, I imported photos and video into iPhoto and found that the photos I took on my phone in Mumbai showed the correct time and date, but the videos I took on the trip had a creation date listed in iPhoto that was equal to Oslo time (4.5 hours different from the photos) and not Mumbai time.
    It almost seems like the camera app saves the photos based on the iPhones current Time Zone setting, but saves video with a creation date equal to the time zone the phone was originally set to.
    I've been able to reproduce the bug a couple of times. The only fix I have for it is manually changing the time and date of the videos in iPhoto.
    Could someone else try this out and see if they can reproduce the problem as well?
    Peter

  • Outlook Calender Appointment time is off by 1 hour only when sending appointments to one particular person.

    My name is Caleb, I work in IT. I am trying to help a user, Karen, with her Outlook problem. When Karen sends an appointment to her husband Mike via Outlook Calender, he receives it in the wrong time zone.* Mike is also using Outlook. When Karen sends an
    appointment to anyone else via Outlook Calender, they receive it in the correct time zone. When Karen sends an appointment via Webmail Calender, there is no issue at all with anyone. All Outlook accounts are running on Outlook 2010. Below is a list of appointments
    sent, by what means, and the whether the date came out as correct or not:
    From Karens Outlook to Caleb: Success
    From Karens Outlook to Mike: Fail (shows as Pacific Time)
    From Karens Outlook to Sarah: Success (Sarah is just another user)
    From Karens Webmail to Caleb: Success
    From Karens Webmail to Mike: Success
    From Calebs Webmail to Mike: Success
    From Calebs Outlook to Mike: Success
    From Amys Outlook to Mike: Success (Amy is just another user)
    From the above process of elimination, I have determined that the time zone problem only exists when an appointment is sent from Karen’s Outlook to Mike. I have verified that Karen’s date and time is set up correctly in Webmail, Outlook, as well as
    her computer. I have not checked any of Mike’s date and time settings since he’s working at a different company. I’m wondering if the problem is on Mike’s end and not Karen’s. Then again, it works fine when Karen sends the appointment via Webmail, but not
    Outlook - which leads me to believe its on Karen's end. Also, Mike did say Karen is the only one he has this problem with. I’m currently trying to get in contact with Mike’s IT person so I can have his date and time professionally checked.
    My Thoughts:
    Its as if Karen and Mike's Outlooks are communicating incorrectly, only to each other. Why is Mike receiving ONLY Karen's Outlook Appointments incorrectly? Karen creates the appointment, verifies that the date and time and time zone are
    correct before sending, sends the appointment to Mike, and Mike receives it in the wrong time zone. Its as if his Outlook is configured to receive Karen's appointments in a different time zone - but such a setting doesn't even exist... or does it?
    *The correct time zone we want is Central Time.

    Hi,
    Based on the very logical troubleshooting steps above, the issue tends to be more on Karen's client.
    Please check the Time Zone Settings on Karen's computer, I'm not sure what version of Windows she's using, just take Windows 8.1 for example:
    Go to Control Panel -> Clock, Language, and Region -> Date and Time -> Change time zone -> Check if Karen has selected "Automatically adjust clock for Daylight Saving Time" option, try to select or unselect this option to send the meeting
    request to see if this makes a difference.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Ive deleted alot of movies off my mac but the file name of every movie still remains in all files? how do i get rid of the name? it wont let me delete :(

    i deleted alot of movies off of my mac they are gone and cannot be opened but the movie names still remain in all files in finder? it will not let me delete the names saying alias cannot be found and when i click delete alais the message only comes back up?? help please!!

    Select  ▹ System Preferences ▹ Spotlight ▹ Privacy. The list of items excluded from Spotlight indexing is shown (it may be empty.) Click the plus (“+”) icon to add an item to the list. Select your boot volume (under DEVICES) and add it to the list. Then remove it from the list by selecting it and clicking the minus (“-“) icon.
    Spotlight will rebuild the index. If you try to do a Spotlight search now from the magnifying-glass icon in the top right corner of the display, a pulsing dot will appear in the icon. When the dot disappears, the indexing is complete.

  • Using counter to time stamp to text file

    Dear all,
    I am using counter to acquire singnal from quadrature linear encoder. I would like to time stamp the data acquisition to text file but I found that I can't choose to read time. Anyone know how to solve this problem?
    Attachment is my program.
    Thank you very much!
    Best regards,
    George
    Attachments:
    encoder continous 21-4-2013.vi ‏28 KB

    Hi,
    Have you seen these two articles?
    http://digital.ni.com/public.nsf/allkb/68806B93A21​355E98625726F0064822B
    http://digital.ni.com/public.nsf/allkb/5D42CCB17A7​0A06686256DBA007C5EEA
    Basically, it can be done, but be aware it may not be as accurate as you would like.  Follow the code in the first article and note that the easiest way would be to just use the basic File I/O VIs to write to text file, since the Write to Measurement File VI will only work with waveforms and you have counter output.
    Matt Lee
    National Instruments
    Applications Engineer

Maybe you are looking for

  • PSE13 repeatedly crashing when opening more than one file at a time to layer images. [was: Feeling very frustrated.]

    Just bought Photoshop Elements 13.  I have a Macbook Pro that meets all the requirements.  I have installed and reinstalled the program but it just keeps crashing.  The program will load, when I choose the expert tab and try to open more than one fil

  • How can I get a recovery disk for Satellite P300-1CI?

    Hi everybody, first, sorry for my english, I'm a belgian and I speak french. Yesterday I bought a toshiba Satellite P300-1CI, when I started, I must installed Vista home. I would like to format my disk and reinstall my old Windows XP. My question is

  • Best connection for Video Monitor?

    Thanks for reading, I'm getting to the stage of my first FCE 4.0 project where I will need to monitor things through my intended display, and I'm just curious as to which connection is best. I've read about sending the video out through firewire to m

  • Black Screen T61 Series

    Hi,  I was wondering if someone could help me.  Every time I turn on my ThinkPad, the screen goes all black at first.  This started out just around the lower screen of my computer and is now blinking the whole screen.  I did try to download security

  • Excel Interface

    There is a user requirement for exporting a report in excel when the report is exported in excel and when it is opened, the excel sheet opens in a small window Now the user has to click on the maximise icon of the excel sheet to open the excell sheet