Layer markers seem to be placed late

It seems that in AE CS3, the layer markers you place live (during a preview) using the '*' key are placed about a second or so late from where they should be. Anyone else notice that?
They worked fine in my previous version (AE7).

I haven't tried the "disable 3rd party drivers" yet (I do have a Intellipoint installed for a Microsoft mouse...) but let me ask this...
First - a correction.  When I maxed out the Buffer the audio DID play but when I dropped down markers they went down even FURTHER away from when I wanted them.  So my rationale was to make the buffer SMALLER since LARGER increased the gap / discrepancy.
But get this - I found a different machine also running CS4 on a Mac where a) there was no "Default" Buffer Size button and b) the setting was 512, not the 2048 that I have ... and the markers worked perfectly there.  So why doesn't any value beneath 2048 work for me?  Why is playback all stuttery?
I think the answer lies somewhere in that - that if I set it to SMALLER - 512 - the timing would be perfect too - but smaller doesn't play for me.  Does anything less than the Default 2048 work for anyone running Windows Vista?  Again - this worked for me on older versions of After Effects and older /  slower machines, so I don't know why it's having so my trouble.
Will give the drivers angle a shot tonight.
Marc

Similar Messages

  • Can't add layer markers on the fly with Mac laptop

    I've been trying to figure this out for hours now!!! I'm on a Mac Intel Core 2 Duo laptop running 10.5.6. I'm using After Effects CS3 Professional. All I want to do is RAM preview an audio file from inside a composition, and add layer markers on the fly. Apparently this is easy with a desktop using the numeric keypad. I remapped the shorcut in the Preferences text file so that "Add Marker" is now F12 - nice and easy! (and no, it's not conflicting with the the OS Dashboard shortcut - I turned that off). In any case, I tried a number of others as well. The problem is, no matter what the shortcut, when I try adding the layer marker with the shortcut the file stops playing! So annoying! I want to add a number of layer markers timed to the beat, but as soon as I do the damned RAM preview stops! I can't mark key points in the composition!! Any help would be MUCH appreciated...
    - Bryan

    Hi there
    I hope it's ok to continue this old thread - as I'm having a very similar problem, but with a PC laptop
    I want to re-map the numeric-keypad-star key so I can hit markers on the fly while ram previewing (my laptop has no numeric keypad), but I don't know what the shortcut is called in order to be able to find it to re-map it!!  Can anyone tell me what the shortcut is called?
    Also from this thread it seems even if I do re-map it may not work - can anyone tell me whether this will be the case for a PC?  I'm using a Dell Studio 1557 Core i7 with Win7 64bit, running After Effects CS4
    All advice appreciated
    Thanks
    jON

  • EXPRESSION help,layer markers

    Hi
    I've got a comp with one camera and 100 3d layers distributed randomly in 3 space.Each layer has got a different z-Rotation value.
    The camera animates from one layer to the other via script (the script generates
    automatically layer markers and keyframes for each animation).So,there are 101 layer markers.
    Example:
    The camera moves between layer marker 2+3 from layer 2 to 3 for example.
    Layer 2 has got a z-rotation value of -14° and layer 3=>45°.
    basically,i need a camera (z orientation) expression so the camera animates
    from -14° to 45° between these two layer markers and so on.
    THX

    Yeah, what part of the equation do you not understand? The first part simply checks whether markers exist at all, then counts them down until there are none left after a given time. If you want to blend between the different values, you'd simply need to plug the marker times into the remapping. Something like this:
    markNow=marker.nearestKey(time).index;
    markNext=marker.nearestKey(time).index+1;
    timeNow=marker(markNow).time;
    timeNext=marker(markNext).time;
    rotationNow=thisLayer.transform.zRotation.valueAtTime(timeNow);
    rotationNext=thisComp.layer(index+1).transform.zRotation.valueAtTime(timeNow);
    rotationFinal=linear(time,timeNow.timeNext,rotationNow,rotationNext)
    You only need to include this in the curly braces or return n outside the function to make use of this. Haven't tested it, as I'm not in front of AE, but on an abstract level this is how it should work. Hope it helps to get yoou started.
    Mylenium

  • CC 2014 nik efex - My Nik Efex filters are not working in Photoshop CC 2014 - they appear under plug-ins and seem to work, but after running and clicking okay, no new layer appears - seems to have no effect.  The separate menu panel does not appear either

    My Nik Efex filters are not working in Photoshop CC 2014 - they appear under plug-ins and seem to work, but after running and clicking okay, no new layer appears - seems to have no effect.  The separate menu panel does not appear either.  Help with this?

    BINGO !!!!
    Thanks so much Woodsroad. I had the exact same problem with my Dell Windows 7 64 bit with AMD Radeon 6700 Video card.
    All the video tests passed with flying colors.
    The sniffer rename trick fixed the problem.
    Thank goodness for the internet!

  • Keyframes control with layer markers

    Hello,
    I have an animation of a line that has two sets of keyframes of two different properties in CS4.
    Basically a line gets generated in the first phase then it gets cleared out in the second phase.
    This is done using two slider controls that act on the horizontal size of two rectangles and using merge paths (using the second rectangle as a matte for the first to clear it out)
    I've put two layer markers on my layer hoping to link the keyframes to each of them.
    Then I have found this script on the web and I put it on the first property :
    L= thisComp.layer("ShapeLayer");
    n = 0;
    if (L.marker.numKeys > 0){
    n = L.marker.nearestKey(time).index;
    if (L.marker.key(n).time > time){
    n--;
    }if (n == 0){
    valueAtTime(0);
    }else{
    t = time - L.marker.key(n).time;
    valueAtTime(t)
    This indeed lets me move the whole animation with the layermarker (which is very good) but I can't find a way to link the second set of keyframes to do the output.
    I will add a link with the project file: WeTransfer
    Please help!
    Thanks

    First, thank you for taking the time to solve this.
    I feel like a handicapped... and I am when it comes to scripting. (I'm not really a handicapped person (not that there's anything wrong with that))
    It has been now over two hours of tweaking and replacing values...no go.
    I can follow the logic behind the script - telling to use the index or the name of the marker instead of the nearest one but I'm a script retard.
    So, like a child, I'm asking what does this do:
    t = time - L.marker.key(n).time;  ?
    and
    should there be a dot between L.marker  and (1)  like this L.marker.(1)  ?
    and there are many other questions (very stupid ones) that I will not mention here.
    If you (me) don't have some basic knowledge about scripting, you (you) can give me everything word by word and I still wouldn't know how to assemble it in a script.
    By now I think I've already made a fool of myself so the variable shame is not of the importance anymore.
    I know...I shouldn't even be in this forum with my knowledge regarding the scripts in AE, but here I am.
    I'm a motion graphic designer with over 15 years of experience with AE, and so far I've managed to elude the tricky part of learning scripting. (my bad)
    If anybody has a question about motion graphics, or just graphics (ex. Oh my God, how did they do that in AfterEffects or Cinema 4D, Maya, Photoshop, Illustrator ?(or What do you think about this font, should I use it on my wedding invitation ?)) I will be glad to help!
    Thank you everyone!
    You are a great community!
    exit.(stage(left))
    P.S. (post.scriptum) I'm sorry if this turned into some kind of written stand up comedy but I didn't know how to approach this situation otherwise. I'm sorry about the retards too.(me included)

  • Layer markers to flv-cuepoints not working in ae cs6

    We are currently working on a project where we create layer markers in ae with File>  Scripts > Converted selected properties to Markers.jsx
    With the property "Position" selected of a layer in AE with motion tracking data from the underlying footage in my comp.
    Next i added the comp to the Render Queue. In the output module i choose .flv and render.
    When i import this flv in an flvPlayback component in Flash there are no cuepoints visible in the palyback properties panel or when i add an Eventlistener "CUEPOINT" to the flvPlayback. This used to work perfect in AE CS5. Is this an AE CS6 bug or am i missing somthing?

    Oh yes, I agree. Especially considering that it already has been working just fine for years...
    At least for the people who are as desperate as me I have found a tedious work-around:
    I have written an AE-script that exports all markers as a Flash cue point XML (see below, it sure is not perfect and parameters are not considered, but it works). This XML-file can be used in Media Encoder to encode the AE composition with cue points.
    Use the RichFLV App (http://richapps.de/?p=66) to change these cue points to navigation which should be of that type.
    Here is the code, you need to check in the preferences that scripts are allowed to write files:
    var comp = app.project.activeItem;
    var XMLStart = "<?xml version='1.0' encoding='UTF-8' ?><FLVCoreCuePoints>";
    var XMLEnd = "</FLVCoreCuePoints>";
    var XMLTemp = "";
    var XMLFinal = "";
    var layerCount = comp.numLayers;
    var layer = new Object;
    var layerMarkers = new Object;
    var markerCount = 0;
    var curMarkerTime = 0;
    var curMarkerName = "";
    var curMarkerType = "";
    var curMarkerXML = "";
    //Layer markers
    for(i=1; i<layerCount+1; i++) {
        layer = comp.layer(i);
        layerMarkers = layer.marker;
        markerCount = layerMarkers.numKeys;
        for(j=1; j<markerCount+1; j++) {
            curMarkerTime = layerMarkers.keyTime(j) * 1000;
            curMarkerName = layerMarkers.keyValue(j).cuePointName;
            if(layerMarkers.keyValue(j).eventCuePoint) {
                curMarkerType = "event";
            } else {
                curMarkerType = "navigation";
            curMarkerXML = "<CuePoint><Time>" + curMarkerTime + "</Time><Type>" + curMarkerType + "</Type><Name>" + curMarkerName + "</Name></CuePoint>";
            XMLTemp += curMarkerXML;
    //Comp markers
    var tempText = comp.layers.addText("");
    var tempSrc = tempText.text.sourceText;
    tempSrc.expression = "thisComp.marker.numKeys";
    markerCount = Number(tempSrc.value);
    if(markerCount > 0) {
        for (i=1; i<=markerCount; i++) {
            tempSrc.expression = "thisComp.marker.key(" + i + ").time;";
            curMarkerTime = Number(tempSrc.value) * 1000;
            tempSrc.expression = "thisComp.marker.key(" + i + ").cuePointName;";
            curMarkerName = String(tempSrc.value);
            tempSrc.expression = "thisComp.marker.key(" + i + ").eventCuePoint;";
            if(tempSrc.value == "true") {
                curMarkerType = "event";
            } else {
                curMarkerType = "navigation";
            curMarkerXML = "<CuePoint><Time>" + curMarkerTime + "</Time><Type>" + curMarkerType + "</Type><Name>" + curMarkerName + "</Name></CuePoint>";
            XMLTemp += curMarkerXML;
    tempText.remove();
    //create output string
    XMLFinal = XMLStart + XMLTemp + XMLEnd;
    //Write file
    var cueFile = File.saveDialog("Save the XML file", "XML:*.xml" );
    cueFile.open("W");
    cueFile.write(XMLFinal);
    cueFile.close();

  • Speech Analysis as layer markers - How?

    this page states:
    "If you import files with a speech metadata into After Effects, each word appears as a layer marker on layers based on these footage items."
    I have tried various methods of achieving this without any success.  Can someone please explain exactly how its done.  I have the metadata appearing in Premiere's clip metadata panel so the analysis is complete.  I can get the same result in Soundbooth, but no layer markers appear in After FX when I import the files.

    I just tried it, and it worked for me. The temporal XMP metadata stored in a movie exported from Premiere Pro was converted to layer markers in After Effects.
    You have to have the Create Layer Markers From Footage XMP Metadata preference turned on. This tutorial shows all of the steps.

  • Can layer markers "show through" a precompiled clip?

    I've got a precompiled clip in my AE timeline. Inside that precompiled clip, I've got many markers that I'd like to be rendered out into my final format, an FLV. Once I've precompiled my clip though, it seems I lose all those markers in my "final" timeline. Is there a way to make the markers in my precompiled clip "show through" and be rendered in my final output?
    My only solution so far is to recreate markers in my final timeline but it's a lot of manual labor to move them every time my precompiled clip changes.

    No, markers don't pass through. Only the markers of the parent comp will be embedded in the output. You might be able to find a script somewhere that takes the nested markers and puts them in place again in your main comp, though...
    Mylenium

  • Layer Styles seem disabled

    I am teaching students and one complained he could not add any Layer Styles.  I also cannot add styles to any layer in this file.  He says he started it in a Lab on campus.  We use a deep freeze software and so the default preferences should be restored on the computers regularly.  He thinks he has had this problem before and has worked on different computers.  No one else has this problem.  So, if that's true, all I can think is that he is "doing something" when he chooses File--New.  I recently opened the projects from all of the other students in my office and this fellow's file is the only one I can't add styles to.  It's something about the file itself.  What is it?

    Why are you working in 32 bits/channel mode?  That's generally just for some pretty specialty HDR stuff.  Not that layer styles shouldn't work in 32 bits mode, but try changing it to 16 bits/channel mode.
    Drop Shadow doesn't always show very well against the checkerboard (transparent) background, and will be more easy to judge if you make that white Background layer visible.
    What are your actual Drop Shadow settings?
    -Noel
    Edit:  Looks like Chris nailed it.  A screenshot almost always helps get right to the bottom of problems.

  • 2 vegas masks in same layer. wont seem to work?

    Hello Adobe Creative Forum!
    I am having trouble with making my masks in the same layer rotate in vegas.
    when i try to set rotation, then pull the time marker to e.g. 5 sek, and set it to 1x, it doesn't make any points between 0 and 5 sek.
    I am fairly new to AE, but i have been troubleshooting for some time now, without finding my mistake(s).
    Can you maybe try to take a look at my file, and see whats missing?
    https://copy.com/cBaFKEmt2ZB0H6IL
    i haven't set rotation on this file(on any of the layers), but i have been trying to time it several times without luck.
    thank you very much in advance :-)

    Works without issues here, but of course setting both effects to render on transparent makes no sense since the second will eradicate the first. Set it to Over. also masks need to be set to None or else they will clip the layer of course, which can also make effects disappear.
    Mylenium

  • Key ed script- layer markers?

    I use a macbook pro and so the shortcut for adding a layer marker doesnt work as I have no mumeric pad.   So I downloaded the key ed script but this also has no option to change shortcut for layer marker?
    How do I do this with CS6?

    Note that there is also a keyboard shortcut specifically for people without a numeric keypad. See After Effects Help.

  • After Effects markers to Flash Cue Points

    I'm working on a project that invlolves tracking footage using Mocha AE, bringing the corner pin data into After Effects, and finally converting that data into layer makers so that it can be read as cue points in Flash.  The Flash guy I'm working with is creating an automated system in Flash that will composite images over the footage I'm tracking using my exported FLV's with metadata .  We've had a certain amount of success but there are some lingering issues that I'm hoping someone can shed some light on. 
    1) Is there any way to see all the data that is stored in a particular layer marker (this is after running the "convert selected properties to layer markers" script.)  When I click on a layer marker it shows the cue point data at the bottom, but there are only 3 spaces for data, and I know I've been able to export a lot more than 3 paramerters of data into Flash per cue point.  There seems to be no way to expand the window to display more data.
    2) Transparency data in the layer markers seems to cause all sorts of issues when it is interpreted in Flash.  At first I tried using simple hold keyframes for opacity, and have also tried linear keyframes, and generating a keyframe for every frame of video, and each time the results are unpredictable.  The in and out points' opacity values for any particular layer seem to be correct, but in between that there seem to be random opacity values in the cue data on the Flash side.  Is there a way to reliably get transparency data into Flash via the FLV (with metadata) format?
    3) Is there a way to change the order of how data is listed in the layer markers?  I've tried selecting individual paramerters in a certain order and running the layer marker script, but the cue point data seems to be ordered the same way each time.
    4) We seem to be running up against a limit of how much cue point data Flash can ingest in an FLV, but we have not seen any documentation regarding this.  Does anyone know if there is a set limit?  Right now we're either splitting up the clips into smaller pieces or reducing the amount of data on the Flash side, but if there's an actual limit it would be nice to know so we can work around it.
    Any other tips that might help save some time in this process would be most welcome.
    Thanks!
    -scott

    Is there a way to reliably get transparency data into Flash via the FLV (with metadata) format?
    Don't think so. It's inherent in how Flash calculates opacity/ transparency. Something with normalizing/ quantizing the opacity for the entire stage and changing Alpha values. You'd have better luck exporting an XFL and copying the keyframes manually to the respecticve layers in Flash and/or you have someone write an XML parsing script to pull them directly in.
    Is there any way to see all the data that is stored in a particular layer marker (this is after running the "convert selected properties to layer markers" script.)
    Read this article on how to access marker data with expressions, then create an expression on a text layer's source text property. Off hand I'm not sure about the individual field names in the markers, but I'm sure it's easy enough to figure out.
    Is there a way to change the order of how data is listed in the layer markers?
    Not that I know. Unfortunately the fields are hardwired, not custom XMP. Still, should not be a problem - you can no doubt easily reorder everything when importing in Flash, it may just prolong parsing when a script is involved...
    Does anyone know if there is a set limit?
    The file format specs don't state anything, which means there can be one for every frame, if you assume that what is not exclusively ruled out is possible otherwise...
    Mylenium

  • Hello, we seem to have a bug with premiere. When I save some work that I´ve been doing, close premiere and open it up there is nothing saved. But 24 hours later everything is saved. It seem that it takes almost a day for the program to get the saved data.

    Hello, I have a problem with premiere. When I save material that I´ve been working on and close Premiere it is gone when I open it up again. So it doesn´t save it seem but 24 hours later it all there. It is like Premiere has a syncproblem with saving and takes 24 hours to complete the task. Anyone knows what could be the problem?

    uninstalled firefox ....deleted all files still remaining under mozilla firefox directory in program files ... to avoid having to reprogram all my settings, reisntall all addons as well .. I did not remove anything from mozilla firefox that is stored in either appdata or under the windows users directory (if any)
    ... the as suggested reinstalled the latest version of the firefox browser using the link you provided in the email ..; tested and several issues still remain present and unresolved ....
    so please this is urgent or I will have to jump browsers and start using chrome .. because we work 14 hours a day 6 (sometimes 7) days a week, to get ready for the launch of our newest venture and we cannot lose that much days on browser related issues ... so please instead of putting me through week long step process .. of do this .. do that .. can you please actually look into the issue from your end .. I use firefox for so many, many years thta I deserve this kind of support .. thnx Robert

  • "Vector mapped" layer in an open PS file?

    A client has asked me to send a file with the type on a separate layer which he refers to as "vector mapped". I know that I can lay in an AI type layer and save the file as an open .PSD file, or lay it in as a vector smart object and send it as an open TIFF file (along with the original AI file), but the client is using CS2 and can't deal with VSOs. The way around it, of course, is via a layered AI file with a placed image, but what is he referring to with hte term "vector map"?

    Mike, thanks for taking a look. I still have a problem with it. "the unflattened AI or PS file with live type" doesn't work for me in PS, as a .PSD file. The type always winds up rasterized. Does the term "Live type" mean something in particular? I can't use a vector SO because the client is using CS2. In the end, what worked (I think) is a  2-layer AI file with a placed image. I sent him 9 different versions, 4 PS, saved as .PSD files, and 5 AI versions, a couple of which worked. None of the PS files worked. Unless the term "Live type" actually refers to some accessible tool in the apps, I see no way to save a PS file with a copied-and pasted type layer that will remain a vector layer after the file is saved. What am I missing?
    (Later) I figured out what I was missing. I was able to get Illustrator type into a .PSD file as a layer, leave it there, close the file with the layers unflattened, then reopen it and edit the still-vector type layer. It stayed in vector mode. I did it using two maneuvers no one on the forum has mentioned so far. 
    Thanks for the help, guys.

  • How to export markers to FLV cuepoints?

    Is there a way of exporting sequence/layer markers to an xml document that could later be brought into Video Flash Encoder? I don't want to use AE for converting large video files. I actually tried, but the cuepoint tab was greyed out even though I made sure all the info was attached to the markers (as indicated by the appearance of a black dot). I was hoping that would be one way of exporting the data but I guess it's not...

    That's the thing: I don't want to render in After Effects at all. The only reason I bring my QT files to AE is so I can attach the markers to them and, as I was hoping, export flv cuepoints list to be used in Flash Video Encoder These are completely finished 30 minutes shows that just need to be encoded for the web with chapters but Final Cut Pro markers do not translate into cuepoints.

Maybe you are looking for

  • Multiple users on a itunes account how do I avoid eveyone getting my information on icloud

    I have multiple users on our itunes account. If I switch to mountain lion and utilize icloud how do I avoid the other phones my kids and husband from getting all my stuff on their phones. I am the primary account holder when we first upgraded the pho

  • G/L Account & the Cost Center not updating in BAPI_PO_CREATE1

    Hi, We are using BAPI_PO_CREATE1 for Service PO Creation. The System is creating the Purchase Order, but it is not updating the G/L Account & the Cost Center. We are passing the following parameters:                 wa_poaccount-PO_ITEM  = '00010'.  

  • Invoice (MIRO) with SKTO?

    Hello gurus, In the standard price determination RM0000     Purchasing Document (Big), we have defined the SKTO - Cash Discount condition type. We are creating a PO from the Sales Order. We are using a Payment Term where is defined a Cash Discount as

  • Emulator runtime error - java.lang.IllegalAccessException

    Hi Im working through some example code, and when i build, everything is fine, with no errors, however when i run in the emulator, even though at this moment the program actually does nothing, its just a skeleton, i get the following error: Unable to

  • [SIMGH] Reference a Database view

    Hi, I am using transaction SIMGH for creating a new customer node. I would like to reference a <b>database view</b> in it. I know how to reference maintenance view but the problem with DB view is that they do not have a SOBJ record. Is there a possib