I made my own Premiere panel to make a consolidated project. I use the following settings:
pmo.clipTransferOption = pmo.CLIP_TRANSFER_TRANSCODE;
pmo.clipTranscoderOption = pmo.CLIP_TRANSCODE_MATCH_SEQUENCE;
pmo.convertAECompsToClips = false;
pmo.convertSyntheticsToClips = false;
pmo.copyToPreventAlphaLoss = false;
pmo.destinationPath = outFolder.fsName;
pmo.excludeUnused = false;
pmo.handleFrameCount = 0;
pmo.includeConformedAudio = true;
pmo.includePreviews = true;
pmo.renameMedia = false;
Now this makes a folder 'Transcoded_...' and put a copy of the Premiere project in it.
it also copies the excludeUnused clips but does not transcode clips.
I also tried it with the SDK Sample Panel, but this has the same effect.
could this be a bug in the API?