Need advice. Is it necessary to put images in folders and subfolders with LR?

It seems that the concept of spending hours putting files into folders, sub-folders and sub-sub-folders is not needed  with LR. Creating all these folders takes hours, especially if you are like me and need a major reorganization of image organization. My thought is that all images can go into one massive folder as long as they are properly tagged. I can then use LR Smart Collections to essentially virtually organize all my images. I can create many more sorting options using Smart Collections than I can by putting images into a folder. This flies in the face of everything I've learned about storing data on a computer so I'm nervouse to head this direction because it starts with unorganizing my folders and removing all tags so I can start fresh.
I don't want to take this on only to learn I didn't think of a gotcha issue. One drawback is that you are now committed to find anything by using LR or tags only. What do you think?

Lee Jay wrote:
Okay, then be honest.  What would you do if you were me?....So - give me an honest recommendation on a go-forward path (no "coulda, woulda, shoulda's").
Honestly, I always start off from assessing what you really need or what value you could get from keywording. I wouldn't advise you to add keywords for their own sake.
Lee Jay wrote:
Meanwhile, I can already find all my images efficiently in seconds in nearly all cases.  I estimate that there is about one situation per year where having a comprehensively keyworded image store would be helpful in saving me time - perhaps 15 minutes each time that happens.
Let's pretend that this isn't quite as black and white as you always put it. Let's say we're mainly talking weddings - typically wedding photographers add few keywords, if any. And let's say you do need to find certain images more often - each time you go to meet prospective clients you want to put on your iPad (you?) a portfolio of your best work for their broad type of wedding. So you might have categories like indoors / outdoors / subaqua, particular venues, age groups, religions through humanist,  formal / weird. Let's assume you do judge it worthwhile to increase the number of keywords.
Lee Jay wrote:
I could start tagging images now as I collect them.  But then I'd have all those other images that aren't tagged and all the new ones that are.  That means using the smart-collection approach would mean all the new ones were in neat collections, and all the old ones were in a gigantic "untagged" collection with over 100,000 images in it.
Actually, that is the way I would advise you to go. Don't let the perfect be the enemy of the possible. It's not at all uncommon that people are put off beginning doing some keywording by the scale of the complete task. But beginning with the images that you're currently working on isn't too much extra effort. Even if it turns out that you never eventually do go back and keyword the old stuff, in a year's time you'll have a whole year's worth tagged. While doing so you'll probably adopt ways to make keywording less of a chore. For example you might add metadata presets to slap on overall keywords for the typical shoot "Wedding, Ceremonies, Christian" and then one or more keyword sets if you can justify putting time into varying the keywords between images - eg Bride, Kids, Cake. I wouldn't waste any time building up a hierarchy (do if you want, or not if you don't).
I simply wouldn't worry about the 100,000 remaining untagged - they'll be easier to tackle once you're you've got the experience / benefits from keywording new stuff. I'd advise you to do it only as and when you need - it's too big a task to do anything else. Let's say you need your best shots of Jewish weddings and - as you're currently keeping a lot of metadata in your head - you know some are in that untagged mass. Find them through the folder system as you do now, whack on some keywords like "Wedding, Jewish, Non-orthodox". All those shots are of the bride - whack on "Bride" (maybe from a keyword set). Hey, she's got an obvious tattoo - let's just add that keyword just in case it'll be useful. And quickly move on. Whatever seems worthwhile.
Although scripting could help, where's the script? Worthwhile to write/adapt one yourself? Instead for folder names I'd just just smart collections to gather image - eg folder name contains "weddings" - and then slap on the keywords. Sure, there will be some duplication between the pseudo-metadata in the folder names and in keywords, but duplication happens with metadata. In fact, it'll be quicker to search by the keyword "Wedding" than search for images with the keyword "Wedding" and / or with the folder name containing "Wedding".
So that's how I'd advise you - start with the new work, and deal with the older stuff ad hoc.
John

Similar Messages

  • How can Automator or Applescript rotate 500,000 images in folders and subfolders.

    Hi Everyone,
    I have very specific question.
    I've got 500,000 images that sit in 98 subfolders. Some of the subfolders contain 25,000 images.
    Now my question: is there any script/automator workflow that I can use?
    I was trying to create a workflow:
    1. Ask for Finder Items
    2. Get Folder Contents (tick repeat for each subfolder found)
    3. Rotate images
    It works OK, but only for these folders where there is less than 4,096 files:
    I normally receive following error message:
    'Rotate images failed - 1 error
    too many arguments (12019) -- limit is 4096'
    Is there any way to increase this limit or create completely different apple script?
    I really hope that someone will help me with this one.
    By the way my OS is Mountain Lion
    Thank you

    well, there are a couple of possibilities here:
    system events is quitting (it will do that on its own after a few minutes of inactivity) and he script is getting confused when it has to restart
    the file 00353391301.JPG is not a valid image file (corrupt data, or an unsupported file format with the wrong extension, or the wrong type of file entirely, or something like that).
    so, covering the bases, try this revision:
    set folderToProcess to choose folder with prompt "Choose a folder to process"
    set folderPath to quoted form of POSIX path of folderToProcess
    -- 13 is a spotlight constant for images that I can't find documented anywhere (I got it by saving a spotlight image search in the Finder and examining it in a text editor).  FYI.
    set fileList to paragraphs of (do shell script "mdfind -onlyin " & folderPath & " '_kMDItemGroupId == 13'")
    tell application "Image Events"
      -- tell image event not to quit itself
              set quit delay to 0
              repeat with thisImageFile in fileList
                        try
      -- open the image file
                                  set openedFile to open thisImageFile
                                  tell openedFile
      -- you didn't specify which way or how much you wanted to rotate.  this rotates them 90° clockwise
                                            rotate to angle 90
      -- save back to same file
                                            save
                                  end tell
                        on error errstr
      -- image events had an error - dislpay alert, then skip this file
                                  my displayError(thisImageFile, errstr)
                        end try
              end repeat
      -- reset Image Event's automatic quitting
              set quit delay to 900
    end tell
    on displayError(thisImageFile, errstr)
              tell application "System Events"
                        display alert "Image Events Error" message "file : " & thisImageFile & return & return & "error: " & errstr
              end tell
              set imageAlias to POSIX file thisImageFile
              tell application "Finder"
                        set label index of item imageAlias to 1
              end tell
    end displayError
    This makes three changes - it tells Image Events not to quit itself during script execution, it expands the error handling block to cover all the Image Events functions (this will report more detail and not interrupt further processing), and as a convenience labels any problematic file orange in the finder so it's easier to find. 
    Also, I should point out that adayzdone and ludwip are presenting orthogonal approaches (one that finds files using the unix 'find' utility rather than mdfind, and one that's entirely unix-based using the underlying sips utility).  Treat each approach as its own thing; don't get confused and try to implement parts of each of them. People on this forum sometimes forget how confusing help can be when helpers are working off of different models and fail to thoroughly contextualize their posts.

  • How to export images into folders and subfolders

    I've been using Aperture as an orgianizer basically. Now I want to export everything into a sane folder structure, but I haven't been able to figure out a way. Currently I have a setup something like this:
    [Folder 1]
    --Project 1
    --Project 2
    --Project 3
    [Folder 2]
    --Project 4
    --[Folder 3]
    ----Project 5
    ----Project 6
    --Project 7
    And I want export everything exactly like that. For example Project 4 and Folder 3 should both be subfolders of Folder 2.  Does anyone know how to accomplish this?

    You can define an export preset for the subfolder names, but I do not think you can get so deeply nested as your structure is. You may have to do several exports, separately for the different parts of your library.
    An example for an export preset, that names subfolders is here:
    This will name the subfolders based on containing folder and project name.
    Regards
    Léonie

  • When making my imovie i put images in them and they all show. when i put the export onto a usb and onto a tv the images go. Anyone know why?

    When making my imovie i put images in them and they all show. when i put the export onto a usb and onto a tv the images go. Anyone know why?

    Wrong forum; we don't do Elements here.
    You want:  Photoshop Elements

  • Need advice on online cataloging system for images

    I use Lightroom and love it's library system but need something similar in an online image cataloging system where I can place all my company images privately and have them accessed by other members of the company as and when they need them. I've been toying with the likes of Flickr but find it a bit of a pain to use. Does anyone have any advice as a good online option to use? Really struggling with googling!
    Thanks

    1. See the SOD here:
    http://www.oracle.com/technology/products/forms/pdf/10g/ToolsSOD.pdf
    2. JDeveloper supports Serena Dimensions 9.1 - for a clarification of how PVCS relates to this you might want to contact the Serena guys.
    3. Not currently. One option is to use Subversion and get it as an official product from:
    http://www.collab.net/products/subversion/index.html

  • I'm desperately needing advice to a common question.  I use Quicken and love it.  But the Mac version is not as great as the PC.   Has anyone installed it by segmenting their Mac with Parallels or Fusion or Boot camp.  If so, which one do you recommend.

    I'm desperately needing advice.  New Mac.   Used Quicken on my PC.  Researched all software for Financial programs and Quicken is still the most recommended.   I want to use Quicken on my Mac.  The Mac version is not highly rated so I would need to partition my Mac.   Has anyone done this for their quicken program and if so, which partitioning program did you use - Parallels, Fusion ware or Boot camp?
    Thx

    Lisa Ellies-Laye wrote:
    Thanks.  Hadn't heard of it. ?  Is there any concern installing this free program on my Mac.    Have you used it?  Apart from being free is there any other advantage of Parallels and VMfusion. ?
    Virtual Box is safe and well developed, it offers similar or identical features to the paid competition, it may be a little less polished but that's all.
    Download and try it out, nothing to lose (except time).

  • Need advice on how to export ALL images including any changes (Versions)

    I have well over 15000 RAW ORF Olympus images in Aperture with approximately 10000 of them in the database and the rest as references to the file on the file system.
    My problem is 'many' fold...
    First I am frustrated with using Aperture only because it doesn't seem to perform well anymore either because I have too many files, the database is corrupted, DB IO is slow... I don't know but its not performing as it did when I started using it and I don't know what to do to fix it... so with that said here are a few options I am pursuing and the problems I am having doing so.
    I am moving to Adobe Bridge and Photoshop CS4, however with most of the files in the Aperture database I need to have them exported... however the only options are Master and or Version, which is frustrating because if I choose Master I get the original RAW file less all the changes done to any versions and if I choose the version I get customized JPEG's less the RAW master file. huh! I would like if possible some other options but I can understand if they don't exist.
    1. One option would be to get all the masters (which I can do now) but only if they are in the database and not referenced.
    2. Second option only would be to get all the versions if the RAW was modified and not export a version for a selected image if it does not exist.
    3. Third, have some way to only selected actual modified version images and not every image in a folder or in the database.
    4. Export to Photoshop .psd format with layers instead of versions?
    5. Filter by files in the database and files that are referenced.
    6. ... I'm open to other suggestions.
    Is there a way to move all the database files back to file referenced to shrink the Database or do I need to export everything and then re-import them as references?
    The export process for so many files is killing me as its taking me days and days and I have no way to cross check to ensure all the files and versions are retained when exported - I'm not sure what I have or how to rebuild them in Aperture at a later time once exported?
    I am exporting the sidecar file with every image but am not sure the value or significances of this file - can this file help when moving to Photoshop/Bridge?
    BTW. Another reason I wish to move from having Aperture manage my files in its database is I have now lost a few hundred unrecoverable pictures for no known reason in aperture, once after a trap as I was processing a image, I lost all of my sisters funeral shots - so so sad.
    Help!!!

    Something is very very very wrong - 15,000 images are nothing, unless you have them all in one project. I have 300,000+ with no issues in performance. Another indicator is days to export 15,000. Don't blame Aperture - you have a giant problem.
    I am not going to address how to do what you want exactly because I do not have the time but here are some hints -
    You can search for adjusted versions, and you can search for managed vs. referenced (file status). You may want to think about using relocate master with some clever subfolder options/selections to put all of you original masters and any external edited masters (PSD, etc) into a nice neat hierarchy for you to browse via bridge - Aperture is fantastic at reorganizing directory structures via relocate masters.
    There is no way to export adustments+RAW that Photoshop can interpret. If you want the Aperture non-destructive adjustments you must export versions end of story.
    Personally I would figure out why you are having such issues with Performance - there is a cause and it will probably give you issues no matter what you are using down the road.
    RB

  • Need advice on Exporting a clip of images!

    Hi there guys,
    I got a bunch of high resolution Images (1920x1440 pixels) from which i need to make a high-quality 3-minute clip,
    not bigger than 30 Mega in size. The frame of the clip doesn't have to be huge, 800x600 is good enough.
    Well i'm trying to export the project as F4V, but i can't get a clean output in excellent quality...:-(
    Can anyone help me out in some insight on the best options...maybe F4V isn't the right one? tried MOV but
    files are huge!
    I'd be grateful for any tips and advice...
    Thanks!!
    Shay

    Your design looks reasonable to me. It's important to connect devices to different members of the stack like you did.
    By looking at your diagram I'm not sure if you meant that each ASA has its own Portchannel or not. If you run active/standby scenario I believe you need one Portchannel per ASA.
    Daniel Dib
    CCIE #37149

  • Need advice on printing - Illustrator, photoshop, indesign all printing wonky and I'm not savvy enou

    Hi all, I run a small greeting card shop on Etsy (4four.etsy.com) and currently all my designs are A1 (3.5" x 4.75") which I design in Illustrator, export as PDF, and print using Photoshop on my Epson R1900. Then I use the trim marks to cut each card down in size. two cards on a page means 13 cuts per page for two finished cards.
    The business has been taking off recently and I'm starting to try and scale up to be able to handle large volume Wholesale business. I decided that the small A1 size was too labor intensive and I should size my designs up to A2 (4.25" x 5.5").
    After laying out an old design in a new A2 sized template in Illustrator I'm having some printing problems. I need to print full bleed for about 33% of my designs, but when I print the image isn't landing properly. Out of Illustrator the image is shifted to the right by 3/32" but lands just fine on the 5.5" mark.
    here's an imgur Gallery of the Illustrator prints: http://imgur.com/a/P1HtW
    I decided to try and lay out a 2-up document in InDesign but the result was very strange indeed. Both the images landed just fine at the 5.5" mark but were zoomed out in a strange way. The same thing happened in Photoshop.
    Here's an imgur gallery of the ID and PS attempts: http://imgur.com/a/FzYQ2
    I suppose I could just move my design images to the left 3/32" in Illustrator and output that way (that's the only way this has worked so far) but that seems like a jury rigged workaround instead of solving the actual problem.
    Can anyone tell me what I'm doing wrong? Thanks in advance for your help and not mocking me for being rather amateur in this.

    Focus on getting 1-up centered on an 8.5x11 page setup.  Bleed or no bleed, add all of your trims and scores.  Save as PDF and use that.  Center the 4.25" x 5.5" inside a letter sized document.  For volume work, you should be getting these printed offset and professionally on decent paper.  Consider working with a local printer who you can easily talk to and get feedback on how to setup your files. 

  • Need advice on a bizarre project mixing 29.97, 24 and 25p video!

    I'm preparing to do a very unusual project and want some advice regarding making sure the setup is correct.
    Here's the backstory. We released a couple of films a few years back on DVD, using new prints, new transfers, etc. They look very, very nice.
    As it happens, they were edited together, many, many moons ago, into a compilation film. Now we'd like to release the compilation film as well.
    However, the available materials for the compilation film are not all that good. So what we'd like to do is use it as a guide, and reconstruct it using our better source materials.
    Now comes the complication:
    The available "guide" materials are PAL -- 25p. Our better source materials are NTSC - 29.97i.
    OK. Being a bit of a hacker, I whipped up a program that sucked in 25p video files and spit them out as 24p; in effect, removing the traditional PAL speedup.
    I pop that into FCP HD (in a 24p timeline, of course) and it works fine. Each frame slots in perfectly.
    I grabbed the original PAL audio, plonked it into the timeline, slowed it down to 96%, and that matches up perfectly too. So now I can play the original guide film in 24fps.
    Next I took the 29.97 3-2 pulldown NTSC video, and hacked together another little app to remove the pulldown and spit out 24p video. That also works just fine. I can grab segments of the new video and lay them over the old video, frame by frame.
    So far, so good. But some questions before I do too much work:
    1) I saved the slowed-down audio to an AIF file so I could just use that rather than the slowed-down audio track. But when I lay the AIF back into the timeline, it is very slightly speeded up; the original slowed-down track is 1:27:22:17/24 long; the AIF is 01:27:17:12/24 - a ratio of 0.99900662. Looks to me like a 29.97/30.00 problem. Interestingly, the AIF lists in the browser as being 1:27:22:23, so it's getting shrunk when it goes into the timeline. Anyone know how to deal with this?
    2) The above problem has me concerned that when I go to export the video/audio for compression, they'll become desynchronized. Are there gotchas I have to worry about? Should I be munging stuff to 23.98? Or is 24 fine for DVD production.
    Much obliged for any help you can provide
    G4 1.44DP   Mac OS X (10.4.3)  

    Robert, first of all, I don't know the answers to your two questions - the first I'd have chalked off to a rounding error, but I believe for going to video, you want to be at 23.98. Have you tried creating such a sequence and seeing if you have the same problem with audio length slip? Which may have bearing on your second question.
    Now to my question - the "hacks" you threw together to modify the frame rates, etc. Any chance you might give some access to them - even if they're rough-and-ready?
    Thanks,
    Patrick

  • I have 31.0 version on firefox, but I am trying to fill out application for job and I need encryption icon so I can put ssl 3.0 and tls1.0 can't find it?

    I have the same problem as raven123 but my version is 31.0 so will her solution also work for mine?

    Do you really need to disable all higher TLS versions?
    You can modify the security.tls.version.min and security.tls.version.max prefs on the <b>about:config</b> page to set which TLS versions are enabled.
    You may need to close and restart Firefox after changing these prefs.
    security.tls.version.min = 0 (1 will disable SSL3 and only enable TLS)
    security.tls.version.max = 2 (0 will disable TLS 1.0 and higher, leaving only SSL3 enabled)
    * http://kb.mozillazine.org/security.tls.version.*
    0 means SSL 3.0, 1 means TLS 1.0, 2 means TLS 1.1, 3 means TLS 1.2 etc.

  • Safari 5 don't print jpg images in Windows and prints with problems in Mac

    Hi All,
    When I try to print images in Safari (Windows) it will print blank page.
    This is sample source:
    <html lang="en-US">
    <body>
    <im g src="http://img185.imageshack.us/img185/4651/wefwefwe.jpg">
    </body>
    </html>
    This is ok in Mac.
    Also in Mac When I'm printing image in Landscape it print image in 2 pages.
    Image really fits in landscape mode and there is no need for second page.
    I thought that the problem is margins..., but changing them do smaller values doesn't help.
    Can someone help out?

    Hi, I also have the same problem that cannot print preview on .jpg image.
    When I try to change image to .png , it work.
    It's this safari5 bug?

  • Exporting images in PDF and broadcasting with custom template error in BI 7

    Hello! We're in the process of creating broadcast reports and are running into some problems. We need someone with experience exporting PDF's or creating broadcasts using custom web templates in 7.0.
    Our issue is two-pronged:
    1) We want users to be able to export (with WAD command) web reports to PDF with the company logo. We have a custom web template with just a JPG image and analysis grid. But for some reason, when this template gets exported to PDF, the image does not get included. We've tried embedding the image into table, group, container, container-layout to no avail. Any suggestions?
    2) We also need the company logo in PDF broadcast reports. We replaced the standard broadcasting web template 0BROADCATING_TEMPLATE (using RSCUST27) with a custom one, but we immediately get the "error loading template ..." when trying to access the Broadcaster. There seem to be no OSS notes for this. 
    Please let me know if you need any additional information.
    Thank you!!

    1) We want users to be able to export (with WAD command) web reports to PDF with the company logo. We have a custom web template with just a JPG image and analysis grid. But for some reason, when this template gets exported to PDF, the image does not get included. We've tried embedding the image into table, group, container, container-layout to no avail. Any suggestions?
    which std template are you replacing with this custom template?
    Broadcasting
    Query Precalculation
    Report Precalculat.
    Enterpr. Report
    Ad Hoc Analysis
    I mean which template does online link default to when it is clicked.

  • CAN I PUT ALL MY FOLDERS AND INFO IN ONE MASTER FOLDER SO THAT IT'S EASY TO BACKUP PERIODICALLY?

    Hello,
    I thought of a solution to backing my files up in a quick way instead of having to look around all over my hard drive to drag my music, photos, documents, etc into my external hard drives for backup. (which is the current method I use)
    Id like to know if there would be any downsides simply putting all of the information like: music, documents, photos, videos and downloads (not including Applications) into one unique file.
    I am trying to avoid using Time Machine and backup Applications. I understand you can also program hard drives to mirror each other, but I belive my current external hard drives do not support this.
    The question is basically: could it be harmful in any to  store ALL(or as much) of your info that requires periodic backup into one master folder? Or does anyone know of any rule that may go against this solution?
    Thanks beforehand for the feedback.
    Emmi.

    Emmi Kirschen wrote:
    ... Id like to know if there would be any downsides simply putting all of the information like: music, documents, photos, videos and downloads (not including Applications) into one unique file.
    Yes.
    A long time ago Apple did not force users into keeping their files in specifed locations, such as music in the Music folder, movies in the Movies folder etc. However, iTunes, iMovie, iPhoto all have evolved to the point that Apple has made it difficult for us to do anything other than follow their recommended locations.
    There are certainly ways around this - you can specify alternate locations for your iTunes Library and your iPhoto Library for instance, but you will be swimming against the tide. This will undoubtedly cause problems that will be difficult to diagnose because you will be a lone outlier, attempting to circumvent Apple's preferred organizational method.
    I understand that you do not want to use Time Machine, but again this is Apple's recommended (if arguably heavy-handed) way of doing things. You can easily configure Time Machine to exclude folders that you do not want it to back up. If Time Machine does not address your needs, then consider Carbon Copy Cloner. It can also be customized to back up only those folders you specify: music, documents, photos, videos and downloads if that is your wish, and it can perform on a schedule.
    I believe you will find it more convenient - and assure you it will be much less likely to cause difficulty - than what you propose.

  • Can't convert raster image to vector and save with a transparent ground.

    I'm pretty sure I know all the right steps as far as Live Trace and Expand go, but it seems I can't detach the image from the white workspace background. I tried selecting the white in my image and deleting it, but Illustrator isn't even allowing me to select. I feel like something very simple and fundamental is wrong, I just can't figure out what it is.

    Thanks, didn't see that option before. Tried it, but I still have the problem of the file including all of the workspace and being much larger than the original file. There has to be some trick to detaching the black from the background we're missing.

Maybe you are looking for

  • Xml publisher report problem

    I have a xml publisher report which list job names. After submitting concurrent program, I am getting below error A semi colon character was expected. Error processing resource some of the Jobs have special character '&'. below is code CREATE OR REPL

  • Iphoto cloud based backup

    I am currently looking for a solution to backup my growing iphoto libary on the web.  It would be nice to be able to view the photos on the web as well.  So far I have considered using: -flickr to upload all of my iphotos events -google picasa with a

  • Lotus integration In Portal

    Hi. Now my task is to integrate lotus notes into portal. So I have url = "http://lotnot/customer.nsf" And I have User = "Alexander Troshanin" and Password = "0123" When I open page("http://lotnot/customer.nsf") using Intenet Brouser, first I enter Us

  • Constant java error

    Hey all, So I installed Yosemite and when I logged in for the first time I entered my iCloud password and then screen with only continue and back visible and an error message saying "To view this web content, you need to install the Java Runtime Envi

  • Can I use 80GB in Portege 4000?

    I am tired of looking for a suitable hard drive for my Toshiba Portege 4000 (PIII) laptop. The only ones available come in 80GB. Is there any way I can fit that hard drive size in my laptop? I must know this before I buy one.