Forum Replies Created

Page 1 of 14
  • Bartek Skorupa

    May 10, 2011 at 7:06 pm in reply to: Set the Opacity lower than 1%

    In fact it didn’t jump to 0%. It is set to 0.1%. Click the value and you’ll see it’s set to 0.1%.
    The problem is that opacity means alpha. Alpha is one of the four channels that are R, G, B and Alpha.
    You can’t display colors (or alpha) with this accuracy. You are limited to 8 bits per channels.
    Possible values are zero and multiples of 1/255 = 0.39%.
    When using percentage you have minimum possible value of 0%. Next possible value is 0.39% and so on.
    When you set the value to something between 0% and 0.39% the closer possible value will be chosen.
    It means that if you set opacity to 0.1% – it’ll be “rounded” to 0%. If you set it to 0.2% – it’ll be rounded to 0.39%.

    Bartek Skorupa
    Warszawa, Poland

  • Bartek Skorupa

    April 29, 2011 at 9:17 pm in reply to: 720×480 (1.00 PAR) to 720×480 (0.91 PAR)

    You should ignore the way QuickTime displays it. What matters is how many pixels you have. When you import the footage you get from someone else – you have to make sure how it was supposed to be interpreted. You shouldn’t always trust automatic AE’s interpretation.
    Most likely this footage was meant to be 0.91 PAR. That’s how you should interpret this in AE.
    Ignore QuickTime display because it doesn’t correct PAR. It’ll always display square pixels, no matter what the correct aspect should be.
    Anyway – It seems you did everything correct.

    Bartek Skorupa
    Warszawa, Poland

  • Bartek Skorupa

    April 29, 2011 at 9:08 pm in reply to: what is “Collect Files” doing under the hood?

    This is Finder that slows things down. Finder indexes stuff, so that Spotlight has easier access and does many other things under the hood.
    After Effects ignores Finder when copying files. It goes “inside” the system and does it similarly to shell (Terminal).
    This is not that Adobe does something better. It’s Finder who does things slower.

    Bartek Skorupa
    Warszawa, Poland

  • Bartek Skorupa

    April 18, 2011 at 6:46 am in reply to: Missing titles

    Maybe your font is black as well?

    Bartek Skorupa
    Warszawa, Poland

  • Bartek Skorupa

    April 10, 2011 at 7:50 am in reply to: Info Panel color values

    Thank you.

    Bartek Skorupa
    Warszawa, Poland

  • Bartek Skorupa

    April 4, 2011 at 1:49 pm in reply to: Rendering Black

    Sorry, this is not an answer to your problem, but I’m just curious:

    You said:
    “my CompSettings are 1280×720, D1/Dv NTSC (0.91)”

    What do you use such format for?

    Bartek Skorupa
    Warszawa, Poland

  • Bartek Skorupa

    April 1, 2011 at 7:22 am in reply to: Cropping in After Effects

    Can’t you simply double click the mask in the viewer?

    Bartek Skorupa
    Warszawa, Poland

  • Bartek Skorupa

    March 1, 2011 at 8:21 am in reply to: Smart import sequence with gaps

    As I didn’t find any “perfect” solution to import sequence with gaps as separate sequences – I have created the small application that may be helpful. Unfortunately – only for Mac.
    Run the app, select all of the files you want to process and follow the instructions.
    The current version of the app can manage files whose names contain ONLY numbers.
    If you have files with prefixes, like: “seq_02314.dpx” you first have to batch rename them all, so that you have “02314.dpx”.
    The app will create subfolders and move subsequences to those subfolders.
    This is destructive and cannot be undone, so it’s better to have the files backed up.

    Then you can simply select all those subfolders in Finder and drag them into AE holding Cmd.

    The link to the app:
    https://www.creativecrash.com/downloads/applications/misc/c/sequences-to-folders-mac-app

    Bartek Skorupa
    Warszawa, Poland

  • Bartek Skorupa

    February 15, 2011 at 10:19 pm in reply to: Stabilize on X or Y Axis using Mocha Data?

    Go to the first frame of the stabilized piece, read the value, let’s say it is 365 for x and 290 for y.
    Add an expression to the property and depending on which axis you want to keep, you should type in something like:

    x=value[0];
    y=290;
    [x,y]

    or:

    x=365;
    y=value[1];
    [x,y]

    That’s, what I would do.
    The expression will read the value, and leave one axis and set the other axis to the value you specify.

    Bartek Skorupa
    Warszawa, Poland

  • Bartek Skorupa

    February 10, 2011 at 3:06 pm in reply to: Scale Multiple Compositions, not by percent

    The script you showed is fantastic, but it will not do one thing, that I suppose is important for Ian:
    It will not scale the layers inside the comps.
    Let me propose something:
    How about you make single comp from all the pictures, then set the size of this comp to whatever you want, then select all of the layers, fit then to comp’s size (Cmd-Alt-F, or Cmd-Alt-Shift-H, or Cmd-Alt-Shift-G, depending on your preferred way of fitting) and then pre-compose them all using the script that you can find here:

    https://www.digitaldistortion.net/resources/scripts/AE/Precomp_to_duration_MultiLayer.jsx

    This script has one disadvantage: it names all the comps like: “Shot_001”, “Shot_002 and so on.
    If you want your comps to be named as the layers, you can change one line in the script.

    line 65 reads:
    var newComp = myComp.layers.precompose(layerIndice, newCompName + shotNumberPadded, true );

    change it to:
    var newComp = myComp.layers.precompose(layerIndice, newCompName + myLayers[myLayersCounter].name, true );

    Hope it helps.

    —edit—

    Oops… Hi Ian. It’s great that what Walter showed us is exactly what you need. My solution may then be helpful in some other scenarios.

    Bartek Skorupa
    Warszawa, Poland

Page 1 of 14

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy