General workflow Ideas #3
Replies: 4 comments
-
Embedded Python Interpreter
The biggest question here, is how to add an actual PyPi library to control this functionality from OUTSIDE of AE. |
Beta Was this translation helpful? Give feedback.
-
General R/D flow (Current Iteration)
The Module is loaded upon plugin load, and everything is accessible as an internal python scripting environment. You can write external scripts and run them using file->scripts->run script (.py), and I aim to add functionality to integrate this into CEP and eventually UXP extensions as well. (Actually, being able to use gradio or something instead of html and doing this all in python might be cool, but my focus is going to be on the library right now).
|
Beta Was this translation helpful? Give feedback.
-
If possible ( it is, just a matter of figuring out how), setting this up so no new extension has to be added to AE. If people could simply pip install, or add a file or two to an extension, this would make usage that much better. This will take a significant amount of reverse engineering. |
Beta Was this translation helpful? Give feedback.
-
Scripting SetupGeneral Steps are as follows; Populate App Data->Populate Project Data (Shows us layers, active items, etc, which also gives access to those items' properties and methods)->Access whatever you want -> manipulate with python -> return for finalization |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I want to write almost everything with the same naming conventions as extendscript to reduce learning curves.
Of course, this would be enhanced with added functionality such as the (fromLayer) method on an "AEImage" Object.
Simple example on the python side;
.aex file deals with the commands, in part like so;
User writes and runs .py code->pylib interacts with .aex->.aex performs actions->.aex returns result
Beta Was this translation helpful? Give feedback.
All reactions