Premiere Pro SDK Importer for still frame sequence
I have (mostly successfully) created an exporter which exports movie clips as still sequences, based on the SDK_Exporter example.
I am now trying to modify the SDK_File_Import example to reimport these still sequences as a movie clip, in much the same way as for DPX or PNG still frame sequence.
However, the documentation doesn't provide any clues on how to do this.I've set the following fields in imFileInfoRec8 on receiving imGetInfo8:
vidInfo.isStill = kPrTrue
vidInfo.noDuration = imNoDurationStillDefaultbut in AME, while each individual frame's thumbnail shows with my decoding, if I "import to queue", all I get is that single frame in the clip window and not the sequence.
Similarly, when I do File->Add Source, the sequence checkbox is greyed out with "Sequence not available"
When I receive imGetSourceVideo, the imSourceVideoRec.inFrameTime is always 0.
Some insight on how a still sequence importer is supposed to work would be greatly appreciated.