Consolidate project. Encoder failure
Hi! I got the error "Encoder failure" when I tryied consolidate sequence. Perhaps this solution useful to someone. Premiere persistently gave me a mistake "Encoder failure". He did not give any description of why the error occurred. First I used the next options for projectManager.
pmo.clipTranscoderOption = pmo.CLIP_TRANSCODE_MATCH_SEQUENCE;
pmo.clipTransferOption = pmo.CLIP_TRANSFER_TRANSCODE;
pmo.handleFrameCount = -1;
pmo.convertSyntheticsToClips = false;
pmo.convertAECompsToClips = false;
pmo.copyToPreventAlphaLoss = false;
pmo.includeConformedAudio = false;
pmo.includePreviews = false;
pmo.excludeUnused = false;
pmo.renameMedia = false;
pmo.includeAllSequences = false;
pmo.affectedSequences = [sequence];
pmo.destinationPath = consolidatedResoucesPath;
The problem was that the options includePreviews and includeConformedAudio needed to be set in true, when clipTransferOption is CLIP_TRANSFER_TRANSCODE.
