Date/Time, EXIF and Lightroom

I am quite aware of the past thread on the date/time issue started by Judy
Nicholls. But id did not help me to solve a mystery I am experiencing with a
bunch of jpegs made shot some years back.
Lightroom states that these files have no date - none is shown in the metadata
panel to the right, and they are selected in the metadata browser when selecting
"unknown date".
But several EXIF reader programs, including EXIFUtil, EXIFEditor and EXIF Pilot
clearly show me that the three relevant EXIF dates are there, are correct and
are identical. The EXIF header, the whole metadata section, seems to be complete
and readable outside LR. Oddly, EXIFER shows a date of "3--DEC-99" for Date
Taken in its file listing, but then shows the three relevant date entries
correctly and identically when doing an EXIF edit.
Why can't LR read these dates?
As a test, I tried to add the capture date through the menu (Metadata - Edit
Capture time ...), and it LR reacted to the added date by putting the file among
those with a known date (2003). But it did not change the EXIF data in the file,
apparently only a date in the LR database. I exported XMP to the file, read the
resulting data with EXIFUtil - but could not find any difference with the
original file!
Can anybody explain what is going on here?
Chris

Ok, here's what I've found:
If the "xmp" sidecar exists and you do "Read metadata from file", it will read the metadata from the "xmp" sidecar. If the "xmp" sidecar doesn't exist, then if you "Read metadata from file" it reads it from the image itself.
Thus, if you have an "xmp" sidecar file that exists and use an EXIF editor on the original image, the EXIF time change will *never* be imported again from the image file no matter how hard you try (ie: it will be ignored). If you remove the "xmp" sidecar, then you can get it to read the EXIF time data from the image. I don't think you have to "reimport" as some have done, but rather just delete the "xmp" sidecar.
However, and this is important, if you've already made Develop edits, those edits will be lost on the "Read metadata from file", import of EXIF data from the image.
If you think you'll be tricky and move out the "xmp" sidecar, edit the EXIF time data in the original image, import the metadata from the image, move back the "xmp" sidecar, and re-import the metadata and you'll get the best of both worlds, well no, you're SOL. The "xmp" sidecar date/time overrides the EXIF date/time previously imported.
So, I'll probably be stuck exporting my RAWs, then fixing the EXIF time data after the fact in the JPEGs since I've already made tons of edits across my 1,000+ photos for this batch.
Incidentally, iMatch by Photools can do a batched EXIF time correction by partial or full hour offset (or day) and Lightroom seems to be happy with the EXIF date format. iMatch is a pretty nice tool in of itself and probably better for general photo organization at least in the iteration of Lightroom (it is not a RAW converter though).
It can also do edits of XMP data, including with Visual Basic like scripted edits, so perhaps I can eak it out to do the fix that way (or re-export the fixed EXIF data into the XMP data without touching the rest of the Develop edit data also there).
Yuck!
Lightroom is a very nice app, but it's certainly still pretty "beta" in many respects.

Similar Messages

  • GREP: date/time search and replace

    Hi everybody,
    I frequently import XML files to InDesign. The XML structure always contains the following information among others:
    start date
    start time
    end date
    end time
    For example, it looks like this:
    21.08.2013
    09:00
    25.08.2013
    18:00
    Now I need to re-arrange these fields in one row, just like this:
    21.08.2013, 09:00 - 25.08.2013, 18:00
    I already found out how to do this via GREP, but I need to go one step further:
    If "start date" and "end date" are the same (for example both are "21.08.2013"), I would like to skip the "end date" in the output. It should look like this:
    21.08.2013, 09:00 - 18:00
    Is there a way to do this via GREP?
    Thanks in advance!

    This will do it
    Trevor
    // By Trevor http://forums.adobe.com/thread/1261365?tstart=0
    app.doScript("formatDates ()", ScriptLanguage.javascript, undefined, UndoModes.ENTIRE_SCRIPT, "GREP: date/time search and replace");
    function formatDates ()
            app.findGrepPreferences = app.changeGrepPreferences = null;
            app.findGrepPreferences.findWhat = "\\d\\d\.\\d\\d\.\\d\\d\\d\\d\r\\d\\d:\\d\\d\r\\d\\d\.\\d\\d\.\\d\\d\\d\\d\r(?=\\d\\d:\\d\\d\r)";
            var doc = app.activeDocument,
                  dateFinds = doc.findGrep(),
                  l = dateFinds.length, dates;
            while (l--)
                    app.findGrepPreferences.findWhat = "(\\d\\d\.\\d\\d\.\\d\\d\\d\\d)";
                    dates = dateFinds[l].findGrep();
                    app.findGrepPreferences.findWhat = "(\\d\\d\.\\d\\d\.\\d\\d\\d\\d)\r(\\d\\d:\\d\\d)\r(\\d\\d\.\\d\\d\.\\d\\d\\d\\d)\r";
                    if (dates[0].contents == dates[1].contents) app.changeGrepPreferences.changeTo = "$1 $2 - ";
                    else app.changeGrepPreferences.changeTo = "$1 $2 - $3 ";
                    dateFinds[l].changeGrep();

  • Extract date/time stamp and modifier name from memo field

    I need to extract all date/time stamps and modifier name strings from the Work Log memo field - or conversely, filter out all of the comments after the date/time modifier strings.    I have the string extract but it only extracts the first one.  I need to loop until all are found - how can I do this?  The memo field will look something like this:
    3/5/2009 3:32:05 PM John Doe
    Comments - string can be any length
    3/4/2009 12:35:43 PM John Doe
    Comments - string can be any length
    3/4/2009 12:28:17 PM Jane Dough
    Comments - string can be any length and include date format 2009-06-04 14:20 CST.
    3/4/2009 12:27:47 PM Mary HadaliddleLam
    Comments - string can be any length
    3/4/2009 12:26:55 PM Lamseedivy
    Comments - string can be any length
    3/4/2009 12:15:22 PM Mareseedoes
    Comments - string can be any length.

    Here is a formula that will strip all 'comment' and blank lines and puts the datetime stamp and user names into an array.  You have to manipulate the elements of the array to further separate the datetime stamp and user name if required.
    // Declare two indices
    numbervar i := 1;
    numbervar j := 1;
    // Split each row of the memo field into an array
    // if chr(10) does not work then try with chrw(13) or chr(13)
    stringvar array x := split({Sheet1_.Comments},chr(10));
    // Declare a holding array
    stringvar array y;
    // Declare the size of the new array to be equal to the elements in array 1
    redim y[ubound(x)];
    // Copy only if the first word of each element of array 1 is neither "comments" nor a blank line
    for i := 1 to ubound(x) do
    if split(x<i>) = 'comments' or x<i> = '' then
    else
    (y[j] := x<i>;
    j := j + 1;
    // Compress the new array to eliminate the last blank element
    redim preserve y[j-1];
    // Joining the elements of the new array and the number of elements for display
    join(y,chrw(13)) & chrw(13) & ubound(y);
    With your example, this formula will return:
    3/5/2009 3:32:05 PM John Doe
    3/4/2009 12:35:43 PM John Doe
    3/4/2009 12:28:17 PM Jane Dough
    3/4/2009 12:27:47 PM Mary HadaliddleLam
    3/4/2009 12:26:55 PM Lamseedivy
    3/4/2009 12:15:22 PM Mareseedoes
    6.00
    Make sure the "can grow" option is checked to display the results and also check for case sensitivity of "comments".
    Edited by: Sanjay Kodidine on Jun 30, 2009 10:13 AM

  • How to return a specific date/time range and last event details, when checking the event log via command prompt

    I am new to scripting (literally started reading/learning scripting a few hours ago), and I am stuck in trying to get my current script/command to filter a specific date range.
    * Note: I am working with Server 2003 and 2008; because of the environment I am in, a lot of scripts (such as Powershell and VBScript) don't work; trying to stick with command line, as it appears to be the only thing that functions correctly in my environment
    I am trying to search the System log in event viewer, for the most recent server reboot. Here is the command that I am currently running:
    ===========================================================
    C:\Windows\System32\cscript C:\Windows\System32\eventquery.vbs /L System /FI "id eq 1074"
    ===========================================================
    When run, the output looks like this:
    ===========================================================
    Microsoft (R) Windows Script Host Version 5.6
    Copyright (C) Microsoft Corporation 1996-2001. All rights reserved
    Listing the events in 'system' log of host 'xxxxxxxxxxxxxxx'
    Type Event
    Date Time    Source
    Information 1074
    12/18/2013 2:48:06 AM    USER32
    Information 1074
    11/20/2013 3:25:04 AM    USER32
    Information 1074
    10/23/2013 2:06:09 AM    USER32
    ===========================================================
    What I would like it to do is only show events that have happened in the last seven days, as well as show the event details if it does find an event that matches the criteria.
    Any help would be greatly appreciated. Thanks!
    Nick

    I would prefer using Powershell , you can use below code 
    function Get-EventViewer
    param(
    [string[]]$ComputerName = $ENV:COMPUTERNAME,[string]$LogName,[int]$eventid
    $Object =@()
    foreach ($Computer in $ComputerName)
    $ApplicationEvents = get-eventlog -logname $LogName -cn $computer -after (Get-Date).AddDays(-7) | ?{$_.eventid -eq "$eventid" }
    foreach ($event in $ApplicationEvents) {
    $Object += New-Object -Type PSObject -Property @{
    ComputerName = $Computer.ToUpper();
    TimeGenerated = $event.TimeGenerated;
    EntryType = $event.EntryType;
    Source = $event.Source;
    Message = $event.Message;
    $column1 = @{expression="ComputerName"; width=12; label="ComputerName"; alignment="left"}
    $column2 = @{expression="TimeGenerated"; width=22; label="TimeGenerated"; alignment="left"}
    $column3 = @{expression="EntryType"; width=10; label="EntryType"; alignment="left"}
    $column4 = @{expression="Source"; width=15; label="Source"; alignment="left"}
    $column5 = @{expression="Message"; width=100; label="Message"; alignment="left"}
    $Object|format-table $column1, $column2, $column3 ,$column4 ,$column5
    $Object.GetEnumerator() | Out-GridView -Title "Event Viewer"
    You can do a function call like
    Get-EventViewer -LogName system -ComputerName "computername" -eventid "2017"

  • How can I view The date, time, sender and/or receiver of a text message online?

    I would like to view the date and time sender and receiver of my text messages I read it can be done. I can't find where. If somone one could point me out in the right direction I would appreciate it. Thanks

    Log into your account and to the right of the phone photo you will see usage details in blue then on the next screen pick the phone on the account you want to see the details for and under that you can click to see eveyrthing in detail.  Mary

  • Date/time theme, and audio question

    I have a video about 45 min long. I have dragged the date/time theme to each thumbnail section, but sometimes it won't allow me to drop it into the whole thumbnail, only a part of it. Is there a fix?
    Also, can you drop the date/time theme into the whole video, without having to do each thumbnail?
    How do I transfer my video to a dvd without sound?
    Thanks!

    I have dragged the date/time theme to each thumbnail section, but sometimes it won't allow me to > drop it into the whole thumbnail, only a part of it. Is there a fix?
    Have you tried dragging the left handle (and dragging to the left) or the right handle) and (dragging to the right) to lengthen the Title?
    You must do titles one at a time.
    How do I transfer my video to a dvd without sound?
    You can set the volume for a clip by clicking on the inspector icon for the clip (looks like a little gear inside the clip). Select Audio Adjustments. And move the volume slider to zero.
    If you want to do this for all clips, select the clip you just adjusted and click, EDIT/COPY.
    Now click EDIT/SELECT ALL.
    Finally click EDIT/PASTE ADJUSTMENTS/AUDIO.

  • Day of year bug - format date/time string and scan from string?

    I've noticed that the day of year returned by "Format Date/Time String.vi" starts with a value of 1 for Jan-1 while "Scan from String.vi" wants a 0 index.  Is this a bug or feature?  
    (I'm using Labview 2010 Service Pack 1)

    I think the best idea is to use seconds since for your arithmetic, because it is going to be the most consistent and robust solution. Knowing that a day has 86400 seconds is all that is needed and you won't run in possible inconsistencies with date time implementations caused by our anything but logic calender. I would hazard that the functionality of converting a timestamp into year and day of year and back is impossible to make consistent without sacrificing other possibly conflicting transformation in the Timestamp into String and Timestamp from String manipulations.
    "Seconds since" being the actual base unit in all LabVIEW timestamps, it is best to do any arithmetic on it in this base unit.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Time Capsule and Lightroom: how to suppress pictures ?

    Hello
    I'm using my time capsule to stock my pictures. Previously they were in my Mac but the disk was full so I've transferred the prious years to the data volume on my TM.
    Now when I want to delete pictures (from lightroom and from the disk) I have the folowing message: impossible because there is no trash on the disk. How can I do to be able to manage my catalogue ?
    Thanks for your help
    Eve

    No not to sync up wirelessly, I bought my time capsule because my internal disk was full, I thought as it is an apple product I will avoid the issues I have with "usual" extrenal disk (after sleep mode connection lost, and sometime I'm unable to go to sleep mode because external disks are connected, the same if I want to cut off my mac first I need to eject manually the disks than to disconnect and than I can cut off ...)
    But I though wrong Time capsule is only for time machine ...
    If you know an external disk full apple operationnal please let me know !!!
    Using time capsule with lightrrom: I transferred my pictures from the internal disk to the time capsule in a folder named "pictures" for example the 2011's folder
    then I open LR: picture in 2011 are missing, I just indicate the new location of my folder.
    I've never tried to use the folder with my ibook but as the LR catalogue is on my iMac it won't be OK
    I am sorry to have given you false hopes !!

  • Retrieve date, time, guid and user id data from IP u2013wrong mapping of fields

    Hi
    I have used the How to guide Line Items in BI Integrated Planning to implement the functionality to save the username, guid, date and time of who is planning. I do not get any errors but the field 0uname is empty and the guid field gets the username of the planner (0uname). The date and time field get populated correctly. Why does the fieldu2019s username and guid populated incorrectly? Do I have to change the code (I just copied the code from the How to document)? To me the abap code looks correct.
    We use BI 7.0 and SPS 17.
    Kind regards
    Erik

    Try this: Just replace the objects for ...LOGD = date, ...LOGT = time and ...LOGU = User:
    FIELD-SYMBOLS:  <l_chavl> TYPE ANY,
                    <l_curk> TYPE ANY.
    ASSIGN COMPONENT '/BIC/M2PLOGD' OF STRUCTURE c_s_chas to <l_chavl>.
    <l_chavl> = sy-datlo.
    ASSIGN COMPONENT '/BIC/M2PLOGT' OF STRUCTURE c_s_chas to <l_chavl>.
    <l_chavl> = sy-timlo.
    ASSIGN COMPONENT '/BIC/M2PLOGU' OF STRUCTURE c_s_chas to <l_chavl>.
    <l_chavl> = sy-uname.
    Regards,
    Andreas

  • Forwarding text mssg so it includes date /time stamp and number sent to

    My blackberry would forward or email a text message so that it included the address sent to, and was date and time stamped.
    I see how to forward in the iphone 4 ( Verizon) but it only send sends the message with no other data.
    How can I get it to include the data ?

    dbbrass wrote:
    Improved messaging and notifications is one of the big things of which many iPhone users are hoping gets added in the next major iOS update (iOS 5).  Keep your fingers crossed.
    If enough people put an enhancement request it may happen a whole lot sooner. 

  • Time Machine and Lightroom folder issues

    For some reason whenever I have opened the Lightroom app, edited some photos and then close the app, Time Machine will do a FULL backup of this folder, which is over 30GB. This is not what I want, apparently, and I don't understand why it is doing this. Is there a setting somewhere that I am missing?

    It's not just a file that's been back upped, it's the entire Lightroom folder with all the images folders within it. Even when only one file inside that folder was changed, the entire Lightroom gets back upped. Time Machine handles all other folders perfectly fine, even the iPhoto library. This behaviour is new to me as it never happened before, but started happening after I did a clean install of Mavericks.
    I've reset permissions, trashed the Time Machine preference file, started in safe mode, but nothing helps. I currently have the folder added to me exclusion list, but that's not what I want, because I used TM to back up my files.

  • Date/time icon and other movable icons on menu bar cannot be loaded on startup,but it works if manually loaded

    Strange things happened since my mbp 13' (MD-101) was upgraded to 10.8.4 ----------- time icon, battery icon,and language icon (these icons can be moved when held Command key and drag) cannot be loaded on startup, but they still can be loaded when you get into System Preferences and manually  turn them on, as well as iStat Menus
    However, some other icons didn't bother, things like BetterTouchTool, NewsBar. They are immovable!! I guess it is the key factor that the icon is movable or not making the difference.
    Someone please lend me a helping hand?
    I've attached some pictures in order to make my situation easier to be understood.
    these icons can't be loaded on my loggin in.
    but they can be loaded manually
    however, these icons will be loaded on startup
    I've almost despaired to resolve it . Thanks for your help!

    I have a similar issue. When the computer goes into "Hibernate" mode -- that is, it loses power while sleeping and it writes the contents of it's memory to disk in order to boot into that exact configuration when woken up -- many of my icons when Apple-Tab'ing to another application appear as static. They look like a slightly colorized version of the "static snow" you see when tuning into a station that doesn't exist on a UHF antenna television. Also, icons in Chrome such as web sites "favorite icons" or favicon.ico (the icons that appear in the URL bar and bookmarks) will be scrambled in the same fashion , at first , until the actual icon is loaded.
    Between this, my menu bar and finder icons not displaying, and being unable to boot into safe mode, I'm getting quite ******. I have no idea what the **** is going on with my Macbook Pro. The issue of the scrambled icons actually existed prior to installing an SSD and doing a fresh install of Mountain Lion. I may end up throwing in the towl and re-installing the operating system but I'm sure SOMETHING will happen. It seems the latest update, 10.8.2, is absolute garbage.
    What the ****, Apple? And I really don't want to take the computer to the morons at the Apple Store. They are not "geniuses" by any measure.

  • 10.5.1. bootcamp - date / time funky and and wireless goes dead

    two funky issues I've experienced on my core 2 duo macbook
    Model Name: MacBook
    Model Identifier: MacBook3,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.2 GHz
    first thing I noticed when switching back and forth from XP to Leopard was that the time gets funked up. Is there something nasty going on with EFI or BIOS or whatever holds the time? Seems like it gets messes up, then re-synced with time server over the net.. anybody else notice this?
    Also, when going to sleep and booted from xp, and opening my clamshell back up, I've noticed my wireless sometimes doesn't come back.. kinda curious that when you wake the make from sleep, XP dings like it redetected hardware that had been unplugged.. that's not the behavior I'm accustomed to when using other PC laptops with XP and waking up from sleep.. is this just the way apple collaborated on the drivers? or part of the problem with the disappearing wireless network card after waking from sleep!?

    Time: This has been discussed a lot; Mac OS and Windows read your computer's clock differently. See http://discussions.apple.com/thread.jspa?messageID=6271964&#6271964
    Sleep: Windows is buggy. Don't let Windows sleep. Don't even let it activate the screen saver.

  • Will 'Event' in the timeline support "Date/Time Range" and "Location"?

    Currently the 'Event' seems to be limited in a simple one day event as well as not able to specfiy a location(using description is a workaround). I am wondering if it will be supported in the futrure. I am it's a good to have since Streamwork is on the mobile device(iphone) already.

    Hi,
    Enhancements to the timeline are planned: you can check for yourself at http://feedback.streamwork.com/forums/11095-sap-streamwork/suggestions/409174-timeline-should-support-multi-day-events?ref=title. If you have additional enhancment request just go ahead and submit them via the "Feedback" button on the right of StreamWork. You can also vote for already entered enhancemetn request.
    Regards, Rüdiger

  • Date Time Original different in Lightroom and Bridge

    Why is it that the Date Time Original in Lightroom is affected by whatever time zone the PC is set to? This is not the case in Bridge.
    Example:
    I fly from San Francisco to Washington DC and set my notebook's time zone from Pacific Time to Eastern Time upon arrival. I also make the necessary adjustment to the Time on my camera. I shoot a photo at 6pm in Washington DC, upload it to my notebook and import it into Lightroom. Lightroom shows a Date Time Original of 6pm. So does Bridge. So far so good.
    I return back to San Francisco and set my notebook's time zone back to Pacific Time. In Lightroom, the Date Time Original of that photo is now 3pm. In Bridge, it still gives a Date Time Original of 6pm.
    Confusing? Yes, especially when traveling across lots of different time zones. In some cases, the Date Time Original will change not only the time, but the Date as well (if the change crosses midnight).
    Try it for yourself. Take a look at the Date Time Original of any given photo in Lightroom, change the Time Zone on your PC, and see the Time change for yourself.
    Since Bridge and Lightroom are both Adobe products, I have to wonder why they display EXIF times differently. Is this a bug? Or intentional?

    I have been als been plagued by LR displaying the capture time to be, say 3 AM (03:00), when I know I took the picture at 1 PM (13:00). I decided to try and see why this happens. With the help of Phil Harvey's exiftool, I can see that my Canon cameras embed the time into the EXIF data without any time zone information i.e.: Date/Time Taken = 2008:04:02 16:09:23.
    Here is what I found:
    If the image is now edited with Bridge, the information is changed to: Date/Time Taken = 2008:04:02 16:09:23-08:00 (time zone of the editing computer for the date the image was made. In this case the date was before daylight savings time started.)
    When edited with GeoSetter (good for adding GPS information) the information is changed to: Date/Time Taken = 2008:04:02 16:09:23+02:00 (time zone for Cairo where the picture was taken.)
    Lastly edited with LR, the information is changed to: Date/Time Taken = 2008:04:02 16:09:23-08:00
    When the above images are viewed in LR, using PDT, they display the time as 17:09:23 except for the image tagged with the Cairo time, which displays 07:09:23. If the computer's time zone is changed the displayed time changes accordingly.
    If the images are displayed with Photoshop CS3 all the times are correctly displayed as 16:09:23 as one would expect.
    It appears that the factoring in of the time zone into the displayed time was a conscious decision by the Adobe designers. A decision that several of us are not happy with.

Maybe you are looking for

  • AP PAYMENT RUN

    I am trying to do F110. The customer and vendor is the same. The vendor balance is $90 and cusotmer balance is $45. The difference of $45 should be picked up by F110. In the customer master and vendor master , the customer field and the vendor field

  • How do I know what is the minimum resource requirement for OLAP 11g?

    How do I know for OLAP 11gR1 ... 1. what is the minimum number of CPUs and speed required 2. how much minimum physical memory, SGA, PGA etc. is required? Regards, Anirban

  • Start BPM instance from soapUI

    Hi all, I want to start an instance of a BPM process by using soapUI. I enabled WS-RM and WS-A but I get the following error: <SOAP-ENV:Envelope xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xm

  • How to recovery my Satellite P205

    Hi everybody I have a Satellite P205-S6247. I had problems with my Windows Vista and I would like to recover the machine to the "factory" state, but the machine did not come with the recovery CDs. I've seen that there is a small partition in the HD (

  • PKGBUILD issue - ${CARCH} doesn't work

    [ "${CARCH}" = "i686" ] && KARCH=i386 [ "${CARCH}" = "x86_64" ] && KARCH=x86_64 Just doesn't work. That's why KARCH is empty and there is no vmlinuz26 in pkg in the end. I can rewrite PKGBUILD or solve this issue another way but i'm interested where