Skip to main content
Participant
December 6, 2024
Answered

How to develop a minimum exporter plug-in?

  • December 6, 2024
  • 1 reply
  • 150 views

I am using the Premiere Pro C++ SDK to develop an exporter plug-in. It is recommended that I base my development on a copy of the sample SDK_Exporter plug-in. But that plug-in seems beefy and it confuses me. What would a minimum hello world exporter plug-in look like? I guess it would just ouput a hello.txt with hello world in it.

 

Related question: which selector "callbacks" are required? SDK_Exporter uses 11 or 12 of them but I am wondering which ones are required.

This topic has been closed for replies.
Correct answer Bruce Bullis

>which selector "callbacks" are required?


That will depend on what you want your exporter to do...? 

I'd recommend setting breakpoints in all of SDK_Exporter's responses to PPro command selectors, to see whether you think they're relevant to your purposes.


1 reply

Bruce Bullis
Community Manager
Bruce BullisCommunity ManagerCorrect answer
Community Manager
December 6, 2024

>which selector "callbacks" are required?


That will depend on what you want your exporter to do...? 

I'd recommend setting breakpoints in all of SDK_Exporter's responses to PPro command selectors, to see whether you think they're relevant to your purposes.