Blue lines on video capture

I am capturing video from Panasonic Mini DV Model PV - GS90P it was shot on a Panasonic 3 CCD Leica Dicomar I am using a Fire Wire. I have already captured one tape and it worked fine. It will play the video but there are thick blue lines across the screen. Anybody ever had that problem?

The Dicomar is a lens, not a camcorder. What camcorder was it?
Have you ever captured other video from your PVGS90P? Was that video ok?
Are the blue lines steady, or do they move around? Are they through the entire video or just part of it? I would suspect the tape or some incompatibility between the recording made on the shooting cam and the playback on your GS90P. This can happen if the heads on one or the other cam are out of alignment, dirty, etc.
What versions of FCE and QT do you have on your MacBookPro? How much RAM, etc?

Similar Messages

  • Remove blue line in video

    Hi
    I have a capture where a lighted candle is in front of a picture there is a vertical blue line above the candle flame, must be a lighting thing but I can't remove it with camera settings. Is there a way to remove it in FCP?
    thanks

    there is a vertical blue line above the candle flame
    Sounds like "vertical smear" ... typical of CCD chip(s) from point-source light.
    From: http://www.leutron.com/english/glossary/glosry_d.htm
    Vertical smear:
    Vertical smear is a phenomenon peculiar to some types of CCD camera which occurs when a bright object or light source is shot with the camera. This phenomenon is observed on the monitor as a vertical streak above and below the object or light source."
    -DH

  • I have a problem with my blackberry 9360, I bought it last 2months, and now when I use video camera or camera I saw a red and blue line. Can someone help me with this issue?

    I have a problem with my blackberry 9360, I bought it last 2months, and now when I use video camera or camera I saw a red and blue line. Can someone help me with this issue?

    Hello zukafu, 
    Welcome to the forums. 
    In this case we can try to reload the software on the BlackBerry® smartphone to make sure it is running the latest version and there are no issues with the OS.
    Here is how to backup your BlackBerry smartphone http://bbry.lv/oPVWXc
    Once you have backed up your BlackBerry smartphone please follow the link below to complete a clean reload of the BlackBerry smartphone software.
    Link: http://www.blackberry.com/btsc/KB03621
    Once completed test it and proceed with a selective restore, here is how to restore http://bbry.lv/qgQxLo
    Thank you
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Video freezing. slow video loading, blue lines...

    Well, I installed Arch (x86_64) recently and followed the beginner's guide which suggested that i install 'xf86-video-ati' for my ATI video card. I have a Radeon HD 4350 video card. After installing flash, I went to youtube and the videos take longer to load than on my prior ubuntu system, and sometimes the it will freeze while the audio keeps going. Although once it loads, there is no lag so it's not internet connection. (I downloaded a 100mb file in a couple minutes) When I click on full screen, it won't listen and gives me a flicker on the screen. I have to try it a few times to get my full screen working. And I'm getting these weird thin blue lines going through my downloads window for firefox.
    I'm wondering if I have to download the proprietary driver at the ATI website. I did find a driver for the Radeon HD 4300 Series. Any suggestions/help would be appreciated!
    FYI, I installed WMFS2

    You probably shouldn't be using hardware acceleration in Flash with open source drivers (xf86-video-ati).
    https://bbs.archlinux.org/viewtopic.php … 1#p1108851
    Also: https://wiki.archlinux.org/index.php/Be … tc.2Fhosts
    Errors in this entry may cause poor network performance and/or certain programs to open very slowly, or not work at all. This is a very common error for beginners.

  • Hi, when trimming a project through project manager I get blue lines and the video is missing. I'm using PP CC 2014. Why is this?

    I have tried through Project manager to save a "Trimmed Project" but when I open up the trimmed project some video is missing or is the wrong video and on the timeline these missing videos have a diagonal blue line. Any idea on why this is happening would be greatly appreciated.

    Is this a Mac?  If so what version of OSX?

  • Add video capture feature to CIVideoDemoGL

    Hello,
    I'm a little bit stuck with the CIVideoDemoGL. How do I add video capture feature to this demo instead of using a file as input?
    I know how I capture the video stream from camera and captureOutput:didOutputVideoFrame:withSampleBuffer:fromConnection: is called every time a new frame comes. I can also see a preview of the captured video on screen on the CaptureView.
    What I want to accomplish is methods to manipulate video on the fly (as in CIVideoDemoGL) directly from a camera (iSight or likely).
    I have tried to change renderCurrentFrame in VideoView.m. Instead of
    +inputImage = [CIImage imageWithCVImageBuffer:currentFrame];+ I have made a method that retrieve a CIImage* from VideoController (where I've place every captured frame from camera).
    The method call is like this: +[delegate getCurrentCapturedFrame:self data:(CIImage*)inputImage];+
    This method initializes the given CIImage with data from the captured frame.
    When I run this code I retrieve the following error in console +Program received signal: “EXCBADACCESS”.+
    So, something bad is going on but I don't know if I'm on the right way. Maybe it's my method getCurrentCapturedFrame that returns a bad object.
    Any ideas?

    Hello again,
    Thanks for your help. There was something wrong with my code.
    During this weekend I have managed to get captured video playing. But the video is almost black and white and if you zoom into it you can see red blue and green vertical lines. Even if I remove the filters I can see this happen. If I compare the video with the Capture view that I have implemented beside the OpenGL View I can see all colors on the first one. Any ideas?
    I have modified the original renderCurrentFrame to the following:
    - (void)renderCurrentFrame
    NSRect frame = [self frame];
    NSRect bounds = [self bounds];
    CGRect imageRect;
    CIImage *inputImage;
    CIImage *timecodeImage;
    // update timecode overlay
    timecodeImage = [timeCodeOverlay getImageForTime:[self currentTime]];
    if(!readyToGrabFrame)
    return;
    //Put captured image into inputImage
    inputImage = [CIImage imageWithCVImageBuffer:mCurrentImageBuffer];
    imageRect = [inputImage extent];
    [colorCorrectionFilter setValue:inputImage forKey:@"inputImage"];
    [effectFilter setValue:[colorCorrectionFilter valueForKey:@"outputImage"] forKey:@"inputImage"];
    [compositeFilter setValue:[effectFilter valueForKey:@"outputImage"] forKey:@"inputBackgroundImage"];
    [compositeFilter setValue:timecodeImage forKey:@"inputImage"];
    CGPoint p = CGPointMake((int)((frame.size.width - imageRect.size.width) * 0.5), (int)((frame.size.height - imageRect.size.height) * 0.5));
    // render our resulting image into our context
    [ciContext drawImage:[compositeFilter valueForKey:@"outputImage"]
    atPoint:p
    fromRect:imageRect];
    // housekeeping on the visual context
    QTVisualContextTask(qtVisualContext);
    My captureOutput:didOutputVideoFrame:withSampleBuffer:fromConnection is moved to VideoView class instead and I have also created an object that keeps the captured buffer with the name mCurrentImageBuffer
    The method looks like this now:
    - (void)captureOutput:(QTCaptureOutput *)captureOutput didOutputVideoFrame:(CVImageBufferRef)videoFrame withSampleBuffer:(QTSampleBuffer *)sampleBuffer fromConnection:(QTCaptureConnection *)connection
    countFrames++;
    [lock lock];
    CVImageBufferRef releasedImageBuffer;
    CVBufferRetain(videoFrame);
    @synchronized(self)
    //basically, have frame to be released refer to the current frame
    //then update the reference to the current frame with the next frame in the "video stream"
    releasedImageBuffer = mCurrentImageBuffer;
    mCurrentImageBuffer = videoFrame;
    CVBufferRelease(releasedImageBuffer);
    readyToGrabFrame = YES;
    [lock unlock];

  • How to connect a video capture device to Satellite M30X 127

    I'm going around in circles trying to find a video capture device that will function with a laptop and would be grateful for advice. By way of example, I'm now looking at the 'Canopus ADVC-110', although still looking around (but not Pinnacle, who seem to have a terrible reputation for capture items).
    Problems include:
    1. Main problem is - many video capture external devices require a 'line-in' to PC for good quality audio transfer. This laptop doesn't have a line in, only the mike and headphone jacks. In addition, I've also tried a few RCA pins in the 3.5mm microphone/headphones jack and they were too small. How to solve the problem of getting audio from vcr to my PC?
    2. The ADVC-110 connects to the PC via Firewire (and S-video), but is a SIX-pin type. M30X is a FOUR-pin type. Are there adapters available?
    3. Some capture programmes seem to require huge capacity of RAM. Is a laptop going to be suitable to do the job? (I simply want to capture old vhs tapes from vcr to PC, then burn to DVD with Nero 7 or similar).
    Thanks in advance!

    Hello
    You are right! You must use external device for signal transfer to your notebook. I dont know where you have this info but I have good experiences with Pinnacle product. For data transfer I have used USB port.
    'Canopus ADVC-110 is not known to me but I dont see any reason why this should not work well. Use delivered software for video capturing and there should not be any problem.
    Only thing is that after recording the whole video material must be prepared for burning and unit need a lot of power to do this well und fast. When you buy this and want to use on right way I recommend you to expand RAM to 1GB.
    Compatible memory modules for your Satellite M30x are:
    PC2700 512MB (PA3312U-1M51)
    PC2700 1024MB (PA3313U-1M1G)
    Bye

  • Plug-in for StarTech Video Capture Card

    StarTech'website shows their ECHDCAP ExpressCard video capture card supports Adobe Premiere CS5 plug-in for editing. I talked to a Tech at StarTech and he said the card should work with Premiere Pro CS5 & CS6 but StarTech doesn't support it, and he didn't know where I can get the Premiere SC5 plug-in. Does anyone know what plug-in StarTech is referring to, and where I can get it?
    If anyone is currently using the ECHDCAP capture card or the StarTech USB3HDCAP Capture Device, please let me know how you got it working with Premiere Pro.

    Ann & Bill,
    I probably should have given you more information. This application is different than what I usually use Premiere for.
    One of my hobbies is shooting long range rifles at 1,000 yards. I'm trying to capture the point of impact on steel targets 500 to 1,000 yards away. I've attached my XA10 to my Swarovski spotting scope so I can see the impact. I've been transferring the video from the XA10 to my computer through the USB port, then importing the video into Premiere and adding it to the sequence. By the time I get all this done, then scrub the video to find the frame with the initial BANG, then count 41 frames forward for 870 yards, then scrub the video again to find the impact point, the wind and several other conditions have changed which affect my next shot. this makes for a long and tedious day.
    The bottom line is... I'm trying to streamline my workflow so I can capture the video from my XA10 straight to a Premiere sequence, then start scrubbing the video to find the point of impact.
    The reason I'm using Premiere is because none of my other programs allow me to scrub with audio.
    I would prefer not to spend $600 for a Maxtor MX02 Mini and ExpressCard adapter; especially since it requires 110 volts and that's not available at the shooting range.
    If you know of another way to do this, or can recommend an inexpensive program that will allow me to capture audio and video from my XA10 and scrub it with audio, I'd sure appreciate hearing about it.
    Thank you,
    Brian Scura...

  • Can I capture the video from the TV card or video capture card to publish

    Can I capture the video from the TV card or video capture card to publish?
    I tried to use the USB camera, it's OK. But, will the TV card or video capture card also work?

    Hi,
    iChat will set up a Video chat window that takes in to account your Processor speed and Internet Speed and to some extent the Buddy's speed.
    This then denotes the pixel content of each frame.
    OS X 10.6.x tells me this is iChat 5 which in turn mean you have  at least an Intel Core 2 Duo Processor.
    This should be capable of 30 frames a sec at  about 640 X 480 pixels  (Check the Connection Doctor (Video Menu) and the Statistics tab during a Chat).
    iChat 5 cannot do HD  (Max of 4:3 ratio at the above figures)
    After that it depends how you are recording the chat.
    Quicktime X would do it.
    iChat will do it itself (if the Buddy agrees)
    10:14 PM      Wednesday; February 1, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Can't get rid of unwanted blue lines (CS4 on Mac)

    Hey I just joined the forum and I have also just started using Premiere yesterday. I am working on a project that shows a drawing being made in pencil. Some of the lines in the drawing has blue in them and I have no idea why. I have looked at video tutorials showing how to use the fast color corrector and the three way color corrector and I have played around with both of those effects and I still can't target just the blue lines.
    Does anybody know how to get rid of the blue?

    Hi,
    Good luck ...
    If you want to play around wth color correction filters for future shoots like you did...this info might help...
    I can't tell but it looks like you mighta used the existing flourescent lighting ?
    If what I read about UV and chips is true you could maybe get a gel roll.  The rolls are about 4 feet by 50 feet or something...
    They are way less expensive than photography store CC gels...and you can re-use a lot if you don't crumple it up...
    You don't have to worry about scratching them etc..
    However, they can be about $100 or so for a roll.
    If you have any film equipment rental places in your town they often have "open" rolls where you can get maybe free samples...like enough to cover all your lights...
    people just use paper tape ( masking tape) to tape the gels onto flourescents...and wood clothes pins to pin onto barn doors of lights...
    These people have places worldwide so I just put the USA links...
    homepage for rosco filters
    http://www.rosco.com/us/index.asp
    order free swatch books
    and gel samples
    homepage for Lee filters
    http://www.leefiltersusa.com/lighting/
    link for lee filter color correction gels page
    http://www.leefiltersusa.com/lighting/products/range/ref:I46C9C0F254FD6/
    link for Lee filters UV absorbtion filter
    http://www.leefiltersusa.com/lighting/products/finder/ref:C46DD4225904A9/
    order free swatch books
    and gel samples
    and order free sample of the UV absorbtion filter
    You'll get sample gels about 8 x 10 inches or so...maybe bigger
    The swatch books are small filter samples just big enough to look through and put over your color meter sensor...so you can see how it's working
    They love sending samples !

  • Recently updated, blue lines on screen

    I recently updated the software on my 30 GB ipod video, and when the software finished updating and my ipod reset itself, thin blue lines now appear vertically on my ipod display screen. Does anyone know how to get rid of those lines? or should I take it in to be fixed??

    i am having the same problem, and that suggestion did not help. i updated my ipod last night before i went to bed and this morning the screen appeared to be distorted. i ejected it from my computer but the screen was still showing a distorted "do not disconnect" yet it was covered by what appears to be multi-colored or blue squares. can anyone please help????

  • FME Video Capture Card

    Hi,
    I recently installed Media Flash Encoder 2.5 onto my PC and
    need to purchase a video capture card. What do you recommend?
    Thanks.

    I have a Leadtek WinFast PxDVR3200 H Hybrid Analog / DVB-T
    tuner card.
    It works fine with the analog tuner but It does not recognize
    the DVB-T part.
    I need this because I need to set up an on-line 720p TV
    stream.
    I also tried to make tests with a TechiSat SkyStar HD but it
    is not recognized by Flash Media Encoder 2.5
    Could someone please recommend a HD DVB S2 or T card that
    works with Flash Media Encoder ?
    Any help would be very much appreciated.

  • PC video capture card - Not Applicable?

    When I was a Comcast analog customer, I purchased a Hauppauge WinTV-HVR-1600 video capture card. The unit worked great converting my Media Center PC back into a DVR when my original Dell equipment All-In-Wonder capture card died.
    When I was considering switching to Fios, Andrea S. at Verizon told me that there was software I could download so that my vid-cap card would work. I assume she meant that it would unscramble the signal for viewing or recording. Once Fios was installed, Andrea didn't answer my emails any more and recent inquires to Encore about any other devices (like DCT700 or something) have been fruitless.
    I hate to take no for an answer!
    Isn't there some way for my PC to record Fios video? I would think the most un-elegant solution would be to rent another STB and take the analog output to my PC but then I couldn't program channel changes, etc. There must be something out there that I'm missing.

    JoeS wrote:
    I hate to take no for an answer!
    Isn't there some way for my PC to record Fios video? I would think the most un-elegant solution would be to rent another STB and take the analog output to my PC but then I couldn't program channel changes, etc. There must be something out there that I'm missing.
    Any PC card with a QAM tuner can record the SD and HD locals (and music channels) from Verizon FiOS.  Other digital channels such as USA, TNT, SciFi, FX, ESPN, and HBO cannot be tuned because they are encrypted.
    My favorite PC QAM tuner is the HDHomerun ($160) because it has two ATSC/QAM tuners and excellent, cross-platform software support.  It works very well with Vista Media Center.  If you really want an internal solution, take a look at the Hauppauge WinTV-HVR-2250 ($120); this PCIe card has less software support, and may require the Vista Media Center TV pack.  Both of these solutions can record two different SD or HD locals from FiOS at once.  Once again, the QAM tuners in these products can only record unencrypted channels, which consist of channels 1-50 plus the HD locals and music channels.  The Hauppauge WinTV-HVR-2250 also has an s-video input to record the s-video (SD) output from a Verizon set-top box.
    If you want to record high-definition directly from the Motorola HD STB, you could buy the Hauppauge HD PVR ($200).  This is a USB device that connects to your computer; it records the HD component video output and optical audio output from another device (such as the FiOS HD STB) to your computer's hard drive.  That product was used to create this video, as well as most of the high-definition PS3 and Xbox360 gameplay videos on Youtube.  In my experience, this product can be a bit buggy, especially when recording Dolby Digital.  It is more reliable if you will settle for stereo sound.  Picture quality is better than you see in the Youtube videos -- Youtube recompresses and degrades quality -- but not quite as good the original output.
    When I want a program on my computer, I simply download the SD/HD recording from my TivoHD's hard drive.  I then edit and/or burn to DVD or Blu-ray disk.  The ability to download recordings directly from the DVR is one of the features unique to TiVo. Screenshot: 
    Message Edited by KenAF on 05-27-2009 12:01 AM
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it.

  • Inserting line in video rather than hanging in air in adobe premier pro

    I want to draw a line in a video on the last layer of the video.Like if i hv taken a video of a part of roads with vehicles runningOn it and i need to draw a line on the surface of the road.I am trying and the line which i put in the video.it used to hang inThe air with vehicles going down from under the line which i hv drawn.but i need that the line should be look like as if it attached To the roads and vehicle passing over it..which actuallyShould look as real video with line attached to the surfaceOf the road rather than hanging in the airI am very new to adobe.and trying for it and i am in urgent needOf it's solution.thanks in advance.
    what i am doing is open the video from premierPro cs5 and drag that video in video 1 pane.and then press Ctrl t and put the line in the imageand save and after that drag that Sequence to video2 pane and then save..after that i click on theExport button..but the desired output of line on the last layer surface ofThe video..i know there r much steps after that like aftereffectWhich i do not know.please help me i am very newbie.please explain itTo do step by step to achieve the desired result.

    Thank you for responding.
    I took your advice and in the Capture window there’s an option near the bottom right that states “Capture” and below that is a button “In/Out”. I guess this is what you are talking about. So I click on the button, “In/Out” and I get a pop up the states, “Invalid time code range”. How is the average use supposed to know what this cryptic message is saying? (user unfriendly).
    I see two icons that look something like brackets that is to the left of the play button. I clicked on these but nothing seems to happen. I don’t know what is going on. (user unfriendly).
    Perhaps since I need just a typical You Tube video, I should purchase video capture software that is more users friendly and less intuitive. That being said, MS Movie Maker does not show the option “Capture from video device” I may try video capture software on CNET.com that is recommended and has a money back guarantee. I paid a lot of money for my Adobe Premier, but being that I am in Windows 7, perhaps it is time to retire Adobe.

  • I bought a refurbishe​d HP P2-1013W and it will show some blue lines on the screen and lock up.

    I purchased this pc in April but did not take it out of the box until recently.  Set it up for my parents and it keep getting the blue lines and locking up.  There is no particular situation that causes it to freeze.  I did the system restore to factor defaults, worked fine for a couple of days and now it is doing it again. 

    Hello ddolson69,
    To rule out the monitor as being the issue we need to first test it on another machine. If the problem persists there we know the monitor is the cause. If the monitor works fine then we know we have the issue with the system.
    Are you using an integrated video card or are you using a video card that has been added to a PCI slot? 
    Open the computer up check the fans and ensure all fans are working properly and that there is adequate air flow within the machine.
    If it's dirty inside clean it out with a can of compressed air. Pay particular attention to the heat sink and any fans that may be attached or around the video card.
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.

Maybe you are looking for