• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Is it possible to stop AME render?

Participant ,
Jan 05, 2017 Jan 05, 2017

Copy link to clipboard

Copied

Hi All,


Is there any way to stop AME render through Premier Pro API? I couldn't find such method in the encoder object: "app.encoder".

Premier Pro Version: 11.0.1
Extension Type: Panel


Thanks,
Meet

TOPICS
SDK

Views

554

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Jan 06, 2017 Jan 06, 2017

Not from within PPro's scripting DOM, but you could use BridgeTalk, to invoke that function within AME.

var bt  = new BridgeTalk();

bt.target = 'ame';

bt.body   = 'var host = app.getEncoderHost();if (host){host.stopBatch();}';

bt.send();

Votes

Translate

Translate
Adobe Employee ,
Jan 06, 2017 Jan 06, 2017

Copy link to clipboard

Copied

Not from within PPro's scripting DOM, but you could use BridgeTalk, to invoke that function within AME.

var bt  = new BridgeTalk();

bt.target = 'ame';

bt.body   = 'var host = app.getEncoderHost();if (host){host.stopBatch();}';

bt.send();

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Jan 10, 2017 Jan 10, 2017

Copy link to clipboard

Copied

LATEST

Thank you Bruce. This is very useful.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines