Skip to main content
Inspiring
January 13, 2020
Answered

Consolidate project. Encoder failure

  • January 13, 2020
  • 1 reply
  • 963 views

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.

Correct answer валентинн56872111

The problem was that the options includePreviews and includeConformedAudio needed to be set in true, when clipTransferOption is CLIP_TRANSFER_TRANSCODE.

1 reply

валентинн56872111AuthorCorrect answer
Inspiring
January 13, 2020

The problem was that the options includePreviews and includeConformedAudio needed to be set in true, when clipTransferOption is CLIP_TRANSFER_TRANSCODE.

Participating Frequently
June 3, 2025

Does this still work on your side? When I use 'CLIP_TRANSFER_COPY' it works fine, but with 'CLIP_TRANSFER_TRANSCODE' I only get a copy of the project.