Color, contrast change

Hello, first of all i know this question have been asked many time, even i did a search but havnt found any solution to my problem, hope to have help from you guys, i am post production guy (Arch-Viz) i exported a video from after effects cc 2014 in .avi uncompressed, den edited it ( without adding any effects ) exporting it from premiere pro cc 2014 to .h264 or mpeg i have color shift towards blue & lots of contrast added into it with bit sharpen. dont know why? even i tried different codecs but all in vain. i am looking exported video in windows media player as well as media player classic both are showing same output. even the same problem is happening with me in my home's pc. please help

Could we see some screenshots or example videos?

Similar Messages

  • Possible to adjust color/ contrast in this way?

    The more I use Photoshop, the more often I come up with an image
    where everything is right, but something on one layer
    has two very similar colors, which are a little too close in
    either contrast or hue.
    But for me, using 'selective color' or 'brightness/contrast' never works because it's not at all accurate.
    Without actually using any selection tools, how should I go about
    changing the hue and contrast (two different browns in this case) so that the two stand apart a little better?
    A perfect description of the function I am asking for is listed HERE:
    1) Eyedrop the two colors you want to adjust, so that ALL other colors by either hue or brighness/contrast (or both) are excluded.
    2) Tell Photoshop to take only these two colors and change them
    across the whole document according to aforementioned parameters, or perhaps by simply replacing one color at a time.
    3) Be able to do this without actually physically outlining and selecting parts of your image with a tool.

    While Brightness/Contrast has supposedly been improved in CS3 I still avoid it and prefer working with Curves-Adjustment Layers; and setting their Blend Mode to Color or Luminance conveniently allows for addressing those matters separately.
    As for avoiding manually outlining a mask:
    Using the Add to Sample- or Subtract from Sample-Eyedroppers in the six colors in a Hue/Saturation-Adjustment Layer can be used to manipulate the affected specific color-ranges.
    Select Color Range can occasionally be useful as can turning off the Contiguous-Setting of the Magic Wand Tool to create selections which can then be utilized as masks for the proper Adjustment Layers (thats still masking though).
    And if one wants to select based on brightness one might duplicate the image, change it to Lab an use the L-Channel as a basis for the selection and save the Selection back to the original.
    Working the Blend If-Settings in an Adjustment Layers Blending Options (and splitting the Handles) may also help, but that is probably a pretty inconvenient way to do it.

  • A/B Color contrast in develop module

    It would be really nice to hace a slider (or three, I'll explain) for "color contrast".
    Threre is "contrast" slider that influences the luminosity basically. What I would want to have is a way to control color contrast while preserving luminosity as well as preserve color balance.
    A single slider implementation
    Basically the simplest way (but a bit crude) to do it would be with a single slider.
    The slider defaults to 0.
    Moving it to the right would be equivalent to the following photoshop procedure:
    Change mode to LAB
    Curve adjustment
    Steepen both the A and B curves linearly (pull extreme points in and leave the curve straight, plus keep the center where it is to preserve color balance)
    Leave the L curve alone
    Apply
    switch mode back to RGB
    Moving it left would be the same, except the AB curves would be made shallower rather than steeper (rotate the curve clockwise instead of counter clockwise about the center)
    A two slider implementation
    Same as the above, except that you would have separate A and B sliders (you might call the tint contrast and temp contrast to be consistent with the color balance sliders, which are just like moving the center point of the AB curves)
    A three slider implementation
    Basically this is like having bothe the one slider ("overall color contrast") and the two sliders ("temperature contrast" and "tint contrast"). It's a bit redundant but having the single control there makes it easier when you simply want to globally increase the color contrast without being too picky about the two separate controls (I guess easier for beginners)

    Not at all. The saturation control has quite a different effect that this, and much les subtle. Saturation just increases saturation without changing the hue. This actually changes the hue causing a separation in hues that is impossible to achive in any manuver you would to in RGB space. It drives colors apart rather than increasing their chroma.
    Try it yourself on a few images (especially on images that have nearly uniform color, such as deserts or faces. You will see that this is an entirelty different thing than saturation.

  • Simulating a CONTRAST changer on LCD screen

    Hi All / KGLAD... :-)
    I am making a simulator for an LCD screen and have the contrast changing with "btn_down" properly. I have an up button - "btn_up" that i would like to be able to control the contrast in the opposite direction, keeping track of the current color in the Array and moving back. I tried changing the code to increment negatively through the Array but something is screwy... It doesnt like the multiple duplicate values that i have and only works when "btn_down" has initially moved the array...
    any suggestions??
    Thank you in advance!
    //CONTRAST CHANGE
    //To Change Colors of HiLight Bar, Header Bar, and Plain Text
    var colorA:Array = [0x041607,0x041607,0x041607,0x041607,0x041607,0x041607,0x041607,0x041607,0x041607,0x26D94 9,0x26D949,0x26D949,0x26D949,0x26D949,0x26D949,0x26D949,0x26D949,0x26D949,0x26D949];
    mc_LCD_loader.c = new Color(mc_LCD_loader);
    mc_LCD_loader.index = 0;
    mc_LCD_text_loader.c = new Color(mc_LCD_text_loader);
    mc_LCD_text_loader.index = 0;
    //To Change Colors of LCD Screen and Selected Text
    var colorB:Array =[0x26D949,0x22C341,0x1EAD3A,0x1A9833,0x17832C,0x136D24,0x0F571D,0x0B4216,0x062900,0x0416 07,0x062900,0x0B4216,0x0F571D,0x136D24,0x17832C,0x1A9833,0x1EAD3A,0x22C341,0x26D949];
    mc_LCD.c = new Color(mc_LCD);
    mc_LCD.index = 0;
    mc_LCD_text_selected_loader.c = new Color(mc_LCD_text_selected_loader);
    mc_LCD_text_selected_loader.index = 0;
    btn_down.onRelease = function()
    AudibleBeep1 = new Sound(this);
    AudibleBeep1.attachSound(btnPressBeep);
    AudibleBeep1.start(0, 1);
    mc_LCD_loader.c.setRGB(colorA[mc_LCD_loader.index]);
    mc_LCD_loader.index=(mc_LCD_loader.index+1)%colorA.length;
    mc_LCD_text_loader.c.setRGB(colorA[mc_LCD_text_loader.index]);
    mc_LCD_text_loader.index=(mc_LCD_text_loader.index+1)%colorA.length;
    mc_LCD.c.setRGB(colorB[mc_LCD.index]);
    mc_LCD.index=(mc_LCD.index+1)%colorB.length;
    mc_LCD_text_selected_loader.c.setRGB(colorB[mc_LCD_text_selected_loader.index]);
    mc_LCD_text_selected_loader.index=(mc_LCD_text_selected_loader.index+1)%colorB.length;
    btn_up.onRelease = function()
    AudibleBeep1 = new Sound(this);
    AudibleBeep1.attachSound(btnPressBeep);
    AudibleBeep1.start(0, 1);
    mc_LCD_loader.c.setRGB(colorA[mc_LCD_loader.index]);
    mc_LCD_loader.index=(mc_LCD_loader.index-1)%colorA.length;
    mc_LCD_text_loader.c.setRGB(colorA[mc_LCD_text_loader.index]);
    mc_LCD_text_loader.index=(mc_LCD_text_loader.index-1)%colorA.length;
    mc_LCD.c.setRGB(colorB[mc_LCD.index]);
    mc_LCD.index=(mc_LCD.index-1)%colorB.length;
    mc_LCD_text_selected_loader.c.setRGB(colorB[mc_LCD_text_selected_loader.index]);
    mc_LCD_text_selected_loader.index=(mc_LCD_text_selected_loader.index-1)%colorB.length;

    Ardha,
    Welcome to the forum.  White spots on the LCD, typically a bright white spot most clearly seen against a white background like the forum, or google home page, is caused by pressure damage - pressure applied to back of the LCD panel. 
    Since you indicated that you have only had the system 1 day, unless you are aware of something that happened while in your care, I can only guess that the damage was done during transport or manufacturing.  I would recommend you contact your point of purchase and ask to exchange the unit.  I would also try to power up and inspect the new system immediately to make sure all is well.
    Please also see my PM - I would like you to take a pic of the spot and email to me if possible.  While random things happen, I'd like us to take a look at this. 
    Best regards,
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Created file in illustrator then opened in photoshop but color code changed?

    I Created file in illustrator and then opened the art in photoshop but the wierd thing is that the color code changed. If you look at the image with you eye the color will look the same to the naked but if you use the eye dripper tool you can see that the color code has changed between illustrator and photoshop.
    Is there a way to make the CMYK color code stay the same?

    In Illustrator the "Edit---> color settings" are set to "North America General Purpose 2" and the that is the same color setting choice in Photoshop.
    For example there is a black color in Illustrator that has this CMYK code "60, 49,47, 100"
    but in photoshop the CMYK code for the same part of the graphic changes to "75, 68, 67, 90"
    This is only one example of many color code changes that are happening and this may look like the same color on the screen but I need them to both have the same code because I am doing specialized printing and need no changes in color codes like this to occur.
    If I have the color setting in both photoshop and illustrator both set exactly the same "Edit---> color settings" then do you know why this color shift would be happening. Please help.

  • Edits (especially contrast changes) not saving in iPhoto 08- any solutions?

    A major hassle for me is the fact that (at least on my machines) changes to contrast while editing are not shown in the thumbnail or "browse" when completing the edit with "Done" or an arrow. Changes to exposure, temperature etc ARE saved and visible. If I go back into edit then the contrast changes are re-applied and everything looks good, until I leave edit.
    I've re-installed iphoto (7.0.1 & 7.0.2), verified permissions, killed my preferences and nothing works.
    Compared to the problems that others are having this might not seem to0 significant, but it really kills iPhoto's usefulness to me.

    Mark:
    Welcome to the Apple Discussions. You may not be using PS correctly with iPhoto.
    Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window". That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu). This way you get the best of both worlds
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • When I insert a shape, how do I change the color without changing the texture?

    When I insert a shape, how do I change the color without changing the texture?

    Hi,
    you are working with a percentage width of your tables, for example:
    table width="123%
    td width="75%"
    td width="25%"
    So it is simply a arithmetic problem to get the proportional wide (means the ratio of % to cm) of your images, so that they do not break the frame. Certainly you could use (translated from German DW) "properties" and change the sizes there:
    Hans-G.

  • Lightroom 2 & 3 Beta color, contrast WAY off on display 2

    Lightroom 3 Beta 2  /  Windows 7  64bit  /  Dual calibrated displays
    Display 1 connections are HDMI out to digital in, display 2 is digital out to digital in.
    PROBLEM
    In both the Lightroom 3 Beta 2, and Lightroom 2 v2.6 632038, color, contrast and so on are WAY off on my number 2 monitor. If I drag a Photoshop CS4 window from the left display to the right display I see no difference, looks fine. This is also true with Picasa 3, and iMatch Digital Image Management software and preview images in Picasa photo viewer. The issue seems to be just with Lightroom.
    I don't see any settings for adjustment of the Lightroom right hand screen in either version - Help appreciated, IM

    If you want to, you could zero out all the settings and then save this as a preset and then automatically that preset to all imported images. Not really sure why you would want to do this though. All your images look pretty flat. The default settings do a fair job of approximating what you see on the back of you camera when you made the shot and give you a good place to start. I tried zeroing things out for a while, and then found out I was bringing every image pretty much back to the defaults, and so stopped doing that.

  • At times, the type in the bookmarks toolbar as well as the tabs changes to white with a drop shadow on a white background, making it very difficult to read. I do not know what it causing the colors to change. Is there any way to fix this?

    At times, the type in the bookmarks toolbar as well as the tabs changes to white with a drop shadow on a white background, making it very difficult to read. I do not know what it causing the colors to change. Is there any way to fix this?

    quick test based on screendump from your picture
    1: hue & saturation : master sat -100
    2:levels : input white=67
    OK ?

  • Color scheme changed on my ipod touch how do i change it back to normal?

    I was listening to my ipod touch, when i went to unlock my ipod the color scheme (color effect) changed (by itself), Now instead of being the normal color it has like a multicolor color effect. Someone PLEASE HELP!!!

    Unfortunately, if I told you, I'd be giving a hint of how to allow someone to illegally copy music from someone else's iPod to their machine.  There is a reason why it is blocked.   And no, you don't have to erase the iPod. I would request the techs give you help in doing that.  If they don't, ask other techs.

  • Why is the label color not changing when my file is updated?

    I would like the label color to change to white when a file has been updated/changed. Since upgrading to 10.7.2 the file color stays the same. Is there a setting I am missing that will allow the file to go back to white when updated?
    Thanks for any input...

    As far as I know, this is not standard functionality in the Mac OS.  Granted this, some third party application, or a script of something, was making this happen for you. Somehow the system update broke it. If you can figure out what software was giving you this feature, maybe you can update it or re-install it.
    charlie

  • Menu background color has changed after applying Forms Patch3 (10.1.2.3.0)

    Hi,
    we have applied Patch3 on our Forms Environment.
    Now the menu background color has changed from green to gray (colorScheme is "teal" in formsweb.cfg).
    This behavior isn't documented and our customer want's to get the green menubar back...
    Any hints?
    Greetings, Florian.

    removed because of obsoleteness...
    Edited by: W1zard on Feb 2, 2009 4:57 PM

  • Color not changing on Selected Menu tab

    I'm creating a custom css and in doing so have been trying to change the text color of the selected menu tab. I've added it to my stylesheet but it is not changing upon running it. If I change the menu tab specifically via the properties of the tab, it will change. Is 'color' something we can change?
    Here is a snipet of my css:
    .af|menuTabs::selected {color:red;
    white-space:nowrap;
    font-family:Arial,Helvetica,Geneva,sans-serif;
    font-size:200%;
    background-color:white;
    font-weight:bold;
    text-decoration:none;
    Thanks,
    Lisa

A: Color not changing on Selected Menu tab

Your '.' before af|menuTabs is wrong.
It's just "af|menuTabs::selected" not ".af|menuTabs::selected".
Also, you need to use the ::selected-link pseudo-element to style the color of the text.
/* Make the selected tab bold */
af|menuTabs::selected-link
font-weight: bold;
font-size: 14pt;
color: green;
}

Your '.' before af|menuTabs is wrong.
It's just "af|menuTabs::selected" not ".af|menuTabs::selected".
Also, you need to use the ::selected-link pseudo-element to style the color of the text.
/* Make the selected tab bold */
af|menuTabs::selected-link
font-weight: bold;
font-size: 14pt;
color: green;
}

  • Color cube changes color

    The color cube in the code below keeps changing the color of all the sides, but the top and buttom one.
    The colors should remain the same.
    Can someone explain, why the colors do change itself?
    import java.applet.Applet;
    import java.awt.BorderLayout;
    import java.awt.Frame;
    import java.awt.event.*;
    import java.awt.GraphicsConfiguration;
    import com.sun.j3d.utils.applet.MainFrame;
    import com.sun.j3d.utils.geometry.ColorCube;
    import com.sun.j3d.utils.universe.*;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    //   HelloJava3Dc renders a single, rotating cube. 
    public class HelloJava3Dd3 extends Applet {
         public BranchGroup createSceneGraph() {
         // Create the root of the branch graph
         BranchGroup objRoot = new BranchGroup();
         // rotate object has composited transformation matrix
         Transform3D rotate = new Transform3D();
         Transform3D tempRotate = new Transform3D();
            rotate.rotX(Math.PI/4.0d);
         tempRotate.rotY(Math.PI/5.0d);
            rotate.mul(tempRotate);
         TransformGroup objRotate = new TransformGroup(rotate);
         // Create the transform group node and initialize it to the
         // identity.  Enable the TRANSFORM_WRITE capability so that
         // our behavior code can modify it at runtime.  Add it to the
         // root of the subgraph.
         TransformGroup objSpin = new TransformGroup();
         objSpin.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
         objRoot.addChild(objRotate);
         objRotate.addChild(objSpin);
         // Create a simple shape leaf node, add it to the scene graph.
         // ColorCube is a Convenience Utility class
         objSpin.addChild(new ColorCube(0.4));
         // Create a new Behavior object that will perform the desired
         // operation on the specified transform object and add it into
         // the scene graph.
         Transform3D yAxis = new Transform3D();
         Alpha rotationAlpha = new Alpha(-1, 4000);
         Alpha rotationBeta = new Alpha(-1, 4000);
         RotationInterpolator rotator =
             new RotationInterpolator(rotationAlpha, objSpin, yAxis,
                             0.0f, (float) Math.PI*1.0f);
         // a bounding sphere specifies a region a behavior is active
         // create a sphere centered at the origin with radius of 1
         BoundingSphere bounds = new BoundingSphere();
         rotator.setSchedulingBounds(bounds);
         objSpin.addChild(rotator);
         return objRoot;
        } // end of CreateSceneGraph method of HelloJava3Dd
        public HelloJava3Dd3() {
            setLayout(new BorderLayout());
            GraphicsConfiguration config =
               SimpleUniverse.getPreferredConfiguration();
            Canvas3D canvas3D = new Canvas3D(config);
            add("Center", canvas3D);
            BranchGroup scene = createSceneGraph();
         scene.compile();
            // SimpleUniverse is a Convenience Utility class
            SimpleUniverse simpleU = new SimpleUniverse(canvas3D);
         // This will move the ViewPlatform back a bit so the
         // objects in the scene can be viewed.
            simpleU.getViewingPlatform().setNominalViewingTransform();
            simpleU.addBranchGraph(scene);
       } // end of HelloJava3Dd (constructor)
        //  The following allows this to be run as an application
        //  as well as an applet
        public static void main(String[] args) {
            Frame frame = new MainFrame(new HelloJava3Dd3(), 256, 256);
        } // end of main (method of HelloJava3D)
    } // end of class HelloJava3Dd

    Thanks for your reply. I need some clarification. I am in my workbook. In the BEX format toolbar I have changed the workbook to no color. Now all cells have no color. What are the steps now to change the results rows to be yellow again?  Where do I change "The Workbook results row is the Style type SAPBEXaggItem...you can change the background for thisOr steps to"
    Full points will be rewarded.

  • Color calibration change when opening certain apps in OSX 10.8?

    Hey guys.
    I've noticed something weird when opening certain applications in Mountain Lion. For one thing, whenever I open say Final Cut X, the entire color gamut changes on my display. It doesn't look bad or anything. It's almost like the computer is changing color calibrations... like when you used to be able to select Adobe RGB in the display preferences in OSX 10.6. Anyone know if this is an intentional thing when using pro applications? Because I also notice it when I open up iPhoto and when I start "screen recording" in Quicktime.
    - Anthony
    15" MacBook Pro (early 2012)
    2.2GHz Intel i7, 8GB RAM

    I recently started noticing the same issue after upgrading to Moutain Lion. The screen will change from a warm tone to a cooler bluish tone. I think it has to be a bug, as I've had the MBP for over a year running Snow Leopard and never noticed this. I hope there is a fix on the way as this is no good for editing photos and graphic work.
    Dan

  • Maybe you are looking for

    • Goto field and listbox color formats

      i've got two questions 1. i've scripted a functional listbox (field2) that hides or shows fields depending on options selected ('yes' opens field2a, 'no' hides field2a) but depending the option chosen i want to 'go to' an appropriate field. example:

    • How to store the data of a file into an ArrayList?

      Hi! everyone. I want to know if I have a File, and the data in the file are type int, type String... And I have a ArrayList which is of type Question How do I store the data of that file into the ArrayList I tried to use the while loop(use the hasNex

    • Can't save projects in iMovie

      I keep getting this message: Cannot Save Changes Please check the disk to ensure there is enough free space and you have permission to write projects. iMovie will try to save periodically, but your changes will be lost if you quit iMovie before the p

    • How to expdp table with a BLOB field when table is larger than UNDO tbs?

      We have a 4-node RAC instance and are at 11.1. We have a 100 gig schema with a few hundred tables. One table contains about 80 gig of data. the table has pictures in it (BLOB column). Our 4 node RAC has 4 12 gig undo tablespaces. We run out of undo w

    • Can not control / observe when no user logged in

      Been fighting this for weeks. Searched the forum but found no relief. Using ARD 3.2 we can control / observe from our office to several workstations both in our same building and in other offices around the country. On all but one we can control / ob