Error when rendering! Desperately in need of help!

Just out of nowhere I´m getting this error when rendering in a ProRes project:
"Codec not found. You may be using a compression type without the corresponding hardware card"
I have done nothing with my setup and have never had problems with this before. What can I do to fix this?

I started getting this error after exporting prores 422 (and 422 HQ) files from AE and dropping them into FCP. It happened a couple of days ago, right after I updated to QT 7.6.2. i checked out the details on the QT update and the update seems to focus on prores 422 functionality. so i think your theory about this having something to do with the update is spot on.
my solution was to export out of AE using photo-jpeg. it's pretty close to identical on the visual and color correctable if not. this project has the flexibility for this type of codec switch since everything originates in AE -- you may not have that flexibility.

Similar Messages

  • Error when trying to launch iTunes! Help!

    Hi!
    I've tried to seek through the forums to find someone with the same error, but i haven't found anyone.
    Here's the problem:
    When i try to launch iTunes I get a Windows Error saying that iTunes har encountered a problem and has to quit. It's that kind of error where you can send an error-report. And when I try to restart Windows, I get the same error when I log on. Please help! I've tried to reintall and repair iTunes, but it won't help.
    iPod Mini   Windows XP Pro   Sygate Personal Firewall Pro, F-Secure Antivirus 06

    hi
    I had this same problem for ages and tried all sorts
    of things. I think the problem was Quicktime
    actually, but what eventually worked was:-
    Uninstall itunes, then reboot. Close the Quicktime
    program tray icon (lower right corner of taskbar) and
    uninstall Quicktime. Then install the standalone of
    Quicktime before installing itunes again.
    Hope this helps.
    Thanks!
    I'll try it out! Havent't thought of that.
    Will come back to say if it worked.

  • My videos stuck in workspace but runs good when exported ... need a help please

    my videos stuck in workspace but runs good when exported ... need a help please

    Hello,
    My video slows down in my workspace but runs in normal speed when exported

  • 1010 error when trying to debug, need help

    i get this error when i go to debug my site.
    TypeError: Error #1010: A term is undefined and has no properties.
         at Index_fla::MainTimeline/frame1()[Index_fla.MainTimeline::frame1:11]
    This is the action script
    // Startup.
    stop();
    mainMenu_mc.stop();
    // Event Setup.
    mainMenu_mc.backward_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.forward_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.logo_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.home_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.goals_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.statements_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.outcomes_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.resume_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.statements_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    // Event Handlers.
    function navigationClicked(Event:MouseEvent):void
         //We'll use this to store the Frame Label's name.
         var frmLabel:String = '';
         //Determine what Frame Label to use based on which
         //button was clicked.
         switch (Event.target)
              case mainMenu_mc.backward_btn :
                   frmLabel = this.getSequencedFrame(false);
                   break;
              case mainMenu_mc.forward_btn :
                   frmLabel = this.getSequencedFrame(true);
                   break;               
              case mainMenu_mc.logo_btn :
                   frmLabel = "home_frm";
                   break;
              case mainMenu_mc.home_btn :
                   frmLabel = "home_frm";
                   break;
            case mainMenu_mc.goals_btn :
                frmLabel = "goals_frm";
                break;
            case mainMenu_mc.statements_btn :
                frmLabel = "statement_frm";
                break;
            case mainMenu_mc.outcomes_btn :
                frmLabel = "outcomes_frm";
                break;
            case mainMenu_mc.resume_btn :
                frmLabel = "resume_frm";
                break;
            case mainMenu_mc.letters_btn :
                frmLabel = "letters_frm";
                break;
         //Find the frame number based on our Frame Label.
         var frmGoto:Number = this.getFrame(frmLabel);
         //Don't do anything if we are already on the requested page.
         if (currentFrame != frmGoto)
              //Get and remember the Home page's frame number.
              var frmHome:Number = this.getFrame("home_frm");
              //If our requested page is the Home page, the flying menu
              //needs to go home.
              if(frmGoto == frmHome)
                   mainMenu_mc.goHome();
              //Else, if we are on the Home page and are leaving, then
              //leave home.
              else if(currentFrame == frmHome)
                   mainMenu_mc.leaveHome();
              //Go to the requested page.
             gotoAndPlay(frmGoto);
    // Helper Functions.
    function getFrame(frameName:String):Number
         var frame:Number = 1;
         //Loop through all Frame Labels to find our requested frame.
         for (var i = 0; i < currentLabels.length; i++)
              if (currentLabels[i].name == frameName)
                   frame = currentLabels[i].frame;
                   break;
         return frame;
    function getFrameLabel(frame:Number):String
         var frmLabel:String = '';
         //Loop through all Frame Labels to find the requested Frame Label.
         for (var i = 0; i < currentLabels.length; i++)
              if (currentLabels[i].frame == frame)
                   frmLabel = currentLabels[i].name;
                   break;
         return frmLabel;
    function getSequencedFrame(forward:Boolean):String
         //Used to remember the Frame Label of our page.
         var frmSequence:String = '';
         //If we're looking for the next page in sequence...
         if(forward)
              //If our current page is that last page...
              if(currentFrame == this.getFrame("letters_frm"))
                   //...then, we need to go Home.
                   frmSequence = "home_frm";
              else          
                   //...else, we just need to go to the next frame.
                   frmSequence = this.getFrameLabel((currentFrame + 1));
         //...else, we're looking for the previous page in sequence.
         else
              //If we're on the first page (remember, we skipped our Start page)...
              if(currentFrame == this.getFrame("home_frm") ||
                 currentFrame == this.getFrame("start_frm"))
                   //...then, we need to go to the last page.
                   frmSequence = "letters_frm";
              else          
                   //...else, we just need to go to the the previous frame.
                   frmSequence = this.getFrameLabel((currentFrame - 1));
         return frmSequence;
    Can any oen tell me why i am getting this error? using flash cs4 in ac3.

    you're trying to reference something that doesn't exist when your code executes.  if line 11, is:
    mainMenu_mc.logo_btn.addEventListener(...
    then
    mainMenu_mc.logo_btn
    doesn't exist.

  • Lightroom encountered an error when reading from its preview cache. helping a friend..

    Im not a lightroom user. even though I have some version 4. I use acdsee pro 6. but my friend has the 5.6 CC version but has a language issue so im trying to help me. basically will guide him over the phone.
    he was editing a wedding, the computer crashed. he rebooted, lightroom came with the preview cache error. he rebooted again..same issue. he did a repair but to no avail. he tried installing an older version in parralel but no success.
    what exactly does he need to do. im not a light room user. I use PS CS6 but not LR.
    anybody can help to help him. I did read some posts and it noted about thumbnail previews and removing or erasing/renaming
    1- where is this file located please?
    2-are there many of these ? and how do I know which is the one he needs to choose?
    thank you for your help.

    See answer at Re: "Lightroom encountered and error when reading from its preview cache and needs to quit"

  • Desperately in need of help!! apache webserver question!

    Guys,
    I need ur help!! I am on the verge of breakdown!! what the funny part is i have done the tough part fairly easily but the easy part is annoying me. here is my problem:
    I have setup virtualhosts defnition for my webserver. post configuration i have now Apache 2.0 + tomcat 5.5 and mod_jk running successfully on my machine.
    The files that i have modified are
    httpd.conf
    workers.properties and
    server.xml
    what i want is:
    when i give url: as http://www.mydomain.com
    this has to bring up the tomcat web application which can otherwise be invoked by url: http://www.mydomain.com:8080/myapplication
    what i am able to achieve is i can load the application via apache withou having to specify the port number like this:
    http://www.mydomain.com/myapplication
    but i want 'myapplication' to be automatically loaded when given just the servername itself!!
    please this must be a simple thing..help me!
    i have modified jkMount /myapplication/*.jsp
    I have to get this working by today evening i am sick and tired of this...
    -Sri

    httpd.conf
    <VirtualHost xxx.xx.xx.xx:8080>
    ServerName xyz.domain.edu
    ServerAlias xyz.domain.edu* www.domain.org domain.org
    DocumentRoot /usr/tomcat/apache-tomcat-5.5.15/webapps
    ServerPath /neuroMor
    ErrorLog logs/xyz.domain.edu-error_log
    CustomLog logs/xyz.domain.edu-access_log common
    </VirtualHost>
    <VirtualHost xxx.xx.xx.xx:8080>
    ServerName www.domain.org
    ServerPath /neuroMor
    DocumentRoot /usr/tomcat/apache-tomcat-5.5.15/webapps
    ErrorLog logs/www.domain.org-error_log
    CustomLog logs/www.domain.org-access_log common
    </VirtualHost>
    #To be added at the end of your httpd.conf tomcat auto-configure
    Include /usr/tomcat/apache-tomcat-5.5.15/conf/auto/mod_jk.conf
    # Load mod_jk module
    LoadModule jk_module libexec/mod_jk.so
    # Where to find workers.properties
    JkWorkersFile /usr/local/apache/workers.properties
    # Where to put jk logs
    JkLogFile /var/log/httpd/mod_jk.log
    # Set the jk log level [debug/error/info]
    JkLogLevel info
    # Select the log format
    JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
    # JkOptions indicate to send SSL KEY SIZE,
    JkOptions ForwardKeySize ForwardURICompat ForwardDirectories
    # JkRequestLogFormat set the request format
    JkRequestLogFormat "%w %V %T"
    # Static files in the neuroMor webapp are served by apache
    Alias /neuroMor /usr/tomcat/apache-tomcat-5.5.15/webapps/neuroMor
    # The following line prohibits users from directly access WEB-INF
    <Location "/neuroMor/WEB-INF/">
    AllowOverride None
    deny from all
    </Location>
    #JkAutoAlias /usr/tomcat/apache-tomcat-5.5.15/webapps
    # Send servlet for context /examples to worker named worker1
    JkMount /index.jsp ajp13
    # Send JSPs for conext /examples to worker named worker1
    JkMount /* ajp13
    I want to show neuroMor/index.jsp page when i give the url for
    http://xyz.domain.edu without specifying any relative path name.
    workers.properties
    workers.tomcat_home=$CATALINA_HOME
    workers.java_home=$JAVA_HOME
    ps=/
    worker.list=ajp13
    worker.ajp13.port=8009
    worker.ajp13.host=localhost
    worker.ajp13.type=ajp13
    worker.ajp13.lbfactor=1
    worker.loadbalancer.type=lb
    worker.loadbalancer.balanced_workers=ajp13
    worker.inprocess.type=jni
    worker.inprocess.class_path=$(workers.tomcat_home)$(ps)server$(ps)lib
    worker.inprocess.cmd_line=start
    worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)lib$(ps)
    i386$(ps)server$(ps)libjvm.so
    worker.inprocess.stdout=$(workers.tomcat_home)$(ps)logs$(ps)inprocess.stdout
    worker.inprocess.stderr=$(workers.tomcat_home)$(ps)logs$(ps)inprocess.stderr
    Everything is working just fine..all i want is to show my default page as my application index.jsp page.
    -Many thanks for any kind of help
    Sri

  • ACL-list syntax error in PIX after upgrade, need urgent help!

    Hello everyone
    We have a setup including Cisco ACS + a VPN 3005 Concentrator and a PIX 515E (7.2.4)
    We upgraded the PIX version from 7.0 to 7.2.4 and suddenly our downloadable access-list was getting refused when users authenticated against the ACS.
    When debuging radius in the PIX we found that entering this line in the downloadable access-list give error and stop the users of getting the ACL.
    "deny ip any 192.168.0.0 0.0.255.255"
    PIX refused to process their auth request when encountering this line.
    Fine we said, we changed the ACL syntax to this : deny ip any 192.168.0.0 255.255.0.0
    This made the PIX process the ACL.
    We were happy for awhile until VPN users started to complain.
    It seems that the VPN 3005 cant deal with the syntax we entered in the PIX!
    The VPN 3005 doesnt seem to be able to handle the acl line "deny ip any 192.168.0.0 255.255.0.0" !
    It can only handle "deny ip any 192.168.0.0 0.0.255.255" !
    Which the PIX cant handle..
    I'm a loss at what to do here..
    We got VPN users who cant surf now with these ACL problems.
    What can I do? Anyone else encountered this?
    We upgraded the VPN 3005 to the lastest SW version
    Really need some help here guys!
    Thanks

    I don't think Cisco ever changed anything on the PIX. It uses subnet masks from day one AFAIK and VPN Conc uses wildcard masks like IOS. You can use the acl-netmask-convert command on the ASA to fix this issue. This way you define a willdcard ACL on the ACS/AAA server and then use this command on the ASA to use the same downloadable ACL for both devices (PIX,VPNC).
    http://www.cisco.com/en/US/docs/security/asa/asa81/command/ref/a2.html#wp1622944
    Please Rate if helpful.
    Regards
    Farrukh

  • File Not Found Error When Rendering Motion Menu

    Hi there.
    I'm attempting to render a motion menu and keep getting the error "file not found". All of the necessary files are available and no specific missing file is mentioned.
    The background video is a .m2v, and there is a .wav audio file too. They are 42 seconds long.
    I tried other Encore projects and 2 others are doing the same thing, or coming up with a 'General Error'.
    I have cleaned the Database in the Media Cache. I have uninstalled and reinstalled Encore. There are no updates available.
    Any suggestions?
    Thanks,
    David

    Yeah, it would have taken me quite a while to redo the menus completely!  So I was very thankful for the save to menu template option.
    When I (not recently, thank goodness!) have a project I suspect of corruption, I create a new project, and just "import as menu" from the old menu subdirectory. The method you used deletes the  menus, so exporting the menus helps.
    Mac OS 10.6.8
    That's Snow Leopard, right?
    Actually, I'm not really sure about Encore terminology (this was my first project), but the only motion I have in my menus is the line that appears under the button text when that button is highlighted.  At one point I had the photo buttons (for videos) set to animate, but I removed that option.
    A highlight is just a highlight, not "motion." Animated buttons, when rendered as the menu, are actually a video background, so that was a motion menu.
    All 30 slideshows are actually individual video timelines.  They were created and exported from Photosho Lightroom 3.
    In Encore terminology, those are just videos - many Encore users choose to do slideshows as videos.
    I had originally tried creating each one as a slideshow from within Encore, but I was DEEPLY dismayed by how slow Encore became, evetually locking up at least once per hour.  It was ridiculous, even taking into account the fact that it is not a 64-bit program.  I planned to leave 2 of the songs as Encore slideshows (Lightroom can't do Pan/Zoom), but in the end I had to replace them with mp4s because the slideshows just would not play.  Really, it was about 11 wasted days plus 4 productive days to get me through the project!
    Encore has a variety of problems with slideshows, but I suspect from your description that you were using very large images. Scaling them down a bit can improve performance.

  • Error when rendering for Flash

    I have had two projects crash when rendering an Encore CS3 project.
    The info in the data collection is:
    AppName: adobe encore.exe AppVer: 3.0.1.8 ModName: dvacore.dll
    ModVer: 2.0.0.60016 Offset: 0008bdb3
    Any clues?

    OK... I use Premiere Pro and then encode files with an application called Cinema Craft for m2v files. These are loaded into Encore and authored for dvd, tested and all work fine.
    With two projects, encore crashes with the error I mentioned in my first post. Others have gone through fine but are consistent with how I always create projects.
    I do work with a Matrox RXT.100 board with PP2.0 and have seen posts that PP CS# does not like rxt.100. This should not have any bearing on projects that are exported into m2v or wav and then imported into Encore CS3.
    Is it best NOT to export into an mgp format and let Encore transcode video?
    If more info is needed I would be glad to supply.

  • Error when calling SOAP Runtime functions - Please help!

    Hi,
    Very new to SAP. I just installed SAPNW7.0ABAPTrialSP12 (sandbox server, with default options) and setup the
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/db/7c623cf568896be10000000a11405a/content.htm">Flight Data</a>.
    I wanted to invoke some of the Flight Data functions through SOAP. So I invoked the following URL:
    http://localhost:8000/sap/bc/srt/rfc/sap/BAPI_FLIGHT_GETDETAIL?sap-client=000&wsdl=1.1
    I get the following error:
      The following error text was processed in the system NSP : Error when calling SOAP Runtime functions
    The error occurred on the application server hs_NSP_00 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
          Method: HANDLE_REQUEST of program CL_SOAP_TRANSPORT_EXTENSN_ROOTCP
          Method: HANDLE_REQUEST of program CL_SOAP_HTTP_EXTENSION========CP
          Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_SOAP_HTTP_EXTENSION========CP
          Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
          Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
          Module: %_HTTP_START of program SAPMHTTP
    FROM Runtime Error Log:
    Runtime Errors                     UNCAUGHT_EXCEPTION                                                          
    Exception                          CX_SOAP_CORE
           Termination occurred in the ABAP program "CL_SOAP_TRANSPORT_EXTENSN_ROOTCP" -                
               in "HANDLE_REQUEST".                                                                               
    The main program was "SAPMHTTP ".                                                                               
    In the source code you have the termination point in line 37                                 
              of the (Include) program "CL_SOAP_TRANSPORT_EXTENSN_ROOTCM004".
    Does anyone have any ideas on what is going on? Thanks in advance.

    Hi,
    Have a look at this blog from Michal Krawczyk to find a solution:
    The specified item was not found.
    Hope this helps,
    Grzegorz

  • Error when testing java -jar whitelist.jar -help

    I found an error when executing this commande
    C:\oracle-javacloud-sdk\lib>java -jar whitelist.jar -help
    Exception in thread "main" java.lang.UnsupportedClassVersionError: oracle/cloud/
    scanning/cli/ScannerMain (Unsupported major.minor version 50.0)
            at java.lang.ClassLoader.defineClass0(Native Method)
            at java.lang.ClassLoader.defineClass(Unknown Source)
            at java.security.SecureClassLoader.defineClass(Unknown Source)
            at java.net.URLClassLoader.defineClass(Unknown Source)
            at java.net.URLClassLoader.access$100(Unknown Source)
            at java.net.URLClassLoader$1.run(Unknown Source)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    what can be the origine of this error
    Thanks

    Try using JDK 1.7 - (version 51.0) as I have no problem running with 1.7.0_21
    /michael

  • Error when syncing wondering if anyone could help

    alright well my problem I have been having lately is that i cant get all my songs on my ipod anymore i currently have a 5gen ipod vid 30gig and whenever i try to sync i get this message
    "Attempting to copy to the disk "MY IPO" failed. An unknown error occured (-69)."
    i have tried the restore function on itunes but that dont fix it, but recently my computer had a virus and i had to wipe and reinstall my OS and at the same time i got this virus my ipod was plugged in and syncing.
    just wondering if anyone could help me out and ty in advance incase i forget to thank anyone later.

    It's probably best to check on the possibilities from the following document first:
    iTunes displays a -69 error when syncing iPod

  • Error while executing the Report( Need your help gurus) !!!

    Hi,
    Today morning when i was checking the report for monthly data i,e from 1sept to 28th sept.
    I got this below error msg. Can you pls guide me why its throwing an error.
    <b>Error      SQL Error: 1555
    Error      Error when generating the SQL statement
    Error      Error reading the data of InfoProvider POS_IS1
    Cancel      System error in program SAPLRRK0 and form RSRDR;SRRK0F30-01-</b>
    Points Assured.
    Urs,
    RK.

    hi,
    There is some time limit set for the request to run when you run a program in the foreground or in the background. If the time limit exceeds this will occur, run the program again then this might not happen.
    This might be related to table space issue, or roll area or memory. Show the short dump (ST22) to your Basis person and tell me to adjust/increase the respective tablespace .
    Regards
    Pankaj

  • Error when retrieving owner in universe, Pls help.

    Hi Expert,
    i'm getting this error when i was trying to make an object in universe.
    Although, i already test the connection CMS and it's responding.
    Exception: DBD, [MySQL][ODBC 3.51 Driver][mysqld-5.0.45-community-nt]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"city_id" From "city" Table__1' at line 1State: 23000.
    I'm using BO Edge 3.1 and MySQL 5.
    How to solve it?
    Thanks.
    Regards,
    Y Permana.

    Yes, i did but the error still happening when i'm using MySQL database.
    But the error didn't happen when i tried it in MsSQL database.
    Any advise?
    Thanks.
    Regards,
    Y Permana.

  • Encounter "GENERAL ERROR" when rendering

    What makes general error when try render certain section in the timeline and how to over come it or prevent it ?

    It can be any section. In fact it occurred in my original project. In order not to spoil my original project, I started copying section by section and render it bit by bit. And I found out it can happen to any section. I discovered that there are certain parts when I add transition and render it, then the message "general error" will show. So I cannot put any transition on that part. And I have to undo it. As far as my scratch disk, I am using external hard disc 1 tb, but left only 82 gb.
    Thks

Maybe you are looking for