Hi
I'm trying to port a Compiler plugin (that was targeted for CS3) to the new Exporter interface..
Previously, @startup i described my plugin by setting compInfoRec->compilesVideo and compilesAudio to false (since my plugin only produces statistics)..
Now, as first porting step, i want to obtain an Exporter implementation "that does nothing", and later implement the parametrization and the actual export.
By providing
- exExporterInfoRec->canExportVideo and canExportAudio to false @startup,
- mock strings on query extension and on query summaries
- mock bitrate on query output setting
The plugin simply crashes the Media Encoder without any apparent reason
By providing also "some parameters" (by copying & pasting some portions of onGenerateDefaultParams and onPostProcessParams from the SDK File example) i'm able to reach the encoder setting dialog
(withou preview, because video is disabled and with those useless params)
but when i start the queue the Media Encoder fails immediately by marking the task with the yellow warning flag,
and the debugger never reached the onExport handler
So my question is:
- is allowed to have an exporter that does not export video and nor audio??
- Are there other requirement that any exporter must satisfy??
Thank you very mutch for your attention