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

how could I make Premiere Pro send frame in order of increasing time to an effect plug-in

New Here ,
Feb 22, 2024 Feb 22, 2024

I want to create a plugin that achieves a motion blur effect, which requires consecutive frames over time to implement the blur. However, Premiere Pro passes frame data via multiple threads, and it cannot guarantee that the frames received by the plugin are in a time-incremental sequence.

TOPICS
SDK
293
Translate
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 2 Correct answers

Adobe Employee , Feb 22, 2024 Feb 22, 2024

Assuming you're writing an After Effects API Effect plug-in, you would "check out" the input parameter (source layer) at different times. See the "Checkout" sample, in the AE plugin SDK.

Translate
Adobe Employee , Feb 26, 2024 Feb 26, 2024

> How can I ensure that the PF_Cmd_RENDER method delivers frame data in a time-sequential manner?

 

You cannot. 

 

If you need input frames from times other than your effect is being asked to render, access them via parameter checkout. 

If you need input frames with other effects/transformations already applied, the user will need to nest sequences. 



Translate
Adobe Employee ,
Feb 22, 2024 Feb 22, 2024

Assuming you're writing an After Effects API Effect plug-in, you would "check out" the input parameter (source layer) at different times. See the "Checkout" sample, in the AE plugin SDK.

Translate
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
New Here ,
Feb 25, 2024 Feb 25, 2024

Thanks for your answer. But My plugin has an off-screen renderer to which I send input frames through the PF_Cmd_RENDER method, and I need to continuously push frames in time-increasing order to achieve certain transition effects. How can I ensure that the PF_Cmd_RENDER method delivers frame data in a time-sequential manner?

Translate
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
Adobe Employee ,
Feb 26, 2024 Feb 26, 2024

> How can I ensure that the PF_Cmd_RENDER method delivers frame data in a time-sequential manner?

 

You cannot. 

 

If you need input frames from times other than your effect is being asked to render, access them via parameter checkout. 

If you need input frames with other effects/transformations already applied, the user will need to nest sequences. 



Translate
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
New Here ,
Feb 26, 2024 Feb 26, 2024
LATEST

OK, I got it, thankyou so much.

Translate
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