Problem with bizarre frames in color

Okay, color is working great for me or the most part. However.
On certain situations, (and I've been unable to nail down exact combinations yet) .. such as if I add a secondary, or two secondaries.. and then add a color effect like grain reduction.. then the output suddenly gets a weird green bar on the right and bottom of the image.. it looks like digital noise, but it renders like that out to final cut as well..
If i take the grain reduction off, then it goes away.. then sometimes with other combinations I"ll get those weird green, sometimes white.. bars on the right and bottom of the image..
help?

abrownrigg wrote:
Okay, color is working great for me or the most part. However.
On certain situations, (and I've been unable to nail down exact combinations yet) .. such as if I add a secondary, or two secondaries.. and then add a color effect like grain reduction.. then the output suddenly gets a weird green bar on the right and bottom of the image.. it looks like digital noise, but it renders like that out to final cut as well..
I just saw this yesterday. I also noted if I turned off one of the secondaries the problem went away, and returned when I enabled it again. Then I went into User settings and toggled the bit depth from float and back again. The purple bar disappeared and stayed away.
Maybe a sign of a needed shut down / startup? I don't know.
Did you have FCP open at the same time? I was switching back and forth since I was making tweaks to my corrections. Don't know if that might be related. But I have noticed FCP and Color don't share the video card very well and since Color is so GPU-reliant...
- pi

Similar Messages

  • Problems with still frames blurring in Final Cut Express....

    I have had problems with still frames blurring. I've discovered it's related to the green line above the time line on the sequence bar. I can't find the name of the bar but it's red if you need rendering. There are green lines and when the scrubber hits the line the frame goes blurry.
    I'm guessing it's related to another previous attempt at adding motion to the still. My question, I think, is how to eliminate the green lines to the regular blue?
    jb

    If there are any colored bars above your video other than the normal grey/light blue then you need to render the sequence out by hitting Option-R.

  • Canon pixma pro 9500 having problems with my print out. colors are glazed and missing colors

    canon pixma pro 9500 having problems with my print out. colors are glazed and missing colors
    i have prfiled the mac and printer wiht colormunki and uplodated the profile sucessfully
    i set the printer to correct icc profile
    print out comes out same with glazed colors and missing tones/colors
    however when i use the same printer on windows and with light room, following same icc profile, colormunki calibrated profile, the print our are excellent.
    i have also tried using printer manage profile using the Mac and Aperture and get same poor prints
    can  you please assist and thanks

    I've a Pro9000 and also use Colormunki successfully.
    When I use Colormunki, I calibrate both of my monitors and the printer/paper combination. Colormunki saves the generated profiles to the correct places -- I don't load or change any profiles after that as that would mess-up what the Colormunki had just done for me, and this would likely mess-up the prints.
    Though I double-check the settings in the print dialogue, the choice for the printer handling things is already grayed-out. Colorsync handles it all just fine.

  • Problems with dropped frames in FCP 4.5 Log & Capture

    Thanks for the advice on my previous post regarding sound problems - those are now sorted, but I am having problems with dropped frames in Log and Capture. I am using FCP 4.5 with OS X 10.4.10 on a Powermac G4. CPU 867 mhz dual processor. L2 Cache 256 kb, L3 cache 1 mb. Memory 1g. Bus speed 133hz. I am capturing from a Canon XM1 via Firewire. The scratch disk is a 500gb Seagate FreeAgent USB 2.0, 7200rpm.
    Basically, the video and audio are fine while playing back in Log and Capture and I can control the device, but any attempt to capture, whether Capture Now or Clip result in a very jerky picture and aborts with dropped frames after a few seconds. The sound is ok for the few seconds before it aborts. There do not appear to be any problems with the timecode.
    My capture preset is DV Pal 48hz.
    Any advice or pointers gratefully received.
    Thanks, Ally

    Well quite. I have just tried it in the internal hard drive and it works fine now. I am going to have to capture everything to my small hard drive and move it across to the external. Then, when I have finished I am going to bang my head against the wall and buy an external HDD with Firewire.
    Thanks,
    Ally

  • Can some one help me with this problem with my frame???

    i have gt a veri strange problem with my program,that is teh graphic changes only when i resize the the frame,if i dun resize,it will remain the same.However what i intended is that when i click on the radio button,it will change immediately to the respective pages.A simple version of my code is below,can someone helpl me solve it??(there is 3 different class)
    import java.awt.event.*;
    import javax.swing.*;
    public class MainPg extends JFrame implements ActionListener{
         private javax.swing.JPanel jContentPane = null;
         private javax.swing.JPanel buttons = null;
         private javax.swing.JRadioButton one = null;
         private javax.swing.JRadioButton two = null;
         private javax.swing.JPanel change = null;
         public MainPg() {
              super();
              initialize();
         private void initialize() {
              this.setSize(300, 200);
              this.setContentPane(getJContentPane());
              this.setName("mainClass");
              this.setVisible(true);
         private javax.swing.JPanel getJContentPane() {
              if (jContentPane == null) {
                   jContentPane = new javax.swing.JPanel();
                   jContentPane.setLayout(new java.awt.BorderLayout());
                   jContentPane.add(getButtons(), java.awt.BorderLayout.WEST);
                   jContentPane.add(getChange(), java.awt.BorderLayout.CENTER);
              return jContentPane;
         private javax.swing.JPanel getButtons() {
              if(buttons == null) {
                   buttons = new javax.swing.JPanel();
                   java.awt.GridLayout layGridLayout1 = new java.awt.GridLayout();
                   layGridLayout1.setRows(2);
                   layGridLayout1.setColumns(1);
                   ButtonGroup group=new ButtonGroup();
                   group.add(getOne());
                   group.add(getTwo());
                   buttons.setLayout(layGridLayout1);
                   buttons.add(getOne(), null);
                   buttons.add(getTwo(), null);
              return buttons;
         private javax.swing.JRadioButton getOne() {
              if(one == null) {
                   one = new javax.swing.JRadioButton();
                   one.setText("One");
                   one.setSelected(true);
                   one.addActionListener(this);
                   one.setActionCommand("one");
              return one;
         private javax.swing.JRadioButton getTwo() {
              if(two == null) {
                   two = new javax.swing.JRadioButton();
                   two.setText("Two");
                   two.addActionListener(this);
                   two.setActionCommand("two");
              return two;
         private javax.swing.JPanel getChange() {
              if(change == null) {
                   change = new javax.swing.JPanel();
              change.add(new One());
              return change;
         public static void main(String[] args){
              new MainPg();
         public void actionPerformed(ActionEvent e) {
              change.removeAll();
              if("one".equals(e.getActionCommand())){
                   change.add(new One());
              else{
                   change.add(new Two());
              change.repaint();
    import javax.swing.*;
    public class One extends JPanel {
         private javax.swing.JPanel jPanel = null;
         private javax.swing.JLabel jLabel = null;
         private javax.swing.JPanel jPanel1 = null;
         private javax.swing.JLabel jLabel1 = null;
         private javax.swing.JLabel jLabel2 = null;
         public One() {
              super();
              initialize();
         * This method initializes this
         * @return void
         private void initialize() {
              this.setLayout(new java.awt.BorderLayout());
              this.add(getJPanel(), java.awt.BorderLayout.NORTH);
              this.add(getJPanel1(), java.awt.BorderLayout.WEST);
              this.setSize(300, 200);
         * This method initializes jPanel
         * @return javax.swing.JPanel
         private javax.swing.JPanel getJPanel() {
              if(jPanel == null) {
                   jPanel = new javax.swing.JPanel();
                   jPanel.add(getJLabel(), null);
              return jPanel;
         * This method initializes jLabel
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel() {
              if(jLabel == null) {
                   jLabel = new javax.swing.JLabel();
                   jLabel.setText("one");
              return jLabel;
         * This method initializes jPanel1
         * @return javax.swing.JPanel
         private javax.swing.JPanel getJPanel1() {
              if(jPanel1 == null) {
                   jPanel1 = new javax.swing.JPanel();
                   java.awt.GridLayout layGridLayout2 = new java.awt.GridLayout();
                   layGridLayout2.setRows(2);
                   layGridLayout2.setColumns(1);
                   jPanel1.setLayout(layGridLayout2);
                   jPanel1.add(getJLabel2(), null);
                   jPanel1.add(getJLabel1(), null);
              return jPanel1;
         * This method initializes jLabel1
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel1() {
              if(jLabel1 == null) {
                   jLabel1 = new javax.swing.JLabel();
                   jLabel1.setText("one");
              return jLabel1;
         * This method initializes jLabel2
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel2() {
              if(jLabel2 == null) {
                   jLabel2 = new javax.swing.JLabel();
                   jLabel2.setText("one");
              return jLabel2;
    import javax.swing.*;
    public class Two extends JPanel {
         private javax.swing.JLabel jLabel = null;
         public Two() {
              super();
              initialize();
         * This method initializes this
         * @return void
         private void initialize() {
              this.setLayout(new java.awt.FlowLayout());
              this.add(getJLabel(), null);
              this.setSize(300, 200);
         * This method initializes jLabel
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel() {
              if(jLabel == null) {
                   jLabel = new javax.swing.JLabel();
                   jLabel.setText("two");
              return jLabel;
    }

    //change.repaint();
    change.revalidate();

  • Major problems with dropped frames while trying to capture

    Are there any settings where you can change the sensitivity of FCP HD or any settings that I am not aware of?
    Trying to capture from DigiBeta through a Sony J30 SDI, the whole thing wount go for a minute without intruption and dropped frames.
    I have tryed several tapes and finally I tried to copy through FireWire on to MiniDV on my XL1on a new unused DV-tape and then from there on capture into FCP but the problem remains.
    I have had some minor problems with this earlier but never as severe.
    I am capturing onto a Lacie BigDisc hooked up through Firewire 800 and there ia 170 GB free so thet should not be a problem.

    Andreas,
    The J30 specs state "All standard definition, half-inch Betacam format tapes, dating back some twenty years, can now easily be converted to a 25 Mbps DV signal and transferred to a compatible DV device via a single digital interface cable.", but you say you've tried that, and from the specs I'm assuming you'd need some conversion from the deck to go straight into FCP...like a Canopus or like you did dropping to DV tape.
    Have you tried a different FW port and/or cable?
    Other posts have mentioned changes of FW cables or ports as a solution, so I'm inclined to agree with David that you may require a FW800 card...we purchased one, when we bought our Big Disk Extreme. However, I don't capture to it, only archives and storage.
    Are you trying to capture internally to your system drive? (I'd guess not, as I've read some of your posts and would be surprised if you were)
    Any recent upgrades/updates or other changes in your config?
    K

  • Smaller problem with handling frame-borders in dreamweaver 8

    Hello people
    I have build a website using a frameset in dreamweaver 8.
    Ewerything works fine, except i cannot drag in my frames when i
    re-open the page. I try to select frames in the "windows" bar, and
    click on the different frames to make the frame-border appear, but
    it does not. Only dotted lines that indicate the selected frame
    appear.
    mabe there is a button somewhare that make the draggeble
    borders come back..
    if anybody knows the anwser to my problem - please write.
    Thanks
    Daniel - Copenhagen

    > I have build a website using a frameset in dreamweaver
    8.
    Why? Are you familiar with all the problems associated with
    choosing frames
    for you layout?
    > except i cannot drag in my frames when i re-open the
    page
    Hmm - I don't understand this. You have created a frameset
    page in which
    you define your frames, right? And you have saved both the
    frame pages, and
    the frameset page, right? So, you next open which page? The
    frameset? Or
    the frame page?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "duranduranduran" <[email protected]> wrote
    in message
    news:glk8uh$noc$[email protected]..
    > Hello people
    >
    > I have build a website using a frameset in dreamweaver
    8. Ewerything works
    > fine, except i cannot drag in my frames when i re-open
    the page. I try to
    > select frames in the "windows" bar, and click on the
    different frames to
    > make
    > the frame-border appear, but it does not. Only dotted
    lines that indicate
    > the
    > selected frame appear.
    > mabe there is a button somewhare that make the draggeble
    borders come
    > back..
    >
    > if anybody knows the anwser to my problem - please
    write.
    >
    > Thanks
    >
    > Daniel - Copenhagen
    >
    >

  • Problems with large frame uncompressed AVI files in QT 7 player

    I have just recently gone from QT Pro 6.5.2 to QT Pro 7, mainly because of the HD support.
    I have a dual boot system with QT 7 on Windows 2000, and QT 6 on Windows 98SE.
    I am having problems playing uncompressed AVI files in the QT 7 player, apparently if the frame size is large (in the example case 688 x 516).
    Sometimes I just get "error 108 unknown error" pop up when I try to load the file. Sometimes the file loads but will not play except in short bursts of movement every now and again as it moves along the timeline. Sometimes the file plays, but with one or more broad black lines across the image!
    All the problem files play perfectly in QT 6.5.2, but will not play in QT 7, which should surely play them better, not worse!
    Can anyone make any suggestion as to what's happening?
    I've uninstalled and reinstalled QT 7, which made no difference. I'm sure I don't need any extra codecs, as QT has always played RAW AVIs without anything extra before.
    Thanks in anticipation, Dave.

    I have just recently gone from QT Pro 6.5.2 to QT Pro 7, mainly because of the HD support.
    I have a dual boot system with QT 7 on Windows 2000, and QT 6 on Windows 98SE.
    I am having problems playing uncompressed AVI files in the QT 7 player, apparently if the frame size is large (in the example case 688 x 516).
    Sometimes I just get "error 108 unknown error" pop up when I try to load the file. Sometimes the file loads but will not play except in short bursts of movement every now and again as it moves along the timeline. Sometimes the file plays, but with one or more broad black lines across the image!
    All the problem files play perfectly in QT 6.5.2, but will not play in QT 7, which should surely play them better, not worse!
    Can anyone make any suggestion as to what's happening?
    I've uninstalled and reinstalled QT 7, which made no difference. I'm sure I don't need any extra codecs, as QT has always played RAW AVIs without anything extra before.
    Thanks in anticipation, Dave.

  • Problem with text frame dropshadow not completely printing to pdf file.

    Hi and thanks for your speedy replies!
    I am editing a file that had altered corner text frames with a .25 inset and a drop shadow added, .05 stroke and paper swatch. When I deleted text everything shifted so I had to recreate the special frames on select pages. These new text frames are not showing the top and left sides of the frames when saved to pdf file. The right and bottom drop shadow are showing.  What am I missing?
    Cheers!

    I am using the latest version in CC. I tried several exports directly from ID, PDF/X-3:2002, PDF/X-1a:2001 and the low res setting, all with no changes.  None showed the left or top border on the frames in question.
    So I was getting the first screen shot instead of the second which other similarly formatted frames showed.  I checked every setting I could find and they were all the same.  The problem just occurred after the point in the doc that I had made changes resulting in some pages being deleted and the page formatting being thrown off which I corrected with the appropriate saved page formats.  But when I went to set up the frame dropshadow and accompanying stroke and swatches, the outline just would not show in the pdf although it appeared to be showing in ID.
    I've since discovered a work around for the editing so no pages were deleted, but I need to figure out why this happened and what I am not seeing. Perhaps a setting to show the border? Or maybe it is some overall setting that I need to be looking for? Just weird, weird, weird...

  • Problem with my 20GB Ipod Color Display

    I bought my Ipod with color display a month ago. After charging it one day, my menu button suddenly wouldn't work. Everything else was working fine (all the other buttons) but the menu wouldn't show up, except I could still hear the clicking sound. For the next three days it wouldn't work, but on the fourth day everything was fine again! I have no idea what was wrong, but I have taken very good care of my Ipod since I got it.
    Did anyone have the same problem?
    And would Apple allow me to send it back for a repair even if it is working ok now?
    Also, should I buy the extra warranty for my Ipod?
    Lastly, where is the page on the Apple website where I can email an Apple representative with a question about my Ipod? (or at least the email)
    Another thing - my Ipod seems to charge incredibly quickly, it doesn't take 3-4 hours as Apple says, and it seems to drain the battery faster than 14-15 hours too. and I don't look at photos on mine. Is there something wrong with my battery?

    Hey,
    As for your last question, the battery will charge to 80% in about an hour, and use about 2-3 hours for the rest.
    -Matt

  • Problems with jpg export and color profiles

    I browsed the forum but I didn't find any recent thread about the issue I'm experiencing right now, I wonder if it's common or it just affects me. Mavericks, Aperture 3.5, all up-to-date.
    I imported a RAW file (I tried with both a Nikon and a Sony camera), made a few adjustements and then exported the picture as a jpg. It looked good in the Finder, in Photoshop, in Preview. When I uploaded the file to flickr, everything was ok.
    Then, I browsed flickr via its iOS app and - surprise - the image is completely wrong: colors are washed out, desaturated, with an awful greenish dominance. I tried a few things and discovered soon that also opening the file on my Mac with GraphicConverter has the same ugly result. Same with the iOS version of Safari.
    I use ProPhoto RGB as my default color space in Aperture. I changed to sRGB: same result. I changed to AbobeRGB and te output is finally consistent through all the platforms and apps.
    Too bad I managed to do this only for one photo because, even if I changed the settings, every other photo I exported is still sticking with ProPhoto RGB. The problem is surely here because I solved it changing manually the color space to AdobeRGB with Pixelmator and re-saving the images one by one. But of course this cannot be a successful workflow...
    Any experience about this?
    Thank you!

    OK, I can reply to myself. The issue has mysteriously gone away - no idea why. Edit: The issue is gone on Desktop, with GraphicConverter. From iOS, pictures still look weird.
    About the exported default, my bad: I was using presets and they choose their own settings for color space. Still, no idea why the first one was exported in Adobe RGB instead of ProPhoto RGB (the default for "JPEG - fit within 2048x2048").
    Message was edited by: difool

  • Problems with Optimize Window Matte Color Picker

    Every time I try to open the Optimize Window's Matte Color
    Picker when the palette is docked to the right side of the screen,
    the color picker opens off screen so that I can't see it. I have to
    move the palette to the center on my monitor to see the color
    picker. Anyone else having this problem?

    Matte Color Solid and Boris Vector Shape match for me. Matte Color does not.
    I could not get the colors to match with the eyedropper. I could not figure out what was going on with the eyedroppper.
    When I used the crayon selector, my results were the same as when I manually entered a set of numbers
    I'm doing this test on my laptop, looking at the canvas, DV sequence.
    By looking at the internal vectorscope and waveform I could see that the brightness and saturation were not matching. Hue seemed to be right on.
    By lowering brightness and increasing the saturation on Matte Color I was able match it to the other. But as Zeb points out, this visual match required different HSB values.
    Play with the Boris Vector Shape if you haven't. Cool.
    Tom

  • Problems with distorted frames when making movies in After Effects

    I'm a 3D animator.  When I get through with
    rendering all of the frames of an animation and they're fine, I create a preview in After FX and it builds and plays back the preview fine.  But when I go to make a movie, with those same frames, it produces frames in different spots which are blurred, stretched, distorted, spun and or dropped.  What could be causing this?  N E help is greatly appreciated.

    There MUST be a simple answer to this problem....
    There is a simple answer indeed.
    Here it is:
    The highlighted button in the Comp panel enables Pixel Aspect Ratio (PAR) Correction.
    So, instead of stretching the footage horizontally, you create a Composition with the same frame aspect and Pixel Aspect Ratio as your source footage (just drag the clip to the New Comp button in the project panel and AE will automate this) and then enable PAR correction and After Effects will give you a corrected (deanamorphized) preview so you won't see it squeezed at all on a computer monitor. When you export it, it will look squeezed until you take it to the target video application. Any professional video application will handle this correctly.Millions of people do this every day, since non-square pixels are still dominant among the most popular video formats.
    Even Photoshop has had support for non-square pixels (and PAR correction in the document panel) since CS (ie. Photoshop 8.0).
    Note that when you turn on PAR correction (just like when you use odd magnification levels) AE switches to a draft filtering mode, which makes type and other elements look a bit jagged. Don't worry, it's just a preview.
    The ideal solution, and the one video professionals rely on, is adding video output hardware to your computer, so you can connect a professional video monitor. After Effects can provide a live preview using such a set-up.
    For more information on PAR, see Pixel aspect ratio and frame aspect ratio in After Effects Help.

  • Problems with Epson perfection 4490 color profiles using photoshop cs6

    I have some items that I wanted to scan with Adobe RGB color profile, with my Epson perfection 4490 scanner. I am on a mac using mac os 10.7 lion.
    I go into the configuration settings in Epson scan & set it to colorsync, & choose Adobe RGB, then I scan. I checked epsons website for current drivers, & I have current drivers.
    when I open up my scanned images in photoshop CS5, & CS6, & go to convert to profile, (to check what profile the scanner used), it shows the color source space as sRGB. I go to the file save as, in photoshop, & it only shows sRGB as the color profile to save in.
    what is happening? why wont my scanner use Adobe RGB? is there something in photoshop settings I need to adjust? I have never had this problem before.

    try downloading the iPHOTO TUTORIAL TEST IMAGES a bit below this link
    and dragging the tagged & untagged sets into your various web browsers, image browsers, applications...
    the iPhoto download contains a low-resolution reference image in five colorspaces (10 .jpg files, five tagged and five untagged versions of the same image) in sRGB, WhackedRGB, AppleRGB, ProPhotoRGB, AdobeRGB

  • Problem with new 1.03 Color update? Media offline.

    Hi.
    I'm fairly new at using Color. I recently updated Color to 1.0.3.
    and now I have a problem when I send a sequence from FCP to Color.
    All the media (except graphics made in Livetype) are offline.
    Before the update, everything was working fine.
    Sending the project and exporting/importing a XML-file gives the
    same results.
    I have tried to reconnect the media, but it seems to do nothing
    when I find the right clip and click "choose".
    (I have some clips with variable speeds made in Final Cut, but
    that didn't seem to be a problem in the earlier version. Worked just fine.)
    I'm editing XDCAM 720p footage shot at 60fps.
    Is anyone else having this problem? Does the update change some preferences
    that I'm not unaware of?

    You will not find Color 1.0.2 anywhere since Apple has released an update, unless someone has been good enough to take precautions and download the updaters first, save them, and then do installations. There is a preference within Software Update that you can first download the updates so you can then save them, then install.
    Speaking of precautions, reading this thread, I'm just flabberghasted that folks don't do clones at all before updating. Had you cloned your system drive, you'd be back up and productive in less than an hour. Cloning a system drive is a well documented piece of system maintenance and it takes nothing but an investment in a harddrive (cheap these days), some free software and some time. Amazing.
    That being said, certainly does seem to be a Sony-centric issue stemming from this update. You may check the other Color boards and Sony camera boards to see if other users are having these problems and if there are any solutions. You can also leave feedback for Apple. FWIW, I don't work with xdcam ex material so I've not been having these issues at all. As I said before, this update cured some ills I was having with Color and it works better than ever where I sit.
    z.

Maybe you are looking for

  • Transaction aborts after installing ODAC 12c Release 3

    I have .net code that used a transaction scope which works fine using ODAC 11g Release 4, but fails with "Unable to enlist in a distributed transaction" using ODAC 12c Release 1,2, or 3.  The transaction to a single database.  I am at a loss for what

  • Production in another location

    Hi, When i CIF the PPM for some material it is creating with Production in another location but for some material it is not creating. I checked the special procurement it is maintained correctly in the planning plant. Everything looks find but still

  • Resolution & "save as" ?  for online photo book

    I am making an online photo book through Snapfish. When I am done editing my images using Elements, I go to resize and make it about a 4X6 size with a dpi of 200 or so and "save as" a Jpeg. When I go to Snapfish to put my album together, I sometimes

  • Siebel QC Integration in Oracle ESB 10g

    In our current project Quality Control(QC) to Oracle ESB 10g Inbound/Outbond is RESTful request/response and Siebel to ESB SOAP. My qusetions are 1. How will ESB process RESTful request from QC? 2. How will ESB generate RESTful response for QC? Pleas

  • Can't get rid of swatch pattern lines

    I'm creating a map using a woods pattern swatch in Illustrator. There are straight lines which appear seemingly at random when this pattern fills in the perimeter drawn with the pencil tool. Perhaps it's where the swatch pattern repeats itself, and I