AEIO_ModuleInfo¶
This is the structure where your AEIO will define its basic properties.
Notice that, in addition to describing the filetypes and extensions supported by your AEIO, you also describe your signature and behavior using the AEIO_ModuleFlags. We love flags.
AEIO_ModuleInfo Members¶
Member |
Purpose |
---|---|
|
A long, uniquely identifying your plug-in. Many developers prefer to use a decidedly Mac-ish four character code here. Please let us know what sig you're using. |
|
Descriptive name for your AEIO plug-in. |
|
Set of |
|
Set of |
|
The maximum dimensions supported by your format. |
|
The number of filetypes supported by your AEIO. |
|
The number of file extensions supported by your AEIO. |
|
The number of clipboard formats supported by your AEIO. |
|
The macOS four character code for files created by your AEIO. |
|
The file extension for files created by your AEIO. |
|
This array of 16 |
|
The number of auxiliary extensions supported by your AEIO. Say, for example, that you're writing an AEIO to import information from a 3D program that saves scene information into a .123 file, and camera information into a .xyz file. The .xyz would be an auxiliary extension; it's not necessary to get the rest of the scene information, but it's associated with the .123 files. |
|
The file extension of the auxiliary filetype(s) supported by your AEIO. |
Behavior Flags¶
AEIOs set these flags (like effect plug-ins use global outflags) in AEIO_ModuleInfo.flags to indicate their behavior to After Effects. Some flags are only relevant to input, and some are only relevant to output.
AEIO_ModuleFlags¶
Flag |
Purpose |
I or O? |
---|---|---|
|
AEIO is an input module. |
Input! |
|
AEIO is an output module (one plug-in can be both). |
Output! |
|
Each clip imported directly corresponds to a file, somewhere. |
Both |
|
Supports still images, not video. |
Output |
|
Supports video images, not stills. |
Output |
|
Supports audio. |
Output |
|
Time information isn't part of the file format. This would be the case with numbered stills, with individual frames imported based on the composition's time settings. |
Input |
|
A new input sequence necessitates user interaction. This would be the case for a non-file-based input module. |
Input |
|
A new output sequence necessitates user interaction. This would be the case for a non-file-based output module. |
Output |
|
The AEIO's drawing functions cannot accept dimensions smaller than the requested dimensions. |
Input |
|
The AEIO must display a dialog box, even if a valid options data handle is available. |
Output |
|
The AEIO requires that all video data be processed, then sound data (instead of interleaving the processing the video and audio). |
Output |
|
The AEIO supports adding non-sequential frames. |
Output |
|
The AEIO wants After Effects to display a bit-depth selection dialog. |
Input |
|
The AEIO wants After Effects to display a dialog requesting that the user specify a starting frame. |
Input |
|
The AEIO does not accept output options. |
Output |
|
The AEIO's file format doesn't actually store pixels. Currently unused as of CS6. |
(unused) |
|
The AEIO will adopt the sequence options of its parent if a folder is selected. |
Input |
|
The AEIO has user options associated with each input sequence. Note The options information must be flat (not referring to any data contained in external pointers or handles). |
Input |
|
The AEIO will provide horizontal scaling factor (pixel aspect ratio) information for each new sequence. This prevents After Effects from guessing. |
Input |
|
The AEIO supports multiple layers in a single document. |
Input |
|
The AEIO has a clipboard parsing component. |
Input |
|
After Effects should display no UI for this module (do not combine this flag with |
Input |
|
The AEIO has sequence options accessible from the More Options button in the Interpret Footage dialog. |
Input |
|
The file format supported by the AEIO has depth information, normals, or some other non-color information related to each pixel. |
Input |
|
The file format supported by the AEIO supports user-definable metadata. If this flag is set, the embed pop-up in the output module dialog will be enabled. |
Output |
|
The file format support by the AEIO supports markers, url flips, and/or chapters. |
Output |
|
The AEIO can draw into 16bpc ("deep") |
Input |
|
Special super-secret flag. Doesn't do anything...or does it? (No, it doesn't.) |
??? |
AEIO_ModuleFlags2¶
Gotta have dem flags...
Flag | Purpose | I or O? |
---|---|---|
AEIO_MFlag2_AUDIO_OPTIONS |
The AEIO has an audio options dialog. | Output |
AEIO_MFlag2_SEND_ADDMARKER_BEFORE_ADDFRAME |
The AEIO wants to receive marker data before outputting video or audio (useful for MPEG streams). | Output |
AEIO_MFlag2_CAN_DO_MARKERS_2 |
The AEIO supports combined markers; URL flips, chapters, and comments. | Output |
AEIO_MFlag2_CAN_DRAW_FLOAT |
The AEIO can draw into float (32-bpc) worlds. | Input |
AEIO_MFlag2_CAN_DO_AUDIO_32 |
Supports 32-bit audio output. | Output |
AEIO_MFlag2_SUPPORTS_ICC_PROFILES |
Supports ICC profiles. | Both |
AEIO_MFlag2_CAN_DO_MARKERS_3 |
The AEIO supports combined markers; URL flips, chapters, comments, and cue points. | Output |
AEIO_MFlag2_SEND_ADDMARKER_BEFORE_STARTADDING |
The AEIO wants to process markers before video during export. | Output |
AEIO_MFlag2_USES_QUICKTIME |
On MacOS, prior to the host calling AEIO_AddFrame or AEIO_OutputFrame from AEIO_FunctionBlock4, it will lock the global QuickTime mutex. |
Output |