Currently I'm developing an extension for Premiere Pro
that should use .exe
file to make things happen.
The main algorithm is written in python
and works with actual video files
: reads them frame by frame, processes the information in pixel level... I'm thinking of making an executable from it and call it from extendscript
to make things happen...
Is this the right way to go ? Or should I consider other technics like writing a plugin using the PPro SDK
and call it from extendscript ? Is it possibe to access the actual video-files, read them, get pixel values with SDK ?
Thanks.