First frame of new clip, last frame of previous clip bug

I'm coming across what seems to be a bug in Premiere Pro CS6. When I apply an effect or edit an After effects project in Premiere Pro, the clip next to it seems to get a frame of the video without the effect then it changes to the next clip.
So it goes Clip with effect on > Next clip with 1 frame of previous clip but without effect > Next Clip with whatever footage.
Hopefully this makes sense? It's a really annoying bug.. any ideas?

I see what you are trying to do, but i have the exact same problem as alex
Im positive when mine does it, either the effect doesnt apply on the last frame, or it takes that last frame and puts it at the start of the next clip. I am sure they are frames of the same clip and there is no timeline error, i have zoomed in and looked and checked alot.
This means i get an annoying flash of a frame from the previous clip over the start of the present one, i have restarted it and works fine, but after a while of editting, it just comes back again?
Help much needed and appreciated?
Thanks,
Oliver

Similar Messages

  • How do I loop back from the first frame to the last frame?

    Hi there,
    I'm currently working on the framework for a product viewer.
    I have:
    a movie clip called 'viewer_mc' which contains the images take from different angles of the product. The actionscript generates a script on the last frame of this that returns it to frame 1.
    a button instance called 'autoplay_btn' which plays through the movie clip from whatever the current frame is, and stops on frame 1.
    a left and right button which serve to move the movie clip frame, to give the appearance that the product is rotating.
    I have succeeded in getting it to:
    have the movie clip play through once, return to frame 1 and stop.
    have the buttons return functions when held down, that move the frame in the movie clip using nextFrame and prevFrame commands. The right button successfully loops round to frame 1 and continues functioning to give the appearance of continual rotation.
    The last problem I am experiencing is getting the left button to act in the corresponding manner, going from the first frame to the last and continuing to function.
    Here is my actionscript so far:
    import flash.events.MouseEvent;
    var lastFrame:Number = viewer_mc.totalFrames;
    var thisFrame:Number = viewer_mc.currentFrame;
    var backFrame:Number = viewer_mc.currentFrame-1;
    1. This is the part that gets it to play through once before returning to the first frame. I think perhaps the problem I am experiencing is because of the 'viewer_mc.addFrameScript(lastFrame-1, toStart)' part i.e. although I'm holding the left button, its returning to this script and therefor getting bounced back immediately to the first frame. However, there is no flicker on the screen which you might expect if this were the case
    Note - as this is a generic product viewer which I can use as a template I am using lastFrame etc. as opposed to typing the value in
    function toStart (){
              viewer_mc.gotoAndStop(1);
    viewer_mc.addFrameScript(lastFrame-1, toStart);
    2. This is the functionality for the autoplay_btn that will play through a rotation / return the viewer to the initial (frontal) view of the product (frame 1).
    autoplay_btn.addEventListener(MouseEvent.MOUSE_DOWN, autoplay);
    function autoplay (ev:MouseEvent):void{
              var startFrame:Number = viewer_mc.currentFrame;
              viewer_mc.gotoAndPlay(startFrame);
    3. This is the functionality of the right button, which when held, moves the movie clip to the next frame via the 'rotateRight' function based on the 'nextFrame' command. It loops back round to the first frame due to the 'viewer_mc.addFrameScript(lastFrame-1, toStart)' script generated on the last frame of the movie clip, as is desired.
    right_btn.addEventListener(MouseEvent.MOUSE_DOWN, rightDown);
    function rightDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stoprightDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateRight); //while the mouse is down, run the tick function once every frame as per the project frame rate
    function stoprightDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateRight);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stoprightDown); //remove the listener for mouse up
    function rotateRight(e:Event):void {
        viewer_mc.nextFrame();
    4. This is the functionality of the left button, which when held, moves the movie clip to the prev frame via the 'rotateRight' function based on the 'prevFrame' command. And this is where the problem lies, as although it works for getting the movieclip back to frame 1, it does not loop round to the last frame and continue functioning, as is wanted.
    left_btn.addEventListener(MouseEvent.MOUSE_DOWN, leftDown);
    function leftDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stopleftDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateLeft); //while the mouse is down, run the tick function once every frame as per the project frame rate
    function stopleftDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateLeft);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stopleftDown); //remove the listener for mouse up
    I'd imagine it is probably my logic for this part that is really letting me down - I can do a similar function in actionscript 2, but am trying to learn actionscript 3 just to move with the times as it were, and struggling a bit. Still this is only a few days in!
    function rotateLeft(e:Event):void{
              if(thisFrame==1){
                        gotoAndStop(viewer_mc.totalFrames-1);
              } else{
              viewer_mc.prevFrame();
    Any help you can give me would be gratefully received. For an example of the effect I am trying to achieve with the autoplay button etc. I recommend:
    http://www.fender.com/basses/precision-bass/american-standard-precision-bass

    Thanks for getting back to me.
    Here's the code without my comments / explanations:
    import flash.events.MouseEvent;
    import flash.events.Event;
    var lastFrame:Number = viewer_mc.totalFrames;
    var thisFrame:Number = viewer_mc.currentFrame;
    var backFrame:Number = viewer_mc.currentFrame-1;
    function toStart (){
              viewer_mc.gotoAndStop(1);
    viewer_mc.addFrameScript(lastFrame-1, toStart);
    //last image of viewer_mc = first image of viewer_mc
    autoplay_btn.addEventListener(MouseEvent.MOUSE_DOWN, autoplay);
    function autoplay (ev:MouseEvent):void{
              var startFrame:Number = viewer_mc.currentFrame;
              viewer_mc.gotoAndPlay(startFrame);
    right_btn.addEventListener(MouseEvent.MOUSE_DOWN, rightDown);
    function rightDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stoprightDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateRight); //while the mouse is down, run the tick function once every frame as per the project frame rate
    function stoprightDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateRight);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stoprightDown); //remove the listener for mouse up
    function rotateRight(e:Event):void {
        viewer_mc.nextFrame();
    left_btn.addEventListener(MouseEvent.MOUSE_DOWN, leftDown);
    function leftDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stopleftDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateLeft);//while the mouse is down, run the tick function once every frame as per the project frame rate
    function stopleftDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateLeft);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stopleftDown); //remove the listener for mouse up
    function rotateLeft(e:Event):void{
              viewer_mc.prevFrame();
    The definition of the rotateLeft function is where the problem lies I think - I've taken out my poor attempts at doing the logic from the previous post. If I were to write it out long-hand the statement I want to write is: 'If you get to frame 1 and function rotateLeft is called go to the end of the movie clip'.
    The reason I have to use the viewer_mc.totalFrames-1 definition in the addFrameScript call is the addFrameScript function is 0 based i.e. if you want to call frame 1 of the movieclip you have to return a value of 0 in the addFrameScript (or such is my understanding of it anyway). As such, the last image in the movie clip will need to be the view obtained at 360 degree rotation, which is of course the same view as at 0 degree rotation. As a consequence, the last frame in the movie clip is superfluous for the user, but necessary for the overall effect to be achieved. And, in addition, to keep up the effect of a 360 degree view when the rotateLeft function is called it needs to skip that last frame to go to the lastFrame-1 (or totalframes-1), or in other words, the view of the image prior to completing the full 360 rotation.
    the variables thisFrame and lastFrame are defined at the very top of the script. Like you said they might need to be defined or called on again elsewhere.

  • Is there a way to directly connect/group a chapter marker to the first frame of a clip?

    I have over 6 hours of SD clips on my timeline.   I ended up having to add more clips throughout the timeline.   I was able to "group" the titles to their respecttive clips so I don't have to deal with moving them when I move their clip.   Now I am curious to know if there is a way to link the Chapter Markers to the first frame of their respective clips so that when I move the clip, so the Chapter Marker moves with it?
    BTW, I know it is best to put the Chapter Markers in last b4 I go on to Encore.   While I was working in Encore I realized it would be more meaningfull to create and add several After Effects "AVI" files between several of my clips.   This work in progress would be a lot easier if I did not have to keep re-adjusting the Chapter Markers everytime I modified the timeline.
    Thanks in advance for your help.
    Duane  

    Thanks for your suggestion about using the clip markers.   I tried them on a test clip.   They did not come down to the timeline.  Besides, I would want them labeled.   Right now all my clips have a marker that is labeled with the date and location.   The chapter markers are labeled the same way.   I have a spread sheet that list the dates of all the Chapter Markers which connect to the dates on the menu.     This seems like an old fashion way to do things for such a sophisticated software.   Maybe I should put in a feature suggestion to Adobe.   I would do that, but I am afraid that I may embarrass myself as being the only one that ever asked for something like that.   Or they would accuse me of misusing their software.  
    Again, thanks for your suggestion.
    Duane

  • "Export frame" exporting first frame in clip, not frame at source playhead

    I'm running Premiere Pro CC 7.2.1 on a Retina MacBook Pro with OS 10.8.5.  I'm working from a project on an external drive and I noticed just today that when I go to a frame in the source window and select "export frame", it is now exporting the first frame in the source clip and not the one my playhead is on.  This has never happened before, it wasn't even happening yesterday.  I restarted Premiere and it appears to still be doing this.  Anyone seen this bug before?

    OK.
    Specify them.
    http://dictionary.reference.com/browse/specify

  • *Flash animation looping but going back to first frame {want to hold on last frame}

    I came across this article on looping animations = http://www.quip.net/blog/2006/flash/how-to-loop-three-times
    I'm a novice with flash and just trying to plug thru to get some ads up and running for the first time.
    Everything worked for me in the article...the one thing I wanted to do but haven't found an answer to is how to stop the animation on the last frame after looping is complete, instead of automatically going back to the first frame??
    What's the easiest/most effective way to do this?
    The stop script does not work...still goes back to first frame.
    For all my flash ads, I've imported an FLV video...so don't know if it's some function for flv's/video's that auto-rewinds to first frame...
    Thanks so much, really appreciate any insight on this.
    The sooner you can catch a minute to get back the better

    Ok...not working for me - prob. b/c I'm missing something again.
    What I did was...
    1)  Renamed the instace of replay button = "replay_btn".
    [not sure if that's correct...guessed b/c you reference it in the code]
    2)  I placed this in the action code on action layer on last keyframe =
    var loopNum:Number;
    loopNum++;
    if(loopNum%3==0){
    stop();
    your_replay_btn._visible=true;
    } else {
    your_replay_btn._visible=false;
    3) I placed this in action code on the replay layer on last keyframe =
    your_replay_btn.onRelease=function(){
    this.gotoAndPlay(1);
    What happens is the replay button still flashes at the end of each loop and the loops just continue...it doesn't stop at 3.
    I also get this error =
    Can you break down what I'm doing wrong and how to fix...need to get this out asap.
    I truly appreciate your help and time so far on this...big thanks kglad!

  • Cover Flow: Can I Change Video Clips' First Frame?

    Hi,
    I've got a bunch of video files that I'm viewing in cover flow. However, seeing their first frames doesn't help much in giving me a clue about their contents.
    Is it possible to select an middle frame in the video clip and have that be the image that pops up in cover flow? How?
    Thanks,
    Duck

    Whenever I get a movie I always play it in QT Pro 7, select a typical frame, copy it and then paste it as the icon for the movie using GetInfo. Cover Flow respects these added icons, and that is what it displays.
    If you only have QT X the process is a bit more problematic, since I have not discovered a way to select and copy an individual frame. You can't even do a decent screen shot, since if you pause the movie to take a picture of the movie, the idiotic control bar is inside the movie frame. However, if you pause it, then move the mouse off the control bar and click once inside the frame, the control bar will disappear and you can then do a clean screenshot. Open the screenshot in Preview, select all and copy, then select the movie file in Finder, GetInfo, select the wee little icon at the top and paste. Your movie will now have your custom icon displayed in Cover Flow, Icon view, and so on.
    Francine
    Francine
    Schwieder

  • First Frame in reverse speed video clip is fuzzy

    I am dealing with Progressive scan uncompressed AVI's in CS3, and whenever I try to do a simple reverse at 100% with no other effects applied, the first frame in the resulting reversed clip comes out fuzzy/distorted while the rest of the clip is fine. Can anyone please help me fix this?

    Interesting. I haven't seen this, but I have a theory... Did this JUST start happening for you? That is after the 10.4.7 update? Apparently the first version of the 10.4.7 update that was posted had some missing OpenGL files. I would imagine that QuickTime uses OpenGL for its imaging these days, and what you are seeing could be caused by the fact that the OpenGL default coordinate system is different than Carbon's, another API still in use by a lot of Mac OS X.
    This is just a wild theory, so what I am suggesting is that you go to Apple's website, and download the latest combo updater for 10.4.7, reinstall it, and see if the problem goes away.

  • How can I see the first frame of a clip in the Event Library

    I slate my shots for a reason, but when I am looking in the Event Library I see a random frame a couple of seconds in to the clip instead of the first frame, how can I set it so I can see the first frame?
    Thanks in advance

    Switch to filmstrip view and zoom in.

  • Output clip, first frame does not match rest of clip

    If I take After Effects and create 30 seconds of red, that is r-255 g=0 b=0, then output this to tape in FCP the first frame does not look like the rest of the clip. I render out in AE using BlackMAGIC 8bit 1920x1080 size movie. Imports into FCP without complaint. Layoff to HDCAM-SR.
    If I take a solid green clip and do the same thing it also changes on the first frame layoff.
    If I take gray it does not change.
    If I change the FCP sequence to use RGB processing (to match AE) this does not change anything.
    This happens on more than one machine as well, and is restricted only to FCP.. The BlackMAGIC Deck Control software that they bundle with the cards does NOT exhibit this issue!
    FCP v6.0.4

    17 macs crankin out spots everyday.
    I would like to know if other people out there see the same prob.
    It looks like if something was digitized with FCP, it will output fine.
    If files come from another app, the above prob results.

  • Rotoscoping - it only roto's the first frame

    What I have done:
    Created a video clip with my Canon GL2 featuring a person against a bright background.
    I then used Adobe Premier CS5 to create an AVI of the sequence. (called it ROTO4.avi)
    I then opened CS5 After Effects, imported the clip into the composition timeline.
    I then changed the framerate of the composition to 59.94 (cause a previous attempt told me to do so).
    I then went under LAYER and Open New Layer.
    I then clicked the TOP rotobrush icon (can't find another one anywhere) and began outlining my subject and de-outlining the background. I have a perfect pink line around my subject (on frame1).
    I then drag the timeline bar and it creates the (mask?) on the first frame only and no subsequent frames.
    I switch to composition view and sure enough the first frame is beautiful (subject complete, background now a black screen), but no other frames are generated rotoscooped.
    Arghhh, I've been at this for about an hour and only first frame is ROTO'd.
    Help?
    Montie

    Montie - this is the line that I have the most suspicion about:
    I then drag the timeline bar.
    What exactly are you dragging?
    The recommended way to engage Rotobrush at this point is to press Page Down to move forward a frame, or press the spacebar to begin preview, not to jump to the end of your footage. Rotobrush only analyzes frames under the playhead, and only frames that are inside a span of time near the base frame you drew the strokes on. So if you move the playhead beyond the span it won't have any frames to analyze.
    This is what a Rotobrush span looks like. The span is the gray area with < and > arrows, the base frame is the yellow mark, and the analyzed frames are the green marks extending from the base frame mark.
    Read here about base frames and spans.
    To me it sounds like you are expecting Rotobrush to do all the work magically when you go to the end of your footage, and that's not the case. It needs to analyze each frame, and you need to keep an eye on the analysis because Rotobrush isn't actually magic, it's just some very cool math.
    Note the part in that document about the default span length: 20 frames forward and 20 frames backward. The reason for the short length is because the farther you get from a base frame the larger the probability for inaccuracies. As you move forward through each frame, check for inaccuracies and draw new strokes as necessary. Each time you draw a stroke, a new base frame is created and the span is extended. If you happen to have a sequence of 20 frames that don't need corrections, you can extend the length of the span and continue. (You could extend the span to the entire length of your clip, but you still need to pay attention to the analysis and make corrections.)
    I hope that helps.
    -=TimK

  • First frame 51kb if FLVPlayback on frame 2

    How to reproduce:
    Create a new AS3 fla and place an FLVPlayback Component on
    frame 2.
    In the library uncheck export in first frame.
    In the publish settings set the classes to export in frame 2.
    Ctrl+Enter and view the bandwidth profiler to see that 51kb
    are in the first frame.
    Is this avoidable? If so how? If not why?
    Thank you

    Ok...not working for me - prob. b/c I'm missing something again.
    What I did was...
    1)  Renamed the instace of replay button = "replay_btn".
    [not sure if that's correct...guessed b/c you reference it in the code]
    2)  I placed this in the action code on action layer on last keyframe =
    var loopNum:Number;
    loopNum++;
    if(loopNum%3==0){
    stop();
    your_replay_btn._visible=true;
    } else {
    your_replay_btn._visible=false;
    3) I placed this in action code on the replay layer on last keyframe =
    your_replay_btn.onRelease=function(){
    this.gotoAndPlay(1);
    What happens is the replay button still flashes at the end of each loop and the loops just continue...it doesn't stop at 3.
    I also get this error =
    Can you break down what I'm doing wrong and how to fix...need to get this out asap.
    I truly appreciate your help and time so far on this...big thanks kglad!

  • Export for actionscript - Not in first frame

    Just a simple question.
    Don't need to know if it works or not I have tested it. What
    I want is to understand. Here it is:
    If I use the Export for actionscript and I unselect the
    Export in first frame, the item that will be linked by the ID in
    the library must appear on the timeline. Normally it must be on a
    frame that has played. IE frame 3 the item is there so I can use it
    from the frame 3 to the last frame. This is how it works for the
    _root. If I'm in a clip, the code can be on the first frame with a
    stop. That means that the Item is on the second frame and has not
    displayed, but it is accessible by the code.
    Why?
    Why on the root the item must appear on the frame where the
    code is or before the code, but if in a clip, the code can works
    even the item reside on a later frame that will never display
    because there is a stop on the first one?
    Tanx for your help to understand!

    I think that this is probably because of how flash streams
    content. In order for flash to play frame 2 on the timeline, it
    COMPLETELY loads all the code and assets for that frame (but not
    frame 3) and then 'plays' that frame. Therefore on the main
    timeline, code on frame 2 can't access exported clips from frame 3.
    However, if your movie clip is (for example) on frame 4,
    flash will stream/load everything (including your complete move
    clip) when the play head reaches that frame, so all assets within
    that frame are available because in order to even 'play' frame 4,
    flash has had to load the entire movie clip contents.

  • Export in first frame

    I have some large movie clips that I don't want to load in
    the first frame. So in my publish settings I set my classes to load
    in frame 3. Then I've turned off "Export in first frame" for my
    large movie clips and place them on the stage in frame 2. I've
    placed a simple "loading" message in frame 1 and 2. This worked in
    AS2, but in AS3 my movie clips are invisible when I turn off
    "Export in first frame". I think they are invisible because I'm
    making a game and there are bullets being fired from the x and x
    coordinates of were the enemies should be.
    Does anyone have any suggestions?
    Thanks!

    because you haven't done anything to export your class.
    if you're not going to let flash take care of exporting your
    class in the first frame, you have to do something to export it
    later. and you're not and flash won't do that automatically
    becauese it doesn't know what you want to do.

  • AS3.0 Slider to slide timeline is duplicating first frame. Why?

    I have made a slider that I am having issues with. This slider is to control the timeline of a movie clip when dragged. My problem with this is that It seems to be duplicating the first frame. When I slide the slider to the right it will hit first tick and still display what is in frame 1 .. then on the next ticks it will continue with the rest of the timeline. Any Ideas how to prevent / over come my slider from doing this with the first frame? I have dificulty explaining so I have atached an example.
    Thanks In advance.

    I have tried to upload the .fla but server wont let me.
    here is the code I am using for the slider. It controls numbers_mc that contains frames 1-16 all numbered 1-16 These numbers will be replaced later with images. Thanks
    s.setSize(240,1);
    s.maximum=numbers_mc.totalFrames;
    s.liveDragging=true;
    s.addEventListener(Event.CHANGE,updatemc);
    function updatemc(e:Event)
        numbers_mc.gotoAndStop(s.value);

  • Get first frame of an flv video into a jpg image

    I am creating an app with flex for recording a video and i want to capture the first image of the video recorded, by now i use the following function in order to capture the
    first image but its rather slow
    private function capture():void
                                            var bitmapData:BitmapData = new BitmapData(videoDisplay.width, videoDisplay.height);
                                            bitmapData.draw(videoDisplay);
                                            var jpg:JPEGEncoder = new JPEGEncoder();
                                            var ba:ByteArray           = jpg.encode(bitmapData);
                                            var base64_enc: Base64Encoder = new Base64Encoder();
                                            base64_enc.encodeBytes(ba,0,ba.length);
                                            imgEncoded = base64_enc.toString();
    and i would like to get the first frame of the recorded video as a thumb after it is recorded
    is there any idea on how to achieve that?
    Thanks in advance!

    Define slow. What you're doing is pretty basic. Converting a display object into a bitmapdata so you can jpeg encode it. The copy to the bitmap will be lightning quick. The encode to JPEG is probably the slowest part of the process and on any modern cpu that will be a fraction of a second. Then the base64encode might take about the same amount of time. How is that slow?

Maybe you are looking for

  • ITunes 12.1.1.4 and iOS 8.2 Unable to Sort Videos!

    I'm using a Windows 7 64-bit OS. I just upgraded iTunes to version 12.1.1.4, as well as my iPad 2 to iOS version 8.2. As a result of these upgrades, I now find that the TV shows downloaded to my iPad are no longer sorted according to the name of the

  • How do I activate the Search/Find feature in Adobe Reader 9.3.1?

    My version of Adobe Reader is 9.3.1.  I am trying to search a document and have used the Search feature.  I have put in words that I know are in the document but it keeps returning 0 finds.  Is there something I have to do to get the Search feature t

  • How to configure MS-Access 2010 DB details on weblogc using DBAdapter

    Hi Experts, Can any one help me how to configure MS-Access 2010 DB details on weblogic 11g using DBAdapters. If you provide step by step instuction, it is very usful to me. If you have any screen shots you can any one please send a file to my mail ID

  • Non deductible tax problem

    Hello,   Created one condition type: ZVSB (VAT non-deductible) Condition class: D, Calculation type: A, Cond. category: N, Access sequence: MWST, item condition.    In Tax calculation procedure: (T/code OBQ3) - TAXINN   ZVSB condition type calculatio

  • Database home page not opening in oracle linux 4 after installation?

    I have just installed oracle 10g express edition R8 (32 bit) in oracle linux 4 (oem 4) which is running on vmware. After installation on going application(start)->oracle 10g express edition ->Go To database home page. Database home page starts on kon