Need help with workflow to criticize the images of the student

We used Lightroom CC to criticize images students workshop by import of each card and then work in the develop Module to try different culture, exhibition, etc. Process import/copy files got the largest, became too long for each card. We want to use the Add option, but of course, it is not available when importing from a card SD/CF.

I need in the catalog previews pretty long to select a half dozen with them to review/edit. The changes are mainly to show how they can adjust their framing and exposure in the future, don't not to teach fitting, so they published versions have no special value.

I'd rather leave the files on student cards, create standard previews when importing and only create previews of 1:1 on the fly for the images that we edit in fact, usually 5-6 of each session. While criticizing us, then eject and pop in the next map, I leave the card in the reader (USB 3.0).

They shoot in RAW and would not lose quality by switching to a compressed format or JPG format. Some could be prepared to shoot RAW + JPG for the workshop and simply import the jpg to criticize, but that presents them with a problem of management of file and possibly lowered an image quality for mounting piece.

Any suggestions? I would like to stay with LR to do this, at least there is no good option in LR, because I also teach LR in the workshop, but would consider another tool or add-in, if it was the best option.

Thank you very much for Maine.

This is not an option with LR. For any image to display in LR and any changes that will be her the leader/s must be copied to a physical HARD drive that is connected to the system. Memory cards are not treated as physical disks and I don't know anyway to change this in LR

I suggest that you try Adobe Bridge and then use ACR directly from bridge to make your editing. All functions in ACR are the same as in the module development of LR and you won't have to copy the images to the hard drive first, push as far as I know. I just tested that and it seems to work fine, except that no sidecard the XMP files are created on the memory card. If the changes could only be stored in the cache ACR system and all changes are lost once the card is ejected.

Tags: Photoshop Lightroom

Similar Questions

  • Hello, I need help with my photoshop, rececently the majority of my family disappeared merger options and I cant access AVC and other options ive tried reset preferences and it seems to come back but when I add an image and try add text again

    Hello, I need help with my photoshop, the majority of my family rececently disappeared options fusion and I can't access strokes and other options ive tried to reset the settings of preference and he seems to come back but when I add an image and you try to add text again, they'll only options I have are drop shadow , gradient, Chromakey, shine of satin overlay, inner (I use photoshop cc 2015) Please help, my Skype contact options are: RoblivionM8 and email:[email protected]

    Thanks for your time

    Your first screenshot shows the layer style dialog where not all types of effects are indicated on the left. Bottom left of the dialog box, you see a small icon fx with a menu arrow drop-down. Use drop down the menu and make sure all you click on show all effects or restore the default list. I don't know what you're trying the shoe on the second screen capture.

  • No support for pse4, don't need help with aid and all the rest. What is a layer? How can I get help PDF from CD? I don't have any idea how to use it. I have a Macbook pro.

    Need help with using pse4 not taken in charge by adobe. How subjects do not available and I have never used something like that. Aide said there is a download but have not been able to do. What is a rookie to do? Y at - it somewhere that I can go to learn how to use PSE4?

    To find out how your problem:

    http://kb2.Adobe.com/CPS/402/kb402107.html

    To get help from the CD files you double-click in the finder, go to PDF help and drag it to the desktop or elsewhere.

  • need help with insert sitemap in the footer with the adobe site map muse

    Hi I need help, to know how to insert a site map link in the footer of a page Web in muse Adobe.

    a quick google search just shows how to create a site map, but no mention of how to get a clickable link to a sitemap on a Web footer.

    any help would be appreciated.

    Hello

    You can try to front page of the site hyperlink to any text that would open the sitemap on the mouse action.

    For example, domain.com/sitemap.xml, enter in this format in hyperlink with any text or image that you can place on the page footer area.

    Thank you

    Sanjit

  • Need help with instr/Regexp for the query

    Hi people of Oracle

    I use Oracle

    Oracle Database 11 g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production
    With partitioning, OLAP, Data Mining and Real Application Testing options

    I have a few responses from students and the valid values are + / / (alphabet) o/p and spaces at the end of the scam only not in the middle.

    According to my condition, the registration number 2 3.4 must be in the request but I'm alone (chart 3).

    Can we use REG_EXP

    Help, please.

    Thanks in advance.

    Rajesh

    with x as)
    (
    SELECT '+-+-POPPPPPP' STUDENT_RESPONSE, 1 numero_enregistrement FROM DUAL Union all the
    SELECT ' + --AOPPPPPP++' STUDENT_RESPONSE, 2 numero_enregistrement FROM DUAL Union all the
    SELECT "+-+-OPPPPPP -' STUDENT_RESPONSE, 3 numero_enregistrement FROM DUAL union all
    SELECT '+-+-9OPPPPPP' STUDENT_RESPONSE, 4 numero_enregistrement FROM DUAL)
    )
    (SELECT NUMERO_ENREGISTREMENT,
    TRIM (STUDENT_RESPONSE) X
    WHERE
    ((INSTR (UPPER (TRIM (STUDENT_RESPONSE)),'-') = 0))
    OR (INSTR (UPPER (TRIM (STUDENT_RESPONSE)), '+') = 0)
    OR (INSTR (UPPER (TRIM (STUDENT_RESPONSE)), 'O') = 0)
    OR (INSTR (UPPER (TRIM (STUDENT_RESPONSE)), 'P') = 0)
    OR (INSTR (UPPER (TRIM (STUDENT_RESPONSE)),' ')! = 0)
    )
    )

    Hi, Renon,

    Rb2000rb65 wrote:
    Hi people of Oracle

    I use Oracle

    Oracle Database 11 g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production
    With partitioning, OLAP, Data Mining and Real Application Testing options

    Thanks for posting this (and the WITH clause for sample data). It is very useful.

    I have a few responses from students and the valid values are + / / (alphabet) o/p and spaces at the end of the scam only not in the middle.

    You combine several qeustions responses in a single VARCHAR2 column? It would be better to have a separate line for each question.

    According to my condition, the registration number 2 3.4 must be in the request but I'm alone (chart 3).

    What exactly are your needs? You try to find the rows where the student_response contains one of the forbidden characters, or if it contains a space anywhere, but at the end of the string?

    Can we use REG_EXP

    Yes, but it's pretty easy and probably more effective, do not use regular expressions in this case:
    Here's one way:

    SELECT     record_number
    ,     student_response
    FROM     x
    WHERE     TRANSLATE ( UPPER ( RTRIM (student_response, ' '))
                , 'X+-OP'
                , 'X'
                )     IS NOT NULL
    ;
    

    In other words, once you remove the spaces and all occurrences of '+', '-', 'o' or 'P', then the forbidden characters are left, and you want to select the line, if there is one of these.

    If you really, really want to use a regular expression:

    SELECT     record_number
    ,     student_response
    FROM     x
    WHERE     REGEXP_LIKE ( RTRIM (student_response)
                  , '[^-+OP]'          -- or '[^+OP-]', but not '[^+-OP]'.  Discuss amongst yourselves
                  , 'i'
                  )
    ;
    

    but, again, it will be probably slower than the first solution, using TRANSLATE.

    Published by: Frank Kulash, October 17, 2011 13:05

    Published by: Frank Kulash, October 17, 2011 13:41
    What follows is a bit simpler that TRANSLATE:

    SELECT     record_number
    ,     student_response
    FROM     x
    WHERE     RTRIM ( UPPER ( RTRIM (student_response, ' '))
               , '+-OP'
               )          IS NOT NULL
    ;
    
  • 10-2101 U.S. Tablet HP: Need help with firmware mix to the top

    Little problem with the tablet in place lately and accidentally erased the firmware. My best look up and somehow able to reinstall one from here. But the thing is now the entire Tablet is in Chinese, because it seems I could have installed the wrong one... ghoulish pls help me fix it? Appreciate the help if ever...

    Hi@Robin Wendigo,

    Thank you for the HP's Support Forums. Best platform for all kinds of solutions, tips and settings for your questions/problems.

    For the best experience on HP forum, see our Guide to HP Forums to learn more.

    Problems of language on the tablet settings. Is this fair?

    I want to help you.

    Follow the steps from the link below and check if that helps.

    http://HP.care/2dyWVI3

    I hope this helps. Let me know to learn more

    Happy announcement.

    Resolv_S

    Happy to help you. I work for HP

    Please click on " ""Accept as Solution " " " if you feel my post solved your problem, it will help others find the solution.
    Click on the " Bravo Thumbs Up" " " to say 'Thank you' to help! "

  • I'm using a MAC with the current software. I am trying to download Adobe Flash Player. My password does not work. I ' v reset my password and restarted my computer. I need help with my password at the bottom of load.

    I'm on a MAC and my password does not work, I reset my password and I can not even download Adobe Flash Player.

    This password is presented by your operating system and is designed to prevent you from accidentally installing the software.

    If it comes to your personal computer and you don't need a password to connect to the computer when it first starts, you can probably leave the password blank and click OK to go to this prompt.  If it comes to your personal computer and your normal password does not work, make sure that CAPS LOCK SHIFT is off, and then type the password carefully.

    If this is your work machine and he asks an administrator password, well, you will need to have a conversation with your computer friendly.

    If you are still puzzled, you may need to reset the password on your Mac:

    http://support.Apple.com/kb/PH18653

    http://support.Apple.com/kb/PH14325

    http://support.Apple.com/en-us/HT201240

  • Need help with uploading photos to the new macbook

    I just bought a macbook pro 13 inch and had all my old files saved on a WD My Passport for Mac external hard drive. When try to import my library of photos from the external hard drive to the macbook, I receive a message reading "none of these files can be imported into your photo library.

    I read that you are unable to import the whole photo library to another library of photos, but I don't know if I understand that correctly. in any case, can someone please walk me through how to fix this problem, because a lot of these photos are very important to me. In case this is useful, I was able to import more pictures of the new photo library (such as those that have been saved on the desktop, iCloud etc.)

    Sorry, but unless you detail we can without help

    What format is the WD MyPassport? What you have on it (your library of Photos or just Photos)?

    You import photos - you open and migrate the library

    What version of the OS and the Photos or iPhoto do you have on your old system?

    LN

  • Need help with paint to change the images.

    When I'm with pPaint, how to take a photo in black and white and make only eyes a certain color, or what program to use?

    Hi, RandyLPN,

    Use the brush

    How to change the color of eyes in paint

    http://www.ehow.com/how_6584061_change-eye-color-paint.html

    Find tutorials here

    http://www.lkwdpl.org/classes/mspaint/paint.html

    I would personally use Paint, but there are other free image editing software

    http://www.brighthub.com/multimedia/photography/articles/4488.aspx

  • Need help with upgrade memory on the Satellite A100-250

    Help me with upgrade memory on TOSHIBA Satellite A100-250 up to 1024 MB.

    I want to buy an another slat memory ddr2-533 512 MB, what model exactly I needed to research, they were working in a pair.

    Sorry for the bad English. From Russia with Love.
    PS. I like to drink Russian vodka :)

    Hay

    Your laptop can be upgraded up to 2 GB and compatible RAM is DDR2 400/533 1 GB (PA3411U-1M1G).

    Use this part number in Google and you will find it.

    Bye and don t drink too much Vodka. ;)

  • Need help with workflows.

    Hello community, I upgraded my first pro 2015.3 and I want to try to ingest, some can help me with the workflow

    [title edited for clarity by mod]

    Start here:

    Learn Premiere Pro, get help and support. Adobe Premiere Pro CC

    or

    Get a subscription to Lynda.com.

    If you get stuck, you can ask for advice here on the forum.

  • Need help with movie controls (specifically the reboot)

    Hi all

    Noob question, so bear with me.

    I have a site that loads a page with video playing on one of the pages.  I put it in place so that clicking on the button of the page starts the video and clicking on a button for a another page stops the video.

    However, instead of stop the video she just paused, so that when the user returns to the page with the video the video resumes where it left off, rather than restart.

    My site as a whole is a great movie clip, so each page is not loaded when we click a button - the content is just interpolated on the stage.

    Is it possible for me to have the control to stop the film playing (other buttons on the page) or to start playback of the movie (own page button) to have restart instead of the first image?

    Code for the start is really simple:

    content_mc.about_mc. MyVideo.Play ();

    and the judgment is:

    content_mc.about_mc. MyVideo.Stop ();

    Thank you.  I know I'm asking for the wrong thing because I left speechless Google results with what I ask, helps find the right way to do it is appreciated, even if I like a lot the way the site is designed so preferably not redo the whole site would be great!

    C.

    If you do not use a pause button so you can activate your flvplayback instance autoRewind property the flv file will restart from the beginning, whenever it stops:

    content_mc.about_mc. MyVideo.autoRewind = true;

  • Need help with TS to read the list of variables and/or LV

    Hello

    I use Labview adapter in Teststand to open WinIDEA and read the values of the variables. Basically LV lib files are used to read the value of the variable at run time, and returns the value of the variable. Contribution to this labview function i.e. variable name string and output type cluster.

    I need to read the list of variables and compare it to the value limits for each variable. I perhaps need to read at least 50 to 60 variables in one step if possible or a variable at a time in a loop. I want to add these variables in a txt file with the limits and read of Teststand as a string array and compare the result. In this way is easy to add or remove variables from the list and therefore their expected value. I tried to use the shipper of the property, but there need a stage name or local/global variable.

    Another way is to add the code in labview for comparison of variables value read, then I lose teststand power and flexibility.

    I am struggling to find the best way to achieve this. Any ideas?

    I would like it.  Basically, you have a file limit with 2 data tables.  A table contains your variables and the other your limits.  Then you wrap on a test of a string value.

    Let me know if you have any questions.

  • Need help with script to find the virtual computer by IP

    Looking for a script that will correspond to the vm to IP, but should be able to find several IPS at the same time.

    I put this together from scripts on the net, which works well to search for a single IP address at a time:

    $match_address = Read-Host "enter the IP address to find."

    Get - VM | %{

    $vmips = $_. Guest.IPAddress

    {foreach ($ip in $vmips)

    If ($ip - as $match_address) {}

    "VM found correspondence address: {0}" f $_. Name

    }

    }

    }

    But would need to be able to enter several IP addresses of different subnets in the $match_address and search script for a match for every ip address.

    Could you please try this?

    function search-VMAssociatedToIP {}

    (param

    $ArrayOfIPToCheck

    )

    {in process

    $VMsAndAssociatedIP = get-view - viewtype 'virtualmachine ' | {foreach-object

    $VM = $_

    $_.guest.net | {foreach-object

    $Net = $_

    $_. IpAddress | {foreach-object

    $IpAddress = $_

    $Output = New-Object-Type PSObject-Prop ([ordered] @ {}

    "VM" = $VM. Name

    "NetworkName" = $Net.Network

    "IP address" = $IpAddress

    })

    Return $Output

    }

    }

    }

    $ArrayOfIPToCheck | {foreach-object

    $IPtoCheck = $_

    $VMsAndAssociatedIP | where {$_.} IpAddress - eq $IPtoCheck} | {foreach-object

    $Output = New-Object-Type PSObject-Prop ([ordered] @ {}

    "IpToCheck" = $IPtoCheck

    'VM' = $_. VM

    "NetworkName" = $_.NetworkName

    'IpAddress' = $_. IpAddress

    })

    Return $Output

    }

    }

    }

    }

    $MyArray = "10.0.33.1","10.0.30.11","10.0.20.11","10.0.32.1".

    Search for VMAssociatedToIP - ArrayOfIPToCheck $MyArray | OGV

    Use a table entry.

    First get the IP addresses of all computers installed correctly (only for virtual machines with VMware tools) virtual based on get - view so the collection will be fast.

    Then compare with the PPE provided as input.

  • Need help with photo Panorama of the stadium Editor

    http://i328.Photobucket.com/albums/L343/aville44/1230101807a.jpg

    Last night, I was part of the 70,000 fans to attend the Music City Bowl in Nashville TN. While I was there I took a few pictures, however, present a pic I want perfect... mainly because it is the only paranorma shot I took. I did a little editing to it in photoshop, the stuff of color/contrast/brightness auto... and enfantee smart. As you can see, some areas of the image are brighter than others, and some are sharper than others. Is there someone who can change it for me and give it a professional look good? Im not asking for anything major all my means, just to have a nice, balanced look. A concern is the lights high to create a glare type, and the field is so brilliant it seems white. If someone wants to take a shot at editing it please do not hesitate to, or, if you have ideas feel free to throw it out there. Thanks in advance!

    Jordan

    Here's another with cleaned up a little too much sky. I'm just dinking autour with it then LOL.

Maybe you are looking for