Last frame twice - what's wrong?

Hi, I have a serious issue with Quicktime atm. I have a loopable animation, but the last frame of the quicktime (tried codecs Animation codec, photo jpg, ProRes,...) is always twice, which makes the loop stutter. I tried exporting an image sequence, opened it up in Quicktime. Tried it in After Effects and in Motion, where I originally created it. Exporting directly as mov out of motion doesnt work either. And the double frame is neither in the original comp nor in the image sequence.
Please, help me. What am I doing wrong?

no one experiencing the same issue? Strange that I have it on 2 machines then (all the machines I have to test here). Normally I am used that Quicktime is very correct in stuff like that. I use the latest Quicktime version on Leopard.
Could someone please have a look as well.
Is this a bug?

Similar Messages

  • I am using iphone5 and when sending sms within 160 characters i am getting 2 sms counts deduction & i hear the message send sound twice. what is wrong here. can some one please help me here???

    i am using iphone5 and when sending sms within 160 characters i am getting 2 sms counts deduction & i hear the message send sound twice. what is wrong here. can some one please help me here???
    APPLE need to do something here!!!!!!1

    Hi...
    Thanks for your repaly .
    and i am not bale to post a question in developer forum i tried hard but i didnt get .Can you plz explain me how to post a question in developer forum this is very helpfull for me.Because i never did this thing.

  • When i use the back arrow I have to click twice, what is wrong

    I dont like the new toolbar any way to go back to the old one.
    When I click the back arrow I have to click it twice , what is wrong

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    * [[Troubleshooting extensions and themes]]

  • Last iTunes update - what went wrong?

    My iPod was running smoothly until I installed the last software updater. Afterwards, iTunes would freeze when I plugged in my iPod and the computer would not recognize it. I followed all of the R's - short of restore - and that didn't work. Finally, I took a deep breath and restored the device, erasing everything.
    I reinstalled the software on the iPod and things seemed to work. Except that when I tried to update/synch the iPod with iTunes, I could only do it in 200-300 song chunks. Fine, so it took a week or so to get it all back. Then, after 1 day, it starts freezing again and will not go out of "Do Not Disconnect" mode, and I could not disconnect using the "safely remove hardware" feature. I committed what appears to be the cardinal sin and disconnected the device while it said not to do so. Now I have an iPod that only shows the sad face and the link to iPod support.
    I visited the store in SoHo and was told to make an appointment for a repair, but the technician said the disc may be corrupt. Doesn't sound good, especially after reading some posts here about restored iPods becoming unusable.
    Has anyone that has encountered the problem had any luck or am I looking at a dead device? I suppose it wouldn't hurt to try the original CD route. If I do that, then presumably I would not update iTunes, correct (even though iTunes on the computer has been updated)?
    Confused, tired of dealing with this and missed my iPod dearly during a transit strike that increased my commuting time by 400%.
    Success stories sought.

    Unfortunately, I still get the sad iPod and a "quarter battery" symbol when I dock it.
    sorry Gordon, i saw the "do not disconnect" but missed the "sad Apple" in your original post.
    iPod does not appear in iTunes or on the desktop, an exclamation point or sad iPod icon appears onscreen
    let's try the restore one more time. let's try it with antivirus and antispyware switched off this time. (tracking a strange cluster of cases involving interference by those packages, and we sometimes get some joy when doing this.)
    love, b

  • For the last time. What's wrong in these code ? please let your opnion.

    I can'nt get the data from the list in <c:forEach> tag, are you able to see the possible error?though the jsp page is returned, it is all in blank.
    the codes are these:
    -my conecction and where i get my list
    package teste;
    public class Data {
        Connection con;
        Detalhes detalhes;
        int codigo;
        ArrayList  list;
        public Data()throws Exception {       
            try {
                Class.forName("org.gjt.mm.mysql.Driver");
                con = DriverManager.getConnection("jdbc:mysql://127.0.0.1/Loja?user=root&password=131283");            
            } catch (Exception ex) {
                throw new Exception(" Database not found!!" +
                    ex.getMessage());
        public void remove() {
            try {
                con.close();
            } catch (SQLException ex) {
                System.out.println(ex.getMessage());
        public void setCodigo(int codigo){
            this.codigo = codigo;
        public Detalhes getDetalhes(){
            try {
                String selectStatement = "select * from produto where codigo="+codigo;
                PreparedStatement prepStmt = con.prepareStatement(selectStatement);
                ResultSet rs = prepStmt.executeQuery();
                while(rs.next())
                     detalhes = new Detalhes(rs.getString(1), rs.getString(2), rs.getDouble(3), rs.getInt(4));          
                prepStmt.close();
            }catch(Exception e){
           return detalhes;
        public ArrayList getList(){
            try {
                list = new ArrayList();
                String selectStatement = "select * from produto";
                PreparedStatement prepStmt = con.prepareStatement(selectStatement);
                ResultSet rs = prepStmt.executeQuery();
                while(rs.next()){
                     detalhes = new Detalhes(rs.getString(1), rs.getString(2), rs.getDouble(3), rs.getInt(4));          
                     list.add(detalhes);
                prepStmt.close();
                Collections.sort(list);
            }catch(Exception e){
                System.out.println(e.getMessage());
            return list;
    }    - the object where i store and show the data through the methods
    package teste;
    public class Detalhes {
        private String titulo;
        private String autor;
        private Double preco;
        private int codigo;
        public Detalhes(String titulo, String autor, Double preco, int codigo) {
            this.titulo = titulo;
            this.autor = autor;
            this.preco = preco;
            this.codigo = codigo;       
        public String getTitulo(){
            return titulo;
        public String getAutor(){
            return autor;
        public Double getPreco(){
            return preco;
        public int getCodigo(){
            return codigo;
    }-my inicial context class
    package teste;
    import javax.servlet.*;
    public final class ContextPage implements ServletContextListener {
        private ServletContext context = null;
        NewClass bookDB;
        public void contextInitialized(ServletContextEvent event) {
            context = event.getServletContext();
            try {
                bookDB = new NewClass();
                context.setAttribute("bookDB", bookDB);
            } catch (Exception ex) {
                System.out.println("Couldn't create bookstore database bean: " +
                    ex.getMessage());
        public void contextDestroyed(ServletContextEvent event) {
            context = event.getServletContext();
            NewClass dados = (NewClass) context.getAttribute("bookDB");
            if (dados != null) {
                dados.remove();
            context.removeAttribute("bookDB");              
    }- my jsp page
    <p><b><h1>Resultado:</h1></b></p><br>
    <jsp:useBean id="dataSource" class="teste.Data" scope="page" >
           <jsp:setProperty name="dataSource" property="codigo" value="${param.theCode}"/>          
    </jsp:useBean>
    <c:forEach var="book" items="${dataSource.list}">
        <p><b><h1><font color="red">${book.titulo}<h1></b></p>        
        <p><b><h1><font color="red">${book.autor}<h1></b></p>        
        <p><b><h1><font color="red">${book.preco}<h1></b></p>        
        <p><b><h1><font color="red">${book.codigo}<h1></b></p>        
    </c:forEach>
    <c:out value=${bookList}/>

    First of all: Don't try to force a response by using a subject "For the last time ..."
    Independent of your original problem
    There are a lot of things which are not correct in your code.
    // i would never use the user root to access a database :-(
    con = DriverManager.getConnection("jdbc:mysql://127.0.0.1/Loja?user=root&password=131283");
    public Detalhes getDetalhes(){
            PreparedStatement prepStmt = null;
            ResultSet rs = null;
            try {
                // use place holders when working with prepared statements
                //  String selectStatement = "select * from produto where codigo="+codigo;
                 String selectStatement = "select * from produto where codigo= ?" ;
                PreparedStatement prepStmt = con.prepareStatement(selectStatement);
                prepStmt.setInt(1,codio);
                rs = prepStmt.executeQuery();
                while(rs.next())
                     // use colomn names rather than indices
                     detalhes = new Detalhes(rs.getString(1), rs.getString(2), rs.getDouble(3), rs.getInt(4));
                rs.close();
                rs = null;
                prepStmt.close();
                prepStmt = null;
            // don't catch Exception
            }catch(SQLException sqle){
                // try and forget - is allways very useful
                Logger.getLogger(this.class.getName()).log(Level.SERVE, sqle.getMessage(), sqle);
            } finally {
               // close prepared statements and result sets within finally blocks
               if (rs != null) {
                  try {
                     rs.close();
                  } catch (SqlException sqle) {
                     Logger.getLogger(this.class.getName()).log(Level.FINEST , sqle.getMessage(), sqle) ;
               if (prepStmt != null) {
                  try {
                       prepStmt.close();
                  } catch (SQLException sqle) {
                      Logger.getLogger(this.class.getName()).log(Level.FINEST , sqle.getMessage(), sqle) ;
           return detalhes;
    public final class ContextPage implements ServletContextListener {
        // don't use a member field here the context is passed within the event.
        private ServletContext context = null;
        // makes no sense to save it as member field.
        // what's NewClass ?
        NewClass bookDB;
        public void contextInitialized(ServletContextEvent event) {
            context = event.getServletContext();
            try {
                bookDB = new NewClass();
                context.setAttribute("bookDB", bookDB);
            } catch (Exception ex) {
                System.out.println("Couldn't create bookstore database bean: " +
                    ex.getMessage());
        public void contextDestroyed(ServletContextEvent event) {
            context = event.getServletContext();
            NewClass dados = (NewClass) context.getAttribute("bookDB");
            if (dados != null) {
                dados.remove();
            context.removeAttribute("bookDB");              
    <%-- I don't see where a bean with id dataSource and scope page is set
             if the bean does not exist a new bean will be created
             nobody ever calls the remove method of your Data bean
             what's param.theCode ?
    --%>
    <jsp:useBean id="dataSource" class="teste.Data" scope="page" >
           <jsp:setProperty name="dataSource" property="codigo"
    value="${param.theCode}"/>          
    </jsp:useBean>
    }So now you've got a lot of work.
    If you have fixed all the problems I've told you and you have still problems you can come
    back and ask additional questions.
    andi

  • What's wrong with a simple login.jspx?

    Hello,
    I wrote a simple login.jspx page by following the indications at http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/adding_security.htm#BABDEICH
    Now, the page works with Firefox 5, but does not with IE 7. When under IE 7, the page keeps reloading giving errors about *"AdfBootStrap undefined*" or *"AdfLogger undefined".*
    What is wrong? Please note that I have already read all the threads on the forum about this issue, without actually solving my problem (I have not really seen any useful solutions there to be honest).
    Jdeveloper is 11.1.1.5.0, only adf authentication is enabled.
    The error messages are like the following ones:
    http://forums.oracle.com/forums/thread.jspa?threadID=952977&tstart=29
    thanks.
    Edited by: user10047839 on 27-giu-2011 8.07
    Changing from jspx to jsp does not solve the problem.

    Hello codeplay,
    in the source code of the page I have the following similar to your line:
    <script type="text/javascript" src="/Myapp/afr/partition/ie/default/opt/boot-11.1.1.5.0-1095.js"></script>
    No lines with SHERMAN inside.
    I could not open "/Myapp/afr/partition/ie/default/opt/boot-11.1.1.5.0-1095.js" or
    "afr/partition/ie/default/opt/boot-11.1.1.5.0-1095.js". Page not found
    Why does it happen with login page only?
    In firefox, as opposite to ie, where the page is rendered a little better (not as good as it should be though, due to these problems), I can login and be redirected to the secured main page, which is another .jsp, more complex than the simple login page, and there I have no problems at all.
    I noticed that the badly rendered page has a link pointing to the generated html below. NOTE that JavaScript IS ENABLED in my IE despite what this html says at the end. I checked this twice:
    WHAT IS WRONG??????????
    <html lang="en-EN"><head><script>
    ** Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
    * This is the loopback script to process the url before the real page loads. It introduces
    * a separate round trip. During this first roundtrip, we currently do two things:
    * - check the url hash portion, this is for the PPR Navigation.
    * - do the new window detection
    * the above two are both controled by parameters in web.xml
    * Since it's very lightweight, so the network latency is the only impact.
    * here are the list of will-pass-in parameters (these will replace the param in this whole
    * pattern:
    * viewIdLength view Id length (characters),
    * loopbackIdParam loopback Id param name,
    * loopbackId loopback Id,
    * loopbackIdParamMatchExpr loopback Id match expression,
    * windowModeIdParam window mode param name,
    * windowModeParamMatchExpr window mode match expression,
    * clientWindowIdParam client window Id param name,
    * clientWindowIdParamMatchExpr client window Id match expression,
    * windowId window Id,
    * initPageLaunch initPageLaunch,
    * enableNewWindowDetect whether we want to enable new window detection
    * jsessionId session Id that needs to be appended to the redirect URL
    * enablePPRNav whether we want to enable PPR Navigation
    var id = null;
    var query = null;
    var href = document.location.href;
    var hashIndex = href.indexOf("#");
    var hash = null;
    /* process the hash part of the url, split the url */
    if (hashIndex > 0)
    hash = href.substring(hashIndex + 1);
    /* only analyze hash when pprNav is on (bug 8832771) */
    if (false && hash && hash.length > 0)
    hash = decodeURIComponent(hash);
    if (hash.charAt(0) == "@")
    query = hash.substring(1);
    else
    var state = hash.split("@");
    id = state[0];
    query = state[1];
    href = href.substring(0, hashIndex);
    /* process the query part */
    var queryIndex = href.indexOf("?");
    if (queryIndex > 0)
    /* only when pprNav is on, we take in the query from the hash portion */
    query = (query || (id && id.length>0))? query: href.substring(queryIndex);
    href = href.substring(0, queryIndex);
    var jsessionIndex = href.indexOf(';');
    if (jsessionIndex > 0)
    href = href.substring(0, jsessionIndex);
    /* we will replace the viewId only when pprNav is turned on (bug 8832771) */
    if (false)
    if (id != null && id.length > 0)
    href = href.substring(0, href.length - 10) + id;
    var isSet = false;
    if (query == null || query.length == 0)
    query = "?";
    else if (query.indexOf("_afrLoop=") >= 0)
    isSet = true;
    query = query.replace(/_afrLoop=[^&]*/, "_afrLoop=12570889997779");
    else
    query += "&";
    if (!isSet)
    query = query += "_afrLoop=12570889997779";
    /* below is the new window detection logic */
    var initWindowName = "_afr_init_"; // temporary window name set to a new window
    var windowName = window.name;
    // if the window name is "_afr_init_", treat it as redirect case of a new window
    if ((true) && (!windowName || windowName==initWindowName ||
    windowName!="1bvr27bkx4_1"))
    /* append the _afrWindowMode param */
    var windowMode;
    if (false)
    /* this is the initial page launch case,
    also this could be that we couldn't detect the real windowId from the server side */
    windowMode=0;
    else if ((href.indexOf("/__ADFvDlg__") > 0) || (query.indexOf("__ADFvDlg__") >= 0))
    /* this is the dialog case */
    windowMode=1;
    else
    /* this is the ctrl-N case */
    windowMode=2;
    if (query.indexOf("_afrWindowMode=") >= 0)
    query = query.replace(/_afrWindowMode=[^&]*/, "_afrWindowMode="+windowMode);
    else
    query = query += "&_afrWindowMode="+windowMode;
    /* append the _afrWindowId param */
    var clientWindowId;
    /* in case we couldn't detect the windowId from the server side */
    if (!windowName || windowName == initWindowName)
    clientWindowId = "null";
    // set window name to an initial name so we can figure out whether a page is loaded from
    // cache when doing Ctrl+N with IE
    window.name = initWindowName;
    else
    clientWindowId = windowName;
    if (query.indexOf("_afrWindowId=") >= 0)
    query = query.replace(/_afrWindowId=\w*/, "_afrWindowId="+clientWindowId);
    else
    query = query += "&_afrWindowId="+clientWindowId;
    var sess = "";
    if (sess.length > 0)
    href += sess;
    /* if pprNav is on, then the hash portion should have already been processed */
    if ((false) || (hash == null))
    document.location.replace(href + query);
    else
    document.location.replace(href + query + "#" + hash);
    </script><noscript>JavaScript is not enabled in your browser.</noscript></head></html>

  • FCP audio snap sound in last frame

    Simple problem but I don't know the solution.
    On the last frame of what I'm currently rendering there's a audible snapping sound. In other words the video lets you know it's done by making this awful sound. I made sure the output of the clip is even half a second past any audio regions in Final Cut but the snap is still present. So it has something to do with the rendering itself. Can anyone shed light on what's going on and how I could resolve it?
    Thanks for any help

    David,
    I'm not sure what you mean by "sequence format" because i'm unfamiliar with a lot of the terminology.
    The sequence settings I have is:
    Frame size: 1440 x 1080 HD (1440x1080) (16:9)
    Pixel Aspect Ratio: HD (1440x1080)
    Field Dominance: Upper (Odd)
    Editing Timebase: 29.97
    Quicktime Video Settings - Compressor: HDV 1080i60
    The original footage is in different formats. Frame sizes vary from 450x360 to 1280x720. Compressor is Apple Intermediate and H.264 depending on the video. Audio format is 16, 24, nd 32-bit format.
    The snap is the kind of sound you hear when an sound wave is truncated when it's in the crest or trough part of the wave. But the thing is there's no audio where I have my footage ending. I made sure to end the clip a second after all audio and visual regions ended. So the snap is not an audio waveform. Regardless of where I end the clip the snap still happens at the very last frame.
    Message was edited by: Bruce Nitro

  • Chinese Word List Update has been updated on July 29, 2013 from version 1.7 to version 1.0. What go wrong?

    Yesterday, July 29, 2013, Appfresh app show that Apple has released one more time Chinese Word List Update. the size is 143 KB. But this time, it show itself as version 1.0!
    Last update to this Chinese Word List Update is version 1.7 last month. What go wrong? Why apple update Chinese Word List Update from version 1.7 released last month back to version 1.0 on July 29, 2013?
    Any friend here can help clarify what happen with Apple.
    And this update annoy me many times because there is no way I can control it.
    Help please

    And one more time, Chinese Word List Update has been released on September 6, 2013. !t is version 1.9. Don't know when it will come to my Mac r ill it will ever update.
    Any comment and help please

  • In the last few days, I've encountered a problem with scrolling with my up & down keys. The up & down keys seem to, now function as Home & End keys. MyPage Up & Page Down keys seem to do nothing. What is wrong?

    In the last few days, I've encountered a problem with scrolling with my up & down keys. The up & down keys seem to, now function as Home & End keys. MyPage Up & Page Down keys seem to do nothing. What is wrong?

    Hit the '''F7''' key, you probably have Caret browsing turned on.
    http://kb.mozillazine.org/Accessibility.browsewithcaret

  • I've installed itunes twice. It worked the first time but after I restarted my computer it kept giving me this message: Itunes was not correctly installed. Please reinstall itunes. Error 7 (Windows error 127). What's wrong?

    I've installed itunes twice. It worked the first time but after I restarted my computer it kept giving me this message: Itunes was not correctly installed. Please reinstall itunes. Error 7 (Windows error 127). What's wrong?

    See the second box in Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Film won't render. Error is like: error in frame 3490. How do I find out what is wrong? How can i find the frame numbers?

    Hello
    Who can help me? I made a movie in Final Cut. Not a special one, some text and that's all. With scenes from mu Sony camera, I imported. When i want to share the movie (to facebook, youtube, or masterfile), it won't work. It loads upto 57% or so and that it quits, and gives error code:
    the operation could not be completed because an error occurred when creating frame 3490 (error -1).
    And now? I can't find framenumbers? How can i find out what's wrong. I tried everything. The film plays well in playback. I just can't make a filmfile.
    Xandra Storm

    Like Tom said, you can locate the offending frame by switching in Preferences->General the Time Display to "Frames" (that is how it looks in 10.1; I believe that in older versions the same preference might be in Edit or Playback preferences, I can't recall exactly).
    When this error occurs, it can usually be solved by deleting render files, or by replacing the clip where the problematic frame happened.

  • Ever since I got the new update 5.1 my iPod's been dying faster. It used to last for at least 3 hours, now it won't even last one hour and dies for no reason(even when it's in sleep mode, and not in use) What's wrong with it? Is it the update? lagging too

    Ever since I got the new update 5.1 my iPod's been dying faster, even after I charge it. It used to last for at least 3 hours, now it won't even last one hour and dies for no reason (even when it's in sleep mode, and not in use) What's wrong with it? Is it the update? It's lagging as well..

    Some Users have Reported that a  Restore as New  has helped Resolve issues...
    Backup and Set Up as New Device
    http://support.apple.com/kb/HT4137

  • All of my songs now last for one minute thrifty seconds. Most start at the beginning and stop at 90 seconds, a few start in the middle - but total play time is always 1:30. What's wrong?

    All of my songs , when played, now last for exactly one minute thirty seconds. Most start from the beginning and cut off at 90 seconds, some start in the middle. What's wrong?

    It appears that iOS 7.1 fixed this.

  • What constitutes data usage?  My data usage is over twice what it has been for the last several months.

    What constitutes data usage?  The data usage is over twice what it Has been the last 6 months. 
    thank you for the assistance.

    Downloading apps, listening to music(streaming) using social media apps, and multiplayer/online games. Email sending and receiving. 
    Icloud backups and there's a lot more. Imessages uses data and not SMS unless data connection is down.

  • What is wrong? The "show my windows and tabs from last time" has not been working these past two or three days. It was fine before. Ive changed nothing except the last update from you. Thank you.

    What is wrong? The "show my windows and tabs from last time" has not been working these past two or three days. It was fine before. Ive changed nothing except the last update from you. Thank you.

    Make sure that you do not use "Clear Recent History" to clear the "Browsing History" when Firefox is closed because that prevails and prevents Firefox from opening tabs from the previous session.
    * https://support.mozilla.com/kb/Clear+Recent+History
    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/Session_Restore
    * http://kb.mozillazine.org/sessionstore.js
    If you use cleanup software like CCleaner then make sure that Session is unchecked in the settings for the Firefox application.

Maybe you are looking for

  • Problem with trigger and mutating table

    Hello, I have a problem with the following trigger. Everytime it starts I got an error message: ORA-04091: table ccq_test.QW_QUALIFIER is mutating, trigger/function may not see it ORA-06512: at "QW_AFTER_UPDATE_ALL", line 3 ORA-06512: at "QW_AFTER_UP

  • Problem printing to pdf with marks & bleeds on from cs4

    When i check 'All printer's marks' on the print dialog screen the preview whites out and i get error message 'the pages selected to print are all blank'. Does anyone know why this is?

  • Power on light (led) with 23" cinema hd ?

    hi, i am used to the "old" apple monitors where there is always a power on light visible. my new cinema 23" display has only - for a small second - light on when starting up and shutting down. is this normal behaviour ? tia

  • How to create dynamic Connection String in SSIS Package???

    Hi I created OLEDB Source Connnection String for that Package, i need Create OLEDB Destination Connection String Dynamically, Same server name,but i need to add DW at the end of the Database ex: Source database name is Demo, Destination database shou

  • Minidv import

    So my understanding is that imovie 11 is not a good solution for importing 'old' minidv tapes. Will adobe premiere elements work? If so, can one later export to imovie for editing or is one stuck in adobe premiere if that's where the import is done?