Fixed Video CreationDate Sorting After Converting PSE Catalog

My experience with the problems of sorting videos properly by creating date nearly caused me to give up and go back to PSE Organizer...but I dug in, hacked out a solution, and now I'm sharing it in case it helps anyone else.  This worked for me...but please realize that I could have destroyed my own catalogs if things weren't all as expected.  My Python script below is a down & dirty, no frills way to convert and push all the "CORRECT" timestamps in my old PSE10 catalog to the horribly handled and mis-dated VIDEO files in LR4.  Here's the script for all those who dare to take the life of their catalogs into their own hands.
#  WARNING: Use at your own risk.  This worked for me, but could completely    #
#           DESTROY your catalogs for both Lightroom (LR) and Photoshop        #
#           Express (PSE).  Copy the {YourFilename}.lrcat from LR and the      #
#           catalog.pse??db from PSE to your local python directory and make   #
#           BACKUP copies of those files before you try to move the modified   #
#           ones back to their proper locations.                               #
# Auth...erm, Hacker: Sam Birch                                                #
#  Purpose: Fix Adobe's repeated inability to apply proper dates to video      #
#           files when importing a PSE catalog.  This script gets the list of  #
#           all video files in a Lightroom 4.0 catalog (have not verified this #
#           for any other version), looks for the correct creation date/time   #
#           for those files in the PSE catalog, converts the PSE UTC stamp to  #
#           MY LR local timezone (US/Central), properly formats the output for #
#           LR's captureTime, and saves them in the LR catalog.                #
#    Notes: 1) I moved from PSE 10 to LR 4.  Those are all I wrote this for,   #
#              so do not expect this to work for anything else.                #
#           2) I am in the US/Central timezone, so anyone not in that timezone #
#              will need to edit the script to make it work properly for you.  #
#           3) This is a Python script, and I used 2.7.2 on Windows.  I also   #
#              needed to add the pytz package to handle the timezone           #
#              conversion properly.                                            #
#           4) I am not a Python expert.  I wanted to learn Python, and it let #
#              me accomplish what I wanted.  I would appreciate any construct- #
#              ive criticism with proposed improved code, but please don't ask #
#              for modifications or customizations from me.  I don't have the  #
#              time or knowledge to do so...sorry.  As this was simply about   #
#              taking the least time to get LR functional for me, all config   #
#              items are hard-coded and require modification of the script...  #
#           5) ALL my video files had unique names.  If this is not the case   #
#              for you, THIS WILL NOT WORK RIGHT FOR YOU!!!!                   #
import sqlite3 as lite
import sys
import os, time
from datetime import datetime, timedelta
from pytz import timezone
import pytz
# Your Lightroom catalog (COPIED to the local dir)
lrcon = lite.connect('./test-fresh.lrcat')
# Your Photoshop Express Organizer catalog (COPIED to the local dir)
psecon = lite.connect('./catalog.pse10db')
# Get all the video files in the LR catalog...
lrcur = lrcon.cursor()   
lrcur.execute("SELECT Adobe_images.CaptureTime, AgLibraryRootFolder.absolutePath, AgLibraryFolder.pathFromRoot, AgLibraryFile.idx_filename, Adobe_images.id_local  FROM Adobe_images, AgLibraryFile, AgLibraryFolder,AgLibraryRootFolder WHERE (Adobe_images.fileFormat=\"VIDEO\") AND (Adobe_images.rootFile=AgLibraryFile.id_local) AND (AgLibraryFile.folder=AgLibraryFolder.id_local) AND (AgLibraryFolder.rootFolder=AgLibraryRootFolder.id_local);")
psecur = psecon.cursor()
rows = lrcur.fetchall()
# Variable setup for stats and timezone conversion...
failcount = 0
successcount = 0
utc=pytz.utc
central=timezone('US/Central')
fmt = "%Y-%m-%dT%H:%M:%S" #LR captureTime format string
for row in rows:
    # Attempt to fix through local modified time...but useless since I used
    # PSE backup/restore a few years ago, and that wiped out all original
    # timestamp information.  If you are in Windows and your modified timestamp
    # on the file is correct, this should work...since it worked (but didnt' fix
    # my problem due to PSE's terrible version of backup/restor), I thought I
    # would leave the code as inspiration for others it still may work for...
    #myroot = row[1].encode('utf8')
    #mypath = row[2].encode('utf8')
    #myfile = row[3].encode('utf8')
    #myidx = row[4]
    #photo = myroot+mypath+myfile
    #mytimeLR = time.strftime("%Y-%m-%dT%H:%M",time.localtime(os.path.getmtime(photo)))
    #print photo," last modified: ",mytimeLR
    #updateTmp = (mytimeLR,myidx)
    #lrcur.execute('UPDATE Adobe_images SET captureTime=? WHERE id_local=?',updateTmp)
    #lrcon.commit()
    # Get the filename (ALL MY VIDEOS HAD UNIQUE FILENAMES, SO THIS LEVEL OF MATCHING SUFFICED FOR MY PURPOSES)
    myfile = row[3].encode('utf8')
    # Set up the parameter for the query to the PSE catalog
    matchParm = []
    matchParm.append(myfile)
    # Get the UTC timestamp and file name from the PSE catalog
    psecur.execute('SELECT search_date_begin, filepath_search_index FROM media_table WHERE lower(filename_search_index)=lower(?)',matchParm)
    pserow = psecur.fetchone() # I could do this because I KNOW all my video files have unique names
    if pserow != None:
        # Go through the hassle of decoding and converting the UTC time to US/Central...as well
        # as from the PSE format to LR format similar but different enought to be annoying...
        psedate = pserow[0].encode('utf8')
        pseUTC = datetime(int(psedate[0:4]),int(psedate[4:6]),int(psedate[6:8]),int(psedate[9:11]),int(pse date[11:13]),int(psedate[13:15]),0,tzinfo=utc)
        lrLocal = pseUTC.astimezone(central)
        lrDate = lrLocal.strftime(fmt)
        # I like seeing progress...
        print myfile, ": ", pserow[0]," -> ", lrDate
        # push the corrected time back into the LR catalog...the only WRITE activity so far...
        updateParm = (lrDate,myidx)
        lrcur.execute('UPDATE Adobe_images SET captureTime=? WHERE id_local=?',updateParm)
        lrcon.commit()
        successcount += 1
    else:
        # I got here because I added some video files to LR after I imported, but before
        # I hacked out this script...
        failcount += 1
print "SUMMARY: success count = ", successcount, "  - fail count = ", failcount
if lrcon:
    lrcon.close()
if psecon:
    psecon.close()
Sam

Also, since my camera does not create sidecar files and the video format does not allow for metadata directly...I have problems with date sorting.  LR likes the "Creation Date"; while I understand that Windows' NTFS is one of the few operating systems that actually store a "Modified Date", I cannot understand why Adobe would choose to use a data that changes with every copy (Creation Date), rather than the original capture date (Modified Date) when it is clearly available.
My solution is to move my videos to their final destination outside of LR, run the below PowerShell script to set Creation and Accessed dates both to the Modified date for the file, and then import with LR.  This is a blatant waste of time, but it seems the least of evils I'm aware of (up to the LR 4.0 I'm currently running).  If anyone knows of a better solution, please point me that direction.  Otherwise, I'm hoping this may help others in my boat.
If you ask "Why PowerShell when your last script was Python?"...it boiled down to being able to do the most work with the least amount of coding since Powershell has all that's necessary.
Just create the below as FixDates.ps1, then use command.exe in the root of the directory (and sub directories, since this works recursively) you want to do this for.  I use this on the directory for the batch I just imported.
OH, AND OF COURSE...USE FOR INSPIRATION/UTILITY AT YOUR OWN RISK.  IT WORKS FOR ME, BUT I GUARANTEE NOTHING...
$Videos = Get-ChildItem . -Recurse | where{$_.Extension -match "avi|mov|3gs"}
foreach ($Video in $Videos) {
    Write-Host $Video.fullname
    $Video.CreationTime = $Video.LastWriteTime
    $Video.LastAccessTime = $Video.LastWriteTime
Sam

Similar Messages

  • Journe air 1000 - video playback lags after converting to mjpeg

    Hello,
    i have bought 2 journe air 1000 photo frames, and i'm trying to play video on them.
    To convert the video files i'm using the provided software that was in CD that came with the frame - ArcSoft video converter 2.5, which converts the video to a MJPEG avi file with quite poor sound quality.
    And the main problem is that, video starts to lag after some time, there is no sync between sound and video, and eventually it crashes.
    Also some video track just crash straight away..
    I have 2 files, one is 30 mins long and the other is 10 min long, both experience the same symptoms, on both frames.
    I have tried to use newer arcsoft converter software, different converters, tried splitting the files to smaller segments but to no avail...
    It just like there's some buffer in the frames that fill's up and the video starts to lag.. anyone experienced that?
    Maybe there's some other codec that this frame supports except mjepg? i have tried some (mpeg4, divx, xvid) but it didnt work, it doesn't even play mjpeg mov's, just avi's...
    Any ideas how to fix it?
    thanks.

    yes i have tried loads of other formats: with mjpeg movs i get some flickering sound and black screen, and with all the others (h264, mp4 and so on) - "decode failed" and i haven't found anywhere in specs that it supports anything else except mjpeg avi..
    maybe some specific setting need to be applied to other formats? has anyone else succeeded in playing other formats? what settings did you use?
    thanks

  • Need help fixing video shut off after 2 minutes in non-windows mode

    Good morning experts in this forum,  I need your help solving a hardware/firmware problem of my computer. I have a Hpe 250f computer with Radeon 5700 series video card on it.  I recently noticed one strange problem which prevents me from doing any meaningful work in non-windows mode: The video will be shut off after around 2 min if the computer is not in Windows mode.  This includes BIOs mode and recovery mode.  There is no problem if the computer logs on Windows within 2 minutes.  But if I stay in BIOs settings or try to use HP diagnostics or try to recover a backup using windows backups for around 2 min, the monitor will turn blank and the power button of monitor will turn yellow from green indicating no video output to it.  It can not wake up by mouse or keyboard. I read that older BIOs have problem with fan speed and I reflashed the BIOs.   But it did not work. This problem drives me mad since I had occasional hard drive failures recently and I could not recover my system (That is why I noticed the problem recently, but the problem could have existed when I bought the computer).  Now the computer is out of warrenty and I could not find any similar case using Google search.  I really appreaciate your help. Thanks

    I had the same problem when I upgraded.  In my case it definitely was the power supply.  In my effort to figure out the problem by swapping components in and out, the dieing power supply killed 2 P8P67 Pro and 2 2500k, and when I tested with the P67A-GD65, the power supply totally died, but the good thing is that the GD65 survived.  Swapped in a 430W to test and everything was perfect.  At full load with GTX260, it will draw less than 300W, so your power supply is fine to test.

  • Upgraded to PSE, catalog won't convert

    Been using PSASE3.2 with no problems. Just downloaded and installed upgrade to PSE, installed no problems. Runs no problem, although catalog is empty - it didn't notice my current catalog iwth 13000 photos in it.
    I followed the procedure on the KB and located my current PSASE catalog to convert. Conversion fails, complains that the catalog is corrupted and I should repair with the creating program. Unfortunately, PSASE does not appear to have this functionality. I saw an article on the KB that said I could hold down CTRL when starting PSASE and I would have an option to repair catalog but I don't get that option.
    Any suggestions for how to get my PSASE catalog into PSE?

    I have been through a similar hell over the past week, and I was finally able to workaround the issue.
    Attempting to upgrade from PSA 2.0.1 to PSE6. When attempting to convert the catalog, it would always bail out at 26% and complain that it could not convert.
    I tried a variety of approaches suggested by a variety of users, but no luck. Of course, PSA2 would always claim that its catalog was fine, so no help there.
    Finally, this approach (very PAINFUL!) worked. In a nutshell, I recursively deleted half of the photos from the catalog until the PSE6 conversion succeeded. Specifics:
    First, backup the PSA2.0 catalog (.psa file and associated folder containing cache) and mark it read-only to prevent accidental corruption. Just for extra safety, make another backup copy in a different directory.
    Second, open PSA2. Unhide all of your hidden photos to make sure there are no hidden pics lurking about. Now, simply delete half of the photos from the catalog. Make a note of which range of items you deleted. Close PSA2.
    Now, open PSE6 and attempt conversion. Conversion may succeed, as I discovered to my delight. If conversion succeeds, it means that one (or more) of the items you deleted was causing the problem. If it fails, the problem item is still in the catalog.
    Close PSE6.
    If the conversion in PSE6 FAILED, assume that it will succeed with the other half of your catalog. So go back and attempt to delete the other half of the catalog and see if conversion succeeds.
    Do this by restoring your original PSA2 catalog by deleting the current .psa and its folder and copying your backup copies into their place (ctrl + drag). You should still have your read-only backup copy in place!
    Open PSA2. You should have your original catalog and photo inventory. Delete the half of the catalog that you did not delete the first time. Close PSA2, open PSE6, and attempt conversion. If it succeeds after having failed the first time, then you know that something in the half which was deleted was what was causing the failure.
    Continue this process with smaller and smaller portions of the catalog. With luck, you can zero in on a small number of culprits (hopefully only one).
    I spent about an hour doing this last night, went through about 12 iterations, and finally reduced the problem down to one of four possible photos causing the conversion issue. In the final step, I deleted these four photos from the catalog, successfully converted it in PSE6, and then just re-imported those four into PSE6.
    When the conversion succeeds, all of my tags and collections came over to PSE6 OK. The PSA2 collections become albums in PSE6. I think I got lucky that only one or two files were preventing conversion; I hope there are no situations where many records are corrupted.
    My ultimate goal in going to PSE6 is to use PSE6's ability to write your tags onto the jpg files themselves. Hopefully this will free us in the future from being shackled to PSE's proprietary database system, and allow us to import our tagged jpgs into any future photo-management application, just like we do with MP3 files. The metadata will be embedded in each file, where it belongs!

  • Convert Video files in iTunes but no Audio after converting

    Hy, do somebody know what is the matter if i want convert Video files in iTunes (8.01) but after converting the files don't have any audio but i can see the movie perfect in iTunes and on ATV ????

    Your likely using muxed video such as mpeg1/mpeg2, which is capable of being played back in QT (with the QT mpeg2 playback component in the case of mpeg2 source video) but not able to be converted.
    I could well guess which software you should use to undertake your conversions but it would be better if you could provide details of our source video so that we can suggest an appropriate workflow based on that information.
    You can use the Inspector window in QT to see this information.

  • Videos stops playing after 5 0r 6 seconds, how do i fix this problem

    videos stops playing after 5 0r 6 seconds, how do i fix this problem ?

    Howdy z71jimmy,
    The following article provides tips that can help resolve most playback issues in iTunes for Windows.
    Troubleshooting iTunes for Windows Vista or Windows 7 video playback performance issues
    http://support.apple.com/kb/TS1718
    Cheers,
    Allen

  • After converted, what video formats work w/ ipod?

    i down loaded some video's from limewire and put them on itunes. after converting all the videos so they were ipod compadable,the ones that were converted had NO sound and the original unconverted videos had sound.so,what video formats,downloaded from limewire,(ex. mp3, mp4...) work w/ my ipod and itunes after bieng converted so they have sound when i listen/view to them on my ipod.
    windows   Windows XP  

    sound.so,what video formats,downloaded from
    limewire,(ex. mp3, mp4...) work w/ my ipod and itunes
    after bieng converted so they have sound when i
    Mp4 is what you need, but honestly, you'd be much better of converting them yourself, as you never know what kind of quality you're going to get when you get them from somebody else, plus, you can make sure the sound is set correctly!

  • Quicktime's trim tool doesn't stay after converting video

    I had a bunch of mpg files that I only needed a portion of in Final Cut. Because that format doesn't work in FCP, I needed to convert them
    To save time, I used the trim function on quicktime to just get the bits I needed. However, I noticed that after converting the MPGs to DV PAL, they reverted back to their original length. I tried a couple of other formats and the same thing happened. Can anyone help?

    I just tried to use QuickTime to trim mp4 video clips, after trimming I can expoted video clips to iTune or
    other folders. Somehow my quicktime could not play mpeg video directly, so I need to user other software (
    Wondershare video conveter) to first convert mpeg video to mp4 format, then use QuickTime to trim mp4 video clips.
    Hope this may help

  • Moving my photos and PSE catalog to a new machine... and upgrading

    H
    I am seeking advice on the best way to do the following: 
    - move my photos from my current laptop to a new laptop
    - recreate my current PSE catalog on the new machine
    - do both of the above while also upgrading to PSE 11 on the new machine.
    The last time I did this sort of action -- moved my photos to a new machine -- it was sheer bedlum.  Hoping to avoid the pain this time.  
    Do I first need to move my photos to the new laptop -- recreating the exact smae file structure that I have today -- amd them export and import the PSE catalog? I want to repeserve the album structure and tagging that I have created.....    
    Any help/pointers appreciated. 

    The recommended way to move to another computer with a new OS or PSE version is to use the built-in backup and restore function in PSE.
    - Start with a clean catalog : reconnect missing files, repair, optimize. That's good practice even if it is not strictly necessary.
    - Do a full backup on an external media (external USB drives are safe and affordable). If you have several catalogs, do as many backups. Warning ! each separate backup must be in its own separate folder.
    - Now, you have installed your PSE version (possibly a newer version) on the new computer, you can do a restore from each catalog backup. That will restore the catalog and the picture files ; if you have checked the option to keep the folder tree structure, it will be kept.
    The smart thing about this process is that not only everything is restored, but if you have upgraded to a newer PSE version, the catalog will be automatically converted to the newer version ; furthermore, you have a backup!
    http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Move_your_photos_1
    http://helpx.adobe.com/photoshop-elements/kb/common-catalog-issues-upgrade-elements.html
    Edit:
    This shows why a backup from the organizer is often a better solution than external backup solutions. Suppose your old computer crashes, you can restore to a new computer and newer PSE version easily. It's also a good way to update a secondary computer (a laptop for instance) to the same 'sync'  than the master computer.

  • Still color in photos after converting to B&W

    Hi there,
    I have a very strange problem. After converting pictures to black and white in Lightroom (doesn't matter if I choose B&W in the basic menu, set the saturation to 0, set the HSL saturation sliders to 0 or choose a B&W preset) my pictures still have some colors in them. Before and after exporting.
    The pictures are shot in RAW with either a 550D or a RX100. Same results for all. I use Lightroom 4.3.
    I searched a lot on google and also here in the forum and didn't find anything about it.
    Any ideas?
    Regards,
    Julian

    If you have Lr and PS side by side they will display identically. If they're not something's definitely wrong, and I agree with ssprengel that it is most likely a bad monitor profile that one of them chokes on.
    If you don't calibrate and profile the monitor yourself (which is the right way to do it), the safest bet is always to use sRGB (or if you have a wide gamut monitor Adobe RGB, but you don't). >This thread< contains a description of how you do it.
    Some background:
    Monitor profiles contain two parts. One, simply put, fixes white point, corrects the response curve and removes color casts. This is loaded into the video card (or the monitor itself) and affects everything system-wide. This is the calibration part.
    The second part is the profile itself, which is more complex. It is, in short, a complete description of how the monitor behaves in three-dimensional color space. Among other things it defines exactly the position of the three primaries. It takes the calibration into the picture, so in other words it is a description of the monitor in its calibrated state. But only color managed applications read the monitor profile and correct for display accordingly. Other applications will just ignore it and send the numbers straight through.
    This second part, the profile itself, is what frequently causes problems, because many profiles aren't written correctly. Monitor (and laptop) makers are notorious for this. You'd think they'd get it right, but they just don't.
    To make matters worse, these bad profiles are often pushed through Windows Update, so people don't even know they're being installed.

  • Can't create hyperlinks after converting a Word document with Acrobat XI Pro

    Hello,
    Here's my problem.
    I'm making a catalog document for my company.
    The document that I'm converting to PDF is made on Office Word 2013 and it's a .docx format file.
    I'm on Windows 8 and the latest version of Adobe Acrobat XI Pro installed.
    Inside my word document I have some pictures that have a hyperlink. Those hyperlinks directionate to a bookmark inside the word document. Inside the word document, if I do Ctrl+Click over the image, it will go to the page that has that bookmark. And it works. Period.
    Beside that I also have some Cross-references on the word document. Those cross-references basically are the page number from the bookmark reference. By accident on most of those cross-refrences I left enabled the "Insert as hyperlink" on the cross-reference box options. When I Ctrl+Click over those cross-references I also go into the page of that cross-reference.
    After I convert the word document into pdf, I can't get any hyperlink on the pictures, if I simply click on them, like if I click on a hyperlink on a webpage or something similar, the pdf won't go the the bookmark on the page that I've set on the word document.
    The funny thing is that if I click on the other cross-references I can go to the page were that cross-reference is...
    I tried all the methods to convert the file in order to obtain hyperlinks on the images...
    I tried to use the Acrobat tab and the File -> Save as Adobe PDF, as both uses Acrobat PDFMaker, but nothing works.
    Even tried all options on Acrobat PDFMaker but can't get it. "Create bookmarks", "Add links", "Convert Word Bookmarks", "...Word Styles to Bookmarks", "...Word Headings to Bookmarks", none works....
    If I try to simply print from inside Word by choosing the Adobe PDF printer (like if I choose a regular printer), in the printers options it doesn't show up any hyperlink/link/bookmark option related, so that way is definitely a no go...
    To reference, on 2006/2007 I also worked on a similar project and used this method on the word document (on Word 2003). At that time I had another Adobe Acrobat version, can't remember what version was...
    This hyperlink situation was without any problem. After conversion, on the pdf file, if I click on a image it went to the right place inside that pdf file...
    So I'm simply lost wether it's a problem of me, a problem of Word, a problem from Acrobat... simply lost...
    I'm desperated....please, someone help me!!!

    Ok, sorry for never talk since the last time, but I finally discovered why I had this problem.
    I found out that M$ decided somehow to change the process of embedded hyperlinks on a image, but in a docx it doesn't get affected. Only after transforming it into a pdf by Acrobat that the problem emerges...
    I found this site http://www.pb-solv.net/2013/08/embed-pictures-in-microsoft-word.html
    Basically all I have to do is "Use Insert, Quick Parts, Field, IncludePicture. This inserts the picture in the old way as a field. You can use Alt-F9 to reveal the field codes and change the images to be embedded rather than linked."
    Then, after converting it with acrobat, the pdf finally have hyperlinks on the images!!!
    They change this on Word 2007. As I had the 2003, at the time, I didn't had this problem.
    As I said, M$ changed something, but only is affected after converting with acrobat. So, acrobat also missed something in the process. I call it a 50/50 guilt.
    To bad no one ever notice this problem...

  • After converting PDF to word, font sometimes changes in the middle and I can't get the document all in the same font.  It happened on many documents.

    I am preparing a book which I want in Times New Roman. After converting from PDF files, many of the pages had other fonts, mainly Cambria in them and I couldn't get the whole document in the same font.  How can I fix this?
    ESharan

    Fix it in Word. Converting to Word from PDF is a complex and uncertain process, just the first stage in editing. But does the book only exist in PDF? Often people go through PDF because it seems easier, while often it is harder.

  • Trouble converting a catalog from Adobe Photoshop Album into Elements 9

    I have looked all over and found instructions for converting a catalog from Adobe Photoshop Album into Photoshop Elements 9, but it does not see my catalog?  I have tried selecting it by clicking "Find More Catalogs" and I select the folder containing the catalog but it does not show up and the option to "Show Previously Converted Catalogs" is disabled?  I am quite frustrated, as the entire reason for purchasing Adobe Photoshop Elements was to be able to import my old Photoshop Album catalog.  Any assistance would be greatly appreciated.

    Thank you for the suggestion, I have tried converting the catalog from the psa file as well as restoring from the psb (backup) file and neither one is working on my new computer.  It partially converts the catalog from Photoshop Album (PSA) 2 but then all the file links are broken in Photoshop Elements (PSE) 9.  I have about 10,000 photos in this catalog, so it is a lot of files.  I still have my old computer so I tried installing PSE 9 on it and then it converted the PSA catalog fine, so I backup up the PSE 9 catalog on my old computer and tried doing a restore from this backup on my new computer and same thing, only some of the files come through.

  • I can't stack photos (previously in version sets) imported via "Upgrade PSE Catalog". Why not?

    I am currently using LR 3.6 on a Windows 7 OS/ HP laptop.  Previously, I organized my photos using PSE 9 Organizer.  When I switched to LR 3, I selected the option to upgrade my PSE Catalog to bring my photos into LR.  LR imported all the photos and keywords/ratings but not my version sets or smart albums.  I understand LR doesn't have version sets so I was willing to manually restack my photos but now LR is not giving me that option.  Any pictures that were previously in a PSE version set are showing as unstackable (all the stack options are grayed out) even if they are located in the same folder on my hard drive.  I'm having trouble finding anything on the web that addresses this issue.  Any help/direction would be much appreciated as my catalog is rather cumbersome at the moment.
    Thank you,
    Sierra

    If dj_paige's suggestions don't help, check to make sure that Lightroom thinks both photos are in the same folder. When I converted from PSE 8, I had some photos in version sets in the same actual folder that LR thought were in different folders whose name differed only by case (e.g. "MyFolder" and "myfolder").  Thus, LR refused to stack the photos upon catalog conversion.
    You can check this by selecting each of the suspsect photos in turn, right-clicking, and selecting Go To Folder In Library.

Maybe you are looking for

  • Yikes. Messed up Xserver with testing blah....

    Hello.. I use Nvidia 96xx... blah blah.  I added the testing repo and updated everything in an attempt to install compiz-fusion.  Silly me!  Now X server fails to start up when I boot up. Using a Zen live disc right now because my command line skills

  • Capital One Logic...

    I currently have 2 Capital One accounts.  One has a 2k limit and one has a 4.5K limit, both are QS1 cards.  I've tried over and over to get CLI's on the cards, but was unsuccessful.  I attempted to apply for a new card today (with hopes of card conso

  • LR is so good at things but forgot some of the things Bridge...

    I love LR for developing! This is where your real talent shows. Why would you not, at least offer the basic goodness of Bridge, by being to auto update a particular folder that is my DB? Maybe that is excessive... But surely it looks at my main folde

  • FM for fbl5n

    any function module for fbl5n.( customer line items display) keshav

  • Impact of new billing type introduction in SD on APO-DP

    Hello Experts, Our SD team is introducing a  new billing type. I would like to know any impact of the same in APO-DP, if yes, what are the pre-checks to done and precautions to be taken. (Currency used in APO is USD and SU as UOM) TIA.