Search found 20 matches
- January 25th, 2006, 4:33 pm
- Forum: Scripts Discussion
- Topic: get timecode from layers -or- converting seconds to timecode
- Replies: 4
- Views: 12605
- January 18th, 2006, 4:46 pm
- Forum: Scripts Discussion
- Topic: black frame at the end of a rendered movie
- Replies: 6
- Views: 20210
The frame rate was indeed 25 fps when the inaccuracy occurred. I guess the frame rate is based on an NTSC standard at 29,97 fps, but I did not check that. But this is just an assumption. I have no proof of that. I did test it extensively, but it's really impossible to guarantee that all durations wi...
- January 17th, 2006, 5:05 pm
- Forum: Scripts Discussion
- Topic: black frame at the end of a rendered movie
- Replies: 6
- Views: 20210
I found this peculiar behaviour in my script. Please see code: //############################################################################### //# //# Create a new comp with length size and framerate //# //# --> crProj ;project object (=app.project) //# --> myFoot ;this is the avi or mov file for ...
- January 15th, 2006, 3:16 pm
- Forum: Scripts Discussion
- Topic: Unofficial Poll: who else is using jEdit?
- Replies: 13
- Views: 29549
- December 1st, 2005, 5:42 pm
- Forum: Scripts Discussion
- Topic: applying presets by scripting functions
- Replies: 3
- Views: 12078
Fast? It's just that today is your lucky day. It happened to be that I read the forum once in a while. Please do not forget to take a look at: http://www.aenhancers.com/viewtopic.php?t=223 That's where you should be able to find lots of background info. Especially the ApplyTFX.jsx script should be i...
- December 1st, 2005, 5:27 pm
- Forum: Scripts Discussion
- Topic: applying presets by scripting functions
- Replies: 3
- Views: 12078
Not directly. The solution I did, was converting a .ffx file into a 'readable' text file (.tfx). I wrote a script which can do that: (Please see the second post in this thread) http://www.aenhancers.com/viewtopic.php?t=293 Then I wrote a function which can parse a .tfx file and apply it to a layer. ...
- October 11th, 2005, 2:14 am
- Forum: Script requests
- Topic: Batch Interpret Footage & change comp settings
- Replies: 2
- Views: 12327
You could modify the Process Footage script: http://www.aenhancers.com/viewtopic.php?t=293 as a framework for your tasks. It does change some interpret settings, creates comps, changes their name. It's well documented, so it should be easy to understand. Because you don't need setting effect propert...
- September 27th, 2005, 5:16 pm
- Forum: General Scripts Library
- Topic: Enhance Footage (from an Adobe Premiere Project)
- Replies: 1
- Views: 17686
Utility to create a .tfx effect template file
Generator for .tfx-file This script creates a .tfx file, which is being used in the footageToFilm script. In order to use it make a project, add footage, make a comp from it and add your effect. Select the effect and run this script. //###############################################################...
- September 27th, 2005, 5:09 pm
- Forum: General Scripts Library
- Topic: Enhance Footage (from an Adobe Premiere Project)
- Replies: 1
- Views: 17686
Enhance Footage (from an Adobe Premiere Project)
What is it for? Improving the quality from a large collection of clips from the Adobe Premiere project manager by using the power of After Effects and its scripting feature. The basic idea behind this is that when working in a multicamera environment, each footage should undergo its own specific pr...
- July 20th, 2005, 12:42 pm
- Forum: Scripts Discussion
- Topic: scripting effects properties
- Replies: 15
- Views: 48820
This script offers an easy way to add any effect with properties and values to a layer. It can be done in 3 simple steps. Before doing so, make sure to add the class EffectsObj (see line 1 in example for declaration) somewhere in your code. It will provide easy methods for dealing with effects. Then...
- July 18th, 2005, 3:16 pm
- Forum: Scripts Discussion
- Topic: scripting effects properties
- Replies: 15
- Views: 48820
The following script extracts from a layer which has (only) one effect applied it's properties and values. The result will be written to a file; //############################################################################### //# Generate EffectTemplateFile script; GenerateTFX.jsx //# What it does ...
- July 18th, 2005, 7:31 am
- Forum: Scripts Discussion
- Topic: have fileGetDialog look in a set folder
- Replies: 2
- Views: 10324
- July 18th, 2005, 5:02 am
- Forum: Scripts Discussion
- Topic: scripting effects properties
- Replies: 15
- Views: 48820
I have found a solution! After trying to clearify my previous post, I kept thinking, when I came up with the idea of just performing a read, modify, write -cycle, avoiding having to create arrays with a variable sizes for each property: var data=new Array(); var the_layer = app.project.activeItem.se...
- July 17th, 2005, 7:49 pm
- Forum: Scripts Discussion
- Topic: scripting effects properties
- Replies: 15
- Views: 48820
Back On topic: I am trying to write a script that writes values and properties from an effects template file to a certain effect. In order to write the values, I need to find a uniform way to address the values from a certain effect-property. Depending on the type of the value, it can be a single va...
- June 8th, 2005, 4:10 pm
- Forum: Scripts Discussion
- Topic: scripting effects properties
- Replies: 15
- Views: 48820