Bad interlacing & image problems?

I've shot some interviews on our Panasonic HVX 200 in SD using the 480i 60i DVCPro 50 setting. Ingested into FCP fine and editing fine. I've even added stills and threw in a little ken burns action on the stills. Here's my question, my sequence was set up correctly using the easy set up and my sequence plays back perfectly using my Intensity Pro card to a consumer TV, but upon export I get all these weird interlacing issues. The fields on the stills look like they have shifted dramatically. I've used TIFs at 72 dpi because I've found FCP does not like JPEGs half the time. I've also noticed that a few images (mainly the print ads i've placed in) all appear as one solid color, pink. Can't figure this one out.
So, I think I've found a work around for the problem. I exported those smaller image sequences and nested them back into a duplicated timeline. What causes the field shifting in both Export to quicktime, and Export using Compressor to make MPEG 2 files for DVD? I would like to resolve this so I don't have to nest the image sequences next time. I just adds a lot more work. What am I missing? Again, play is fine, exporting is the issue.

Hmm, thought I said x86-64, not Itanium (people run Itanium still?). Yes, officialy CentOS is not supported (but it is codebase the same as RHEL 4.4 and since this is only dev work...), but if you read the message, I cannot even get to the install because I cannot extract the files from the CPIO using the instructions provided...so...again, anyone else having this issue? I know the site was having some problems earlier in the week and the files were null.
BTW, the 32-bit version installed just fine (other than the ksh relinking issues...d'oh...when are we going to get rid of that as a requirement in linux?).

Similar Messages

  • Image problem in V4.0

    Hi,
    Previously I had lots of problems with showing a BLOB image from a table
    in a report using the apex_util.get_blob_file_src function.
    Varad put me right on several ocassions: see the thread at
    Confusion with get_blob_file_src
    Eventually everything went well, and I got my images of a specific size on the screen.
    In the last month or two, the host database that I rent went up from version ten to version
    eleven, and the apex version changed too from 3.2.1 to some version of 4.
    I've only now discovered that the images don't display any more. I've re-read the thread
    mentioned above but can see no deviation from Varad's sterling advice. It still doesn't work,
    so my current guess is that something has changed when Apex went to its new version.
    Can anyone point me in the right direction regarding Image problems in version 4 ?
    I guess I'm not the first to experience such issues, and a checklist of things to try would
    be most welcome.
    I've done a View->Source on the page that doesn't work, and the issue with a missing value
    for the "d=" parameter on the apex_util.get_blob_file seems to have recurred:
    src="apex_util.get_blob_file?a=130&s=1718106956127950&p=13&d=&i=25615931827270369&p_pk1=5&p_pk2=&p_ck=947078FC54BB5126E7E0D19F8A24C416"
    Suggestions welcomed please; thankyou in advance.
    Mungo

    Hi Folks,
    I've found a solution to my "image" problem that caused this thread, hence the decent thing is to
    post it here.
    I read various other threads and stumbled across:
    PDF viewing with  apex_util.get_blob_file_src not working with 4.0
    PDF viewing with  apex_util.get_blob_file_src not working with 4.0 &# 4404695
    That thread mentioned the requirement for an "Automated Row FETCH" process as well as having
    an "Automated Row PROCESSING" process too.
    I had the latter, but didn't have the former, so throwing caution to the wind I tried adding a dummy
    Automated Row Fetch process and the damn thing worked!
    Haven't got a clue why on earth either of these are requirements on a page that is selecting data
    from the database - I don't understand where such processes are called in the big scheme of things.
    That's just me baiting some kind soul to spell out the fundamentals for this idiot... please?
    Happy to be corrected on any points.
    Regards until the next crisis...
    Mungo :-)
    P.S. How come there is no reasonable way to get the URL of a single post in a thread - I'd like to give
    reference to the single post that helped me, but all I seem to be able to get is the whole blooming thread.
    Suggestions?
    Edited by: MungoHenning on Sep 15, 2010 1:39 PM

  • Photosmart D110 All-In-One Printer - Shadow image problem

    I have been having a problem with this printer, ever since we purchased it about 2 months ago, where it will print a shadow image of text or pictures on some documets but not others. It is specific and consistent in that it will print this shadow image on some documents every time and on other documents none of the time. I have a PC and a Mac and it doesn't matter which computer I use, only which document. Sometimes it is only a part of a document, like the computer generated part of an email where it says " this person at this time on this date wrote.." but the other text will be fine. It happens on some coloring pages but not others. I spent  2 hours on the support line yesterday; it's still doing it. She had me unplug it, take off the printer software and reinstall it, update software (on my Mac)  and it did not fix it.  Any ideas on what may be causing this & how to fix it? I like the printer but am about to return it because of this problem.  The printer we had been using was an HP C4280 and did not have this problem. I'd like to keep the printer if I can fix this problem.

    I'm having the same shadow imaging problem on my Deskjet F4580, so if anyone knows how to correct it please post.. I've reinstalled/updated the driver, disabled advanced features, and deslected "Enable HP Real Life Technoliges".

  • Bad Bind Variable Problem

    Hi
    I am trying to create a trigger and facing Bad Bind Variable problem.
    Plz let me know, what's the problem in this trigger.
    CREATE OR REPLACE TRIGGER Tender_tax_update AFTER
    INSERT
    OR UPDATE
    OR DELETE OF ITEM_QTY,ITEM_RATE,TENDER_ACC_QTY ON TENDER_ENQUIRY_ITEM_D REFERENCING OLD AS OLD NEW AS NEW FOR EACH ROW
    Declare
         v_amt TENDER_VENDOR_TAX_D.TAX_AMOUNT%TYPE;
         v_tax_ty TENDER_VENDOR_TAX_D.TAX_TYPE%TYPE;
         v_tax_cd TENDER_VENDOR_TAX_D.TAX_CODE%TYPE;
         v_ven_cd TENDER_VENDOR_TAX_D.VENDOR_CODE%TYPE;     
         v_item_cd TENDER_VENDOR_TAX_D.item_cd%TYPE;     
         v_tenno TENDER_VENDOR_TAX_D.tender_enquiry_no%TYPE;
    Begin
         if inserting then
              v_tax_ty:=:new.TAX_TYPE;
              v_tax_cd:=:new.TAX_CODE;
              v_ven_cd:=:new.vendor_code;
              v_item_cd:=:new.item_cd;
              v_tenno:=:new.tender_enquiry_no;
    select TAX_AMOUNT into v_amt from TENDER_TAX_DETAILS where tender_enquiry_no=v_tenno and TAX_CODE=v_tax_cd and TAX_TYPE=v_tax_ty and item_cd=v_item_cd and vendor_code=v_ven_cd;
    update TENDER_VENDOR_TAX_D set TAX_AMOUNT=v_amt where tender_enquiry_no=v_tenno and TAX_CODE=v_tax_cd and TAX_TYPE=v_tax_ty and item_cd=v_item_cd and vendor_code=v_ven_cd;
         end if;
    End Tender_tax_update;
    Database deails are as follows:
    TENDER_VENDOR_TAX_D
    Name Null? Type
    TENDER_ENQUIRY_NO NOT NULL VARCHAR2(8)
    VENDOR_CODE NOT NULL VARCHAR2(4)
    TAX_CODE NOT NULL VARCHAR2(4)
    PERCENTAGE NUMBER(5,2)
    TAX_AMOUNT NUMBER(15,2)
    ITEM_CD NOT NULL VARCHAR2(10)
    TAX_FLAG VARCHAR2(1)
    TAX_TYPE CHAR(3)
    TENDER_TAX_DETAILS
    Name Null? Type
    TENDER_ENQUIRY_NO NOT NULL VARCHAR2(8)
    VENDOR_CODE VARCHAR2(4)
    ITEM_CD VARCHAR2(10)
    TAX_CODE NOT NULL VARCHAR2(4)
    TAX_TYPE CHAR(3)
    TAX_AMOUNT NUMBER
    Message was edited by:
    user648065

    facing Band Bind Variable problem.Doesn't the error message tell you which bind variable is the problem?

  • Persistent Image problem

    Okay, I just had the screen on this iMac replaced because of this problem with a dark line at the top of the screen. The screen has been replaced, and the dark line isn't there anymore. However, I am now having persistent image problems. This is noticeable when I use the Aurora desktop. If I have a window open (e.g. Safari) for a long enough time, and then I X out of it, I will see a shadow/ghost of it. It's most noticeable with a dark background. However, I DID change some of the settings in "Appearance," so I wonder if that might have done it. But I can't see a way to change everything back to default. Do you know if there's a way?

    Hi again - a couple of ideas:
    If you haven't printed the images or a while, it could be that you prepared them under a previous version of the Aperture raw and they've since been reprocessed, resulting in a slightly different look
    I had an occasion about 12 months ago when an update to the Epson printer drivers caused me to have to go back and change my print setups in Aperture, due to new colour interpretations.  Don't know why, but it happened... maybe your settings have changed since last printing?
    Could be that you did or didn't have the appropriate soft-proofing turned on - are you using this feature?

  • Strange short-term persistent image problem

    Hello,
    I'm well aware of the typical image persistence problem, where an image can stay "burned in" after the monitor displays the same thing for hours on end.
    I have a much shorter-term persistent image problem. Let's say I open a web-page, leave it open for 10 seconds and then open a new window in Safari (thus getting a pure white page). Well when that happens, the previous web-page is still shadowed on the new white.
    30 seconds later it has faded, but then the same thing will happen again with anything else that's displayed.
    Any ideas?
    thanks
    Loa

    Huh, now I'm really stumped. The cyan border is also present in FCE once I render, but it doesn't seem to happen for each instance when the paper image is used. Did you import the paper image as a .gif or something else? And did you add any filters to it? Did you also add any effects? The only I'm using with the paper image is the page peel and I have not tried any other effects to see if the cyan effect comes up.
    I've put a screen capture of my FCE project showing the cyan border present in the canvas as my movie is playing. Its on my idisk as FCE movie problem.tiff
    http://idisk.mac.com/gindacu-Public?view=web
    Thanks again for the help.

  • Passwords and images problem

    Firefox image problem. In Firefox 3.6.12, every time I save an image that's already displayed on my screen, I see "one active download" appear in the bottom right of Firefox's window and the same image is also listed in downloads. The problem is that Firefox doing that uses more bandwidth. How do I set Firefox so that when I save an image, instead of that image getting re-downloaded from where it's stored on the internet, it's copied from wherever Firefox has it stored to display it so Firefox doesn't use as much bandwidth? Tools/options/advanced/network/offline storage is set to 50mb.
    Firefox password problem. Tools/options/security/passwords has "remember passwords for sites" checked and there is nothing in my exceptions list. But Firefox keeps forgetting passwords, usually after restarting Firefox and or my whole system and on some sites, I don't even get asked "do you want to remember..." How do I fix this?
    I do have CCleaner and it's set to run at startup, but all the boxes for Firefox are unchecked, so it's not the cause of either problem.

    @cor-el
    OK, I'll give that extension a try and see what happens, thanx! :-)
    @venemovil
    I right click and either select "save image as" or if I want to save an image to more than one location, I select "view image" and then use ctrl+s. Both results in Firefox re-downloading the image as I described above. It happens on every site I visit.
    The password problem never happened before, but I will try disabling my extensions one at a time and see if it happens only whan a particular extension is turned on.
    This is a screenshot of the extensions I do have installed.
    http://i273.photobucket.com/albums/jj216/Moonbarker/Clipboard01.jpg
    I've also noticed that Firefox is forgetting what sites I've visited recently (I type in part of the url of sites I've visited sometimes as recently as a few hours ago and the entire url isn't in the suggested list) and I keep having to put the Fire FTP Button back in the toolbar (next to the home/stop/reload/back-forward buttons). That may be related to the pasword problem. I don't know.

  • Website images problem

    Hi there,
    I installed the latest version of Firefox. However, some websites I'm having some image problems. For example http://www.e-masifpanel.com web site with a phone number in the upper right corner of the space. In this area the way it looks on my Firefox browser line. I remember the moment some photos do not appear on other websites. Does version issue or problem, a problem with my my settings be? Thank you.

    Make sure that you haven't enabled a High Contrast theme in the Windows/Mac Accessibility settings.
    Make sure that you allow pages to choose their own colors.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    Note that these settings affect background images.
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong

  • Video image problem

    Hi...A neighbor has a iMac G5 and has developed a video/image problem. The iMac boots up and sometimes shows an ok screen for a little time, sometimes not. What emerges is an array of digital black on white graphic line images (maybe I should upload a picture), but makes the screen virtually impossible to see what you want to view, thus rendering the computer useless.Any thoughts as to what this is, seems like a hardware vs, software issues, but can't say for sure. What might it be: video card, other hardware on or attached to the logic board..and mostly could it be repaired (by self or reasonable). Any and all thoughts or experience welcome as I've been no help to my good neighbor friend on this one:)..Rick

    me 2 it's clear .. the new firm has poor quality than the original one...sadly .. my n93i now has quality like n70 help!!!!!!!!!!!!!!!!!!!!!

  • Imaging problem LR 2.7

    Has anyone seen this issue arise on images that were imported ok, then  all of a sudden Lightroom image rendering will only do this?
    The source file appears okay as this does not happen when viewed with  alternative viewer programs.    However, the exports usually (not  always) also look like this. 
    What is this imaging problem called?
    I've never had this issue before, but it's started to occur with  frequency ever since I've moved... only mystery is: I have all of the  same equipment including camera.

    folks thanks for all fo the advice, but... I think I've discovered the problem:  VISTA + External Hard Drive = Picture and file corruption
    I should have known: the problem is MICROSOFT!!!!!  For the first time in my life, I thought seriously about switching to Apple (but then I would switch to Aperture). 
    Here are the old discussions.  Given the dates on these, apparently, I must be a rare person left on Vista. 
    http://www.vistax64.com/vista-music-pictures-video/136646-image-corruption-using-external- drive-vista.html
    http://social.technet.microsoft.com/forums/en-US/itprovistadeployment/thread/6ffcb5b7-ac72 -49ab-9a89-77e730db75b2/
    So 3 external hard drives tested with the entire set of nearly 400 GB of pictures, videos and files.
    All showing varying degrees of picture corruption, and now I've discovered video corruption as well. 
    My problem is, I deleted the original internal hard drive files, so I'm left with only one 1st copy, the other two are copies of copies and worse off. 
    I'm taking the leap.... upgrading to Windows 7 tonight.  I'll let you know what happens. 

  • Macbook pro retina ghost image problem

    I have heard about the burn-in problem on macbook pro retina display especially on LG screen. After I got my macbook retina for 3 months, the ghost image problem become really really unacceptable. After 4~5mins, the image on screen will burn in obviously for quite a long time. IT IS VERY OBVIOUS!! So I drop by apple store and find a genius, he did a persistence test on my macbook. The test is under a very low brightness, and I can not even know how he was operating. After 6 minutes, he said there is no burn-in problem. He explained that, if my macbook pass the test, it means my screen is within inspection. But I can tell if this screen is good, APPLE you should take a look at your inspection and change it RIGHT NOW. Everyone of my friend who have seen the problem on my screen says it is unacceptabe, how can it be within inspection? If anyone need a photo of that, i will provide.

    MoonnooM wrote:
    I have made an applecare call appointment. I'll post the result after I make the call. Thank you.
    Good work...
    Back-up all your data.
    If they replace your MacBookPro, you can avoid a service charge for runniing the back-up for you.

  • Macbook pro retina with ghost image problem

    Can i claim my retina display that have ghost image problem?

    Hi there, I had the same problem with my Macbook Pro 15`` Retina. And here is how you can find out if you have ghost image problem. There are two retina display manufacturers for Macbook Pro Retina`s LG and Samsung. And if you are luck you will have the Samsung Retina Display on your mac. Here is how you can find the manufacturer for you Macbook.
    Go to your Applications folder and launch Terminal. Paste in the following and hit return:
    ioreg -lw0 | grep "EDID" | sed "/[^<]*</s///" | xxd -p -r | strings -6
    Look at the beginning of the second line to see which manufacturer made your display. If it starts with LP then you have an LG display. Samsung displays start with LSN.
    If your display shows LP you might have this problem for sure. So here is how you can test your screen.
    A simple test to check your Retina MacBook Pro display for image retention also reported as "ghosting"
    http://www.mitchmalone.name/retina-test/
    Run the test for 10 Min. and you will find out if you have this problem.
    And if you have it, and if you are still under waranty the Apple will replace the display with Samsung for free of charge. I hope this information helps.

  • Bad disk image on access1?

    Has anybody here had success using the Solaris 8 Device Configuration
    Assistant (boot disk) image published on access1.sun.com as S28DCA_FCS?
    I'm trying to mount it on a Solaris 8 system using lofi (VERY cool new
    feature!), and it doesn't appear to be mountable. I compared its behavior
    to that of an older boot disk on access1, for Solaris 7:
    # file S28DCA_FCS
    S28DCA_FCS: DOS executable (COM)
    # file S27DCA0899.3
    S27DCA0899.3: DOS executable (COM)
    # lofiadm
    Block Device File
    /dev/lofi/1 /tmp/S28DCA_FCS
    /dev/lofi/3 /tmp/S27DCA0899.3
    # mount -F pcfs /dev/lofi/1 /bootdisk
    mount: /dev/lofi/1 is not a DOS filesystem.
    # mount -F ufs /dev/lofi/1 /bootdisk
    mount: /dev/lofi/1 is not this fstype.
    # mount -F pcfs /dev/lofi/3 /bootdisk
    # ls /bootdisk
    append.bat ident rc.d solaris
    comment.bat makedir.bat replace.bat solaris.map
    # df -k
    Filesystem kbytes used avail capacity Mounted on
    /dev/dsk/c1t0d0s0 8300597 691242 7526350 9% /
    /proc 0 0 0 0% /proc
    fd 0 0 0 0% /dev/fd
    mnttab 0 0 0 0% /etc/mnttab
    swap 655904 4 655900 1% /var/run
    swap 660256 4356 655900 1% /tmp
    /dev/lofi/3 1423 1350 73 95% /bootdisk
    Is this just a bad disk image?
    Lusty

    Well, THAT wasn't pretty. Here's what it should have said:
    <pre>
    # file S28DCA_FCS
    S28DCA_FCS: DOS executable (COM)
    # file S27DCA0899.3
    S27DCA0899.3: DOS executable (COM)
    # lofiadm
    Block Device File
    /dev/lofi/1 /tmp/S28DCA_FCS
    /dev/lofi/3 /tmp/S27DCA0899.3
    # mount -F pcfs /dev/lofi/1 /bootdisk
    mount: /dev/lofi/1 is not a DOS filesystem.
    # mount -F ufs /dev/lofi/1 /bootdisk
    mount: /dev/lofi/1 is not this fstype.
    # mount -F pcfs /dev/lofi/3 /bootdisk
    # ls /bootdisk
    append.bat ident rc.d solaris
    comment.bat makedir.bat replace.bat solaris.map
    # df -kFilesystem kbytes used avail capacity Mounted on
    /dev/dsk/c1t0d0s0 8300597 691245 7526347 9% /
    /proc 0 0 0 0% /proc
    fd 0 0 0 0% /dev/fd
    mnttab 0 0 0 0% /etc/mnttab
    swap 655888 4 655884 1% /var/run
    swap 660240 4356 655884 1% /tmp
    /dev/lofi/3 1423 1351 72 95% /bootdisk
    </pre>

  • Error-1074396120 Not an image, problem with IMAQ Learn multiple geometric patterns

    Error-1074396120 Not an image, problem with IMAQ Learn multiple geometric patterns
    Hi!
    I've tried to modify the example of  "multiple geometric patterns matching" , and just use two patterns, but when I run the VI this error appear and I doon't know how to solve it! , the error appears in the "IMAQ Learn multiple geometric patterns" block.
    Running on:
    - labview 32 bits
    - windows 7 64 bits
    - usb camera 2.0
    Any sugestion would be helpful..... !  Regards
    Attachments:
    template_12.png ‏150 KB
    template_11.png ‏123 KB
    vision_multiple_pattern_matching.vi ‏127 KB

    thanks all for your replies, the problem was on my template images, I had to give them information about the pattern matching, and I did it with NI Vision Template Editor, within Vision utilities, and I chose template with Feature Based. 
    Thank you again and Regards!

  • My firefox is loading Bad quality images, but actully the images are perfectly alright

    My firefox is loading Bad quality images, but actully the images are perfectly alright

    In my experience, print quality settings such as dpi/ppi are hidden in your printer driver settings and not directly available through Firefox's UI. In the print dialog, if you click the Properties button, you hopefully will gain access to this setting. Obviously native web resolution (96ppi) can give disappointing results, so hopefully you can find a place to increase it.

Maybe you are looking for

  • Problem with adobe reader

    i have downloaded adobe reader to my android tablet and have purchased and downloaded two books. the books appear in my download folder but  not in adobe reader. when i try to open the books i get a blank screen with HTML Viewer on it and nothing els

  • Backups are not working.

    Today when I attempted to back up my phone and put some new music on there it did not do it how it should. I connected my phone, opened itunes, selceted my songs and pressed sync. It starts backing up everything on my phone even though there is a res

  • Problem with selection-screen of program RFEBKA00

    Hi, When i execute the program RFEBKA00, some the text appear weir, or better, some texts does not appear... Like it misses some translation or something, but i check the data elements of the fields and everything is fine... Does anybody have any ide

  • How to build project in xcode 4.2(build it but not run it)

    i just want to build the project and see if it has errors and don't want to run it yet, this was possible with xcode 3.x  

  • Error message that Flash Play 11.5 isn't the most current version

    When trying to install 11.5 flash player (I use Windows7 and Firefox), I keep getting an adobe installer message that the version of the flash player is not the most current, and I'm routed back to the flash player download page where I just download