Best way to remove fluorescent lighting tint

I need to color correct shots that were taped under fluorescent lighting. The ugly kind!
Looking for tips to remove the ulgy green tint while warming up skin tone.
Thanks in advance. Be well.
--DKG

I've already gotten into a fight with the producer
for giving me such bad footage, but aside from
quiting... whatelse can be done?
exactly what you're doing and then some. the three-way auto white capabilities are quite good and it'll provide a base to start from. do that first and then reapply the three way and mess around with luma, black, chroma levels. you may find after auto-white that all you need is a simple hue shift which the regular color corrector does with great aplomp.
once you get things to where you think you like them, duplicate the sequence and find a scene you like the best. place a marker. other scenes in the same location with the same fluorescent lighting, place more markers - i'll tell you why in a second - and then apply another three-filter to use the match hue functions and that may dial you in even closer. another tool great for this is G Super Levels from graeme nattress in his filter set one.
when i match cameras for live shows, i have the benefit of routers to toggle the imagery through my monitors and scopes. no router exists in fcp but if you learn the keyboard shortcuts for navigating to and from markers, you can watch the waveforms while you toggle between scenes which will tell you were to surgically perform more correction.
document your time and submit a huge invoice to this producer for providing you with this crap. you can't perform miracles without getting paid!
good luck, post back.
if you need further help, you can email me offlist with some problem stills and i'll see what i can do.
zeb

Similar Messages

  • Best way to remove glare from glasses

    I ended up having a picture take with a point and shoot camera.  What would be the best way to remove or at least look presentable to remove the glare from the glasses from one side?  It is bad but I want this picture to be as good as I can get it. 

    First I did Juergen's method and merged down the two layers.
    Now to improve the lighting...
    1. Add a Level adjustment layer. These were the original Levels settings:
    2. I moved the sliders like this to lighten the whole picture.
    3. I went one step further to lighten the background. Added another Levels and moved the middle slider left. This however also lightened the men further which I did not want to do, so on the layer's mask I painted over the men with black to mask out that portion of the Levels adjustment and reveal the previous Levels adjustment.
    Rather than painting black you can select the men and on the mask fill the selection with black. In either case if you revealed too much or too little of the first Levels layer you can fine-tune the mask by painting black or white as needed.

  • Best way to remove last line-feed in text file

    What is the best way to remove last line-feed in text file? (so that the last line of text is the last line, not a line-feed). The best I can come up with is: echo -n "$(cat file.txt)" > newfile.txt
    (as echo -n will remove all trailing newline characters)

    What is the best way to remove last line-feed in text file? (so that the last line of text is the last line, not a line-feed). The best I can come up with is: echo -n "$(cat file.txt)" > newfile.txt
    (as echo -n will remove all trailing newline characters)
    According to my experiments, you have removed all line terminators from the file, and replaced those between lines with a space.
    That is to say, you have turned a multi-line file into one long line with no line terminator.
    If that is what you want, and your files are not very big, then your echo statement might be all you need.
    If you need to deal with larger files, you could try using the 'tr' command, and something like
    tr '
    ' ' ' <file.txt >newfile.txt
    The only problem with this is, it will most likely give you a trailing space, as the last newline is going to be converted to a space. If that is not acceptable, then something else will have to be arranged.
    However, if you really want to maintain a multi-line file, but remove just the very last line terminator, that gets a bit more complicated. This might work for you:
    perl -ne '
    chomp;
    print "
    " if $n++ != 0;
    print;
    ' file.txt >newfile.txt
    You can use cat -e to see which lines have newlines, and you should see that the last line does not have a newline, but all the others still do.
    I guess if you really did mean to remove all newline characters and replace them with a space, except for the last line, then a modification of the above perl script would do that:
    perl -ne '
    chomp;
    print " " if $n++ != 0;
    print;
    ' file.txt >newfile.txt
    Am I even close to understanding what you are asking for?

  • How is the best way to remove something from a photo?

    How is the best way to remove something from a photo?

    This is difficult to answer without fully knowing what you are trying to do.
    That said, a few excellent and user friendly retouching tools include:  The Spot Heealing Brush Tool, Healing Brush Tool, Patch Tool, and the Cloning Stamp Tool.

  • Best way to remove duplicates based on multiple tables

    Hi,
    I have a mechanism which loads flat files into multiple tables (can be up to 6 different tables) using external tables.
    Whenever a new file arrives, I need to insert duplicate rows to a side table, but the duplicate rows are to be searched in all 6 tables according to a given set of columns which exist in all of them.
    In the SQL Server Version of the same mechanism (which i'm migrating to Oracle) it uses an additional "UNIQUE" table with only 2 columns(Checksum1, Checksum2) which hold the checksum values of 2 different sets of columns per inserted record. when a new file arrives it computes these 2 checksums for every record and look it up in the unique table to avoid searching all the different tables.
    We know that working with checksums is not bulletproof but with those sets of fields it seems to work.
    My questions are:
    should I use the same checksums mechanism? if so, should I use the owa_opt_lock.checksum function to calculate the checksums?
    Or should I look for duplicates in all tables one after the other (indexing some of the columns we check for duplicates with)?
    Note:
    These tables are partitioned with day partitions and can be very large.
    Any advice would be welcome.
    Thanks.

    >
    I need to keep duplicate rows in a side table and not load them into table1...table6
    >
    Does that mean that you don't want ANY row if it has a duplicate on your 6 columns?
    Let's say I have six records that have identical values for your 6 columns. One record meets the condition for table1, one for table2 and so on.
    Do you want to keep one of these records and put the other 5 in the side table? If so, which one should be kept?
    Or do you want all 6 records put in the side table?
    You could delete the duplicates from the temp table as the first step. Or better
    1. add a new column WHICH_TABLE NUMBER to the temp table
    2. update the new column to -1 for records that are dups.
    3. update the new column (might be done with one query) to set the table number based on the conditions for each table
    4. INSERT INTO TABLE1 SELECT * FROM TEMP_TABLE WHERE WHICH_TABLE = 1
    INSERT INTO TABLE6 SELECT * FROM TEMP_TABLE WHERE WHICH_TABLE = 6
    When you are done the WHICH_TABLE will be flagged with
    1. NULL if a record was not a DUP but was not inserted into any of your tables - possible error record to examine
    2. -1 if a record was a DUP
    3. 1 - if the record went to table 1 (2 for table 2 and so on)
    This 'flag and then select' approach is more performant than deleting records after each select. Especially if the flagging can be done in one pass (full table scan).
    See this other thread (or many, many others on the net) from today for how to find and remove duplicates
    Best way of removing duplicates

  • I got some hair spray on my new retina display screen. What is the best way to remove.

    I got some hair spray on my new Mac Book Pro Retina Display. Any thoughts on the best way to remove?

    I would use this.  I use it on my MBPs and it does an excellent job.  I cannot say with authority that it will remove your hair spay residue.
    Ciao.
    http://www.soap.com/p/windex-for-electronics-aerosol-97299?site=CA&utm_source=Go ogle&utm_medium=cpc_S&utm_term=ASJ-294&utm_campaign=GoogleAW&CAWELAID=1323111033 &utm_content=pla&adtype=pla&cagpspn=pla&noappbanner=true
    I clicked the reply button too early.
    Message was edited by: OGELTHORPE

  • What's the best way to remove inactive iChat users from jabberd2.db?

    I'm about to run Autobuddy for users on my iChat server. However, there are several users that are no longer around and I don't want their records showing up in everyone's buddy list.
    What's the safest/best way to remove them?
    My plan is to use sqlite3 on the command line and use SQL to remove the entries from the "active" table, but I don't know what impact that may have on the rest of the database.
    Any thoughts or suggestions?

    Never mind...
    Thought I had looked through enough threads.  Found the following just after posting my question:
    /usr/bin/jabber_autobuddy -d [email protected]
    Works like a charm.

  • Best way to remove Stateful session beans

    Hi folks.
    I'm running Weblogic 6.1. I'm trying to find the best way of removing
    stateful session beans. I know to call EJBObject.remove() on the
    client side, but this will not always happen if the client crashes or
    times out. This is a java client application connection to weblogic,
    no servlets are involved.
    Is there a way to signal the appserver to remove all stateful session
    beans associated with a user when the User logs out? I would rather
    not remove them using a time out mechanism.
    thanks.
    rob.

    But in the documentation and also based on my experience I noticed that the
    timeout does not take effect till the max-beans-in-cache limit is reached.
    How do you handle that?
    "Thomas Christen" <[email protected]> wrote in message
    news:3e35795d$[email protected]..
    Hi,
    Is there a way to signal the appserver to remove all stateful session
    beans associated with a user when the User logs out? I would rather
    not remove them using a time out mechanism.Had the same problem and solved it the following way :
    - The client has thread polling its sessionbean at the server (every 30
    Sec.)
    - The session bean has a short timeout (2 Minutes)
    If the client fails, the timeout will catch it otherwise the client will
    gracefully call remove bevor exit.
    Regards
    Tomy

  • Best way to remove workstation?

    Hi! when we move a computer to another room, we rename the computer, then do a WSREG -UNREG and WSREG, the new workstation object is created, but the old workstation object stay there.
    If I delete the old object, the information stays on the sybase db!
    So what is the best way to remove a workstation object?
    I have a remove policy that work, but if I dont want to wait?
    thank you,
    Eric.

    eric,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Best way to remove osx.1,5

    I never use osx on my G3 iMac and would love to remove it so as just to run on 9.2.2 .. Not sure of the best way to remove osx and all the associated applications.
    Any help would be appreciated.
    Davit

    If you can still boot to OS X, use the freeware AppDelete @ http://reggie.ashworth.googlepages.com/appdelete to delete your applications & associated files.
    Once you have deleted the OS X applications & files, reboot into OS 9.2. Then drag the OS X system folder to the Trash & empty trash. Some of the OS X invisible files may still remain on the HD, but they won't hinder the OS 9 operation & shouldn't take up too much space on your HD.
    What version of OS X do you have installed? Most users want to delete OS 9, not OS X. Most OS 9 browsers & mail programs are (almost?) obsolete for today's web. In the near future your OS 9 browser may not work on many websites & you'll want an operational browser which requires OS X. Unless you need more space on your hard drive, I would leave OS X installed.
     Cheers, Tom

  • Best way to do a light glow highlight through a graphic in FCP?

    Best way to do a light glow highlight through a graphic in FCP?

    Hi -
    Lots of ways to do this, here is the method I use- gives lots of control:
    Place/edit your graphic on the timeline. Do any motion keyframing you need to do.
    Select the clip on the timeline and copy it.
    Place the copy directly above the original +2 tracks higher+ (leaving an empty track between them).
    Click on the clip you've copied and type Shift-A to mark In and mark Out on the duration of the clip.
    Targeting the empty track between the two graphics, go to the viewer and from the Generator button (the button on the lower right of the viewer with the "A" on it) select Render > Highlight. That will bring a soft highlight shape into the viewer. Edit that to the empty track between the two graphics. Don't worry about what things look like at this point.
    Now go to the top graphic and from the effects tab, apply Video Filters > Image Control > Brightness and Contrast and also apply Video Filters > Blur > Gaussian Blur to you clip on the timeline.
    Double click on that clip, and in the viewer select the Filters Tab. Adjust the the filters to get a nice soft glowing bright image of your graphic.
    Once you have that, move back t the timeline and Control - click on the +top graphic+ on your timeline and from the drop down menu, choose Composite Mode > Travel Matte - Luma.
    As soon as you select it, you will see that the highlight shape in the middle track in now cutting a matte shape for your glowing soft graphic on the upper track.
    Now double click on the Highlight clip on the middle track. In the viewer, using the control tab, rotate the bar, change it's width and shape to your liking. To make it sweep across the graphic, switch to the Motion Tab and keyframe a move with the highlight bar starting off to the graphic, moving across it, and ending off the graphic on the other side.
    Depending on the horsepower of your computer, you may have to render to see this effect playback while you are working - you will definitely need to render when you are done. The nice thing about doing the highlight this way is that it gives you a lot of control over the apperance.
    Hope this helps.

  • What is the best way to remove footage from the middle of a clip?

    What is the best way to remove unwanted footage from the middle of a clip? I have a clip that I've trimmed from the start and finsih, but I need to remove "boring" footage from inbetween.

    Thank you for your replies. I tried the blade tool followed by select and delete but it did not seem very precise. I had better success with this aproach at the ends rather than in the middle. I watched a tutorial video on using the precision editor, but the video was small so I had a difficult time following where the person clicked, etc. Any info on using the precision editor would be greatly appreciated. I need to make precise cuts to avoid creating unatural motion for the subject. So far, close but no cigar.
    Regards,
    Michael

  • What is the best way to remove all info from a MacBook Pro before passing it along to someone else?          passing it on to someone?

    What is the best way to remove all info from a MacBook Pro before passing it on to someone else?

    Read this: http://www.tuaw.com/2010/09/24/mac-101-preparing-your-old-mac-for-sale-or-recycl ing/

  • Best way to remove all changes

    What is the best way to remove all changes that were done to an image in Camera Raw, to get the image back to the way it was originally?

    Thanks for the suggestion. That would probably work if the file was still open in Camera Raw. But when the file has been opened in Camera Raw, changes are made, then click Done and the image is closed -- the next time it is opened in Camera Raw, Alt/Option clicking the Reset button does not return the image to it's original condition.

  • Best Way to Remove Installed App Store Apps

    What's the best way to remove installed App Store apps?

    Drag & drop them into the Trash. Or, if you want to get their auxiliary files, use the free AppCleaner.
    http://www.freemacsoft.net/AppCleaner/

Maybe you are looking for