Search found 203 matches

by nab
January 18th, 2008, 9:46 pm
Forum: General Scripts Library
Topic: Magnum - The Edit Detector
Replies: 3
Views: 14554

zooper script Image

and one of my favorite american series...Zeus, Apollo !
by nab
January 10th, 2008, 10:25 pm
Forum: Scripts Discussion
Topic: Needs Output
Replies: 2
Views: 8032

If I recall correctly, when you send a comp to the queue for the first time, AE asks for a destination folder (via a dialog box). If these machines have never rendered any file or the output module file has never been set, I guess you would face the problem you mentionned.
by nab
January 8th, 2008, 11:05 pm
Forum: Script requests
Topic: Text replacement
Replies: 2
Views: 8200

Give this a try: findReplaceFromFiles From the header: Given two text files as input, this script will replace the text layers whose text source is contained in the first file with the corresponding text written in the second file. Example: oldData.txt Monday Tuesday 8.30 PM newData.txt Friday Sunda...
by nab
January 8th, 2008, 10:52 pm
Forum: Expression Discussion
Topic: Audio synch to Video Speed
Replies: 7
Views: 19652

You could use a "smooth()" expression on your audio data (see the doc for usage) or play with The Smoother (from the Window menu). Sometimes this helps.
by nab
January 5th, 2008, 6:40 pm
Forum: Expression Discussion
Topic: Audio synch to Video Speed
Replies: 7
Views: 19652

The script can be downloaded here 8)

Usage:
1. convert your audio to keyframes
2. select your video or precomp layer
3. execute the script

A null layer and a parameter called "Max Forward" are created at the top of the comp, this parameter controls the "speed"...
by nab
January 3rd, 2008, 11:55 am
Forum: Expression Discussion
Topic: Audio synch to Video Speed
Replies: 7
Views: 19652

I don't think you can use the audio amplitude (or some "linear()-ized" value to change its range) as a timeremap multiplier because the animation will jump forward and backward, not slower and faster. You need an expression that loops through the comp or layer duration and maintains a coun...
by nab
December 28th, 2007, 1:31 pm
Forum: Script requests
Topic: Scripts: Project Set Up and applying presets
Replies: 4
Views: 10831

Some hints if you want to try again in the future...

To add a folder:

Code: Select all

app.project.items.addFolder("Comps");
To change the project color depth:

Code: Select all

app.project.bitsPerChannel = 32;
To trigger the Import File dialog:

Code: Select all

app.executeCommand(2003);
by nab
December 28th, 2007, 1:28 pm
Forum: Scripts Discussion
Topic: Determining Width and Height of a Text Layer
Replies: 62
Views: 125775

Yes that's right. You could try to create new text layers in the activeItem based on the text source of layers that are located in other comps to evaluate their size.
by nab
December 15th, 2007, 12:58 am
Forum: General Scripts Library
Topic: Multi-Copy-Paste script - keyframes from multiple layers
Replies: 13
Views: 64811

I was just saying that in some situations (when layers have the same name), the paste operation doesn't act on every layer, just one. I think the reason is that your container stores layer names, so when you want to access a layer you always retrieve the same layer. If I'm not clear, try that: - cre...
by nab
December 11th, 2007, 8:22 pm
Forum: General Scripts Library
Topic: Multi-Copy-Paste script - keyframes from multiple layers
Replies: 13
Views: 64811

Congrats SFR75, very nice implementation 8) A simple remark.. When a layer has not been renamed and is duplicated, the original layer and its duplicate have the same name. If you apply the script on these layers, only one layer will be affected. I'm sure you can easily fix it (if you like to). The U...
by nab
November 14th, 2007, 6:05 pm
Forum: Scripts Discussion
Topic: Render to still using layername as filename
Replies: 4
Views: 10564

Try something like this after rendering the current frame/layer:
var renderedFile = new File(OutputMO.file.fsName.replace("[#]",xstarttime/activeItem.frameDuration));
renderedFile.rename(Location.fsName + "/" + currentLayer.name + ".tga");
by nab
October 23rd, 2007, 6:08 pm
Forum: Expression Discussion
Topic: custom eases through expressions
Replies: 12
Views: 32423

Is there anyway to replicate custom eases through expressions? Yes, there is. As suggested above, you can write your own interpolation function that would calculate the intermediate values from the current key and the next one. First you would have to retrieve the keys... Here is an example that in...
by nab
October 23rd, 2007, 5:42 pm
Forum: Scripts Discussion
Topic: Calculating KeyframeEase Object values
Replies: 4
Views: 10920

(sorry Dale for my late reply I was super busy :cry: ) okay I see.. I think the speed attribute corresponds to the "slope" of the handle, describing the variation of the property's value over time. The influence attribute determines the "length" of the handle's projection onto th...
by nab
October 17th, 2007, 10:07 pm
Forum: Scripts Discussion
Topic: Calculating KeyframeEase Object values
Replies: 4
Views: 10920

I'm not sure to understand what you're looking for, could you please elaborate further ? (does the keyframe exist already, which property is concerned, etc...)
by nab
October 17th, 2007, 10:01 pm
Forum: Expression Discussion
Topic: trigger point of expression
Replies: 4
Views: 9957

"If you have AE CS3...", AE 6.5 or AE 7.0 8)