Copy link to clipboard
Copied
Hi folks
I'm getting an error running exportCurrentFrameAsPNG function in the sample ppro panel.
It's complaining about an illegal parameter type.
I'm also having issues using
I'm on mac premiere 2025.
1 Correct answer
I'd check each param to ensure it's not null at that point in time, but my best guess just by looking at it is that you need the .fsName of each of the paths, not the file object. More info in the docs: https://ppro-scripting.docsforadobe.dev/general/encoder.html#encoder-encodesequence
1 Pinned Reply
Thanks for the post and welcome to the forum. Perhaps one our Adobe experts like @Justin Taylor-Hyper Brew can assist with this issue. I hope we can help you shortly. Sorry for the hassle.
Cheers,
Kevin
Copy link to clipboard
Copied
Thanks for the post and welcome to the forum. Perhaps one our Adobe experts like @Justin Taylor-Hyper Brew can assist with this issue. I hope we can help you shortly. Sorry for the hassle.
Cheers,
Kevin
Copy link to clipboard
Copied
I'd check each param to ensure it's not null at that point in time, but my best guess just by looking at it is that you need the .fsName of each of the paths, not the file object. More info in the docs: https://ppro-scripting.docsforadobe.dev/general/encoder.html#encoder-encodesequence
Copy link to clipboard
Copied
Hey Justin,
Thanks for the reply. I figured it out with your help, presetPath was undefined, it's a property of the function
exportCurrentFrameAsPNG : function (presetPath)
But in the panel, no preset is passed into it.
exportFramesForMarkers : function () {
var activeSequence = app.project.activeSequence;
if (activeSequence) {
var markers = activeSequence.markers;
var markerCount = markers.numMarkers;
if (markerCount) {
var firstMarker = markers.getFirstMarker();
if (firstMarker){
var previousMarker;
activeSequence.setPlayerPosition(firstMarker.start.ticks);
$._PPP_.exportCurrentFrameAsPNG();
var currentMarker;
for (var i = 0; i < markerCount; i++) {
if (i === 0) {
currentMarker = markers.getNextMarker(firstMarker);
} else {
currentMarker = markers.getNextMarker(previousMarker);
}
if (currentMarker) {
activeSequence.setPlayerPosition(currentMarker.start.ticks);
previousMarker = currentMarker;
$._PPP_.exportCurrentFrameAsPNG();
}
}
}
} else {
$._PPP_.updateEventPanel("No markers applied to " + activeSequence.name + ".");
}
} else {
$._PPP_.updateEventPanel("No active sequence.");
}
},
I exported a png preset from media encoder, hard coded that, and it worked as expected.
Copy link to clipboard
Copied
In the sample panel you're testing with it is, it's just in exportCurrentFrameAsPNG() not in exportFramesForMarkers()
You need to make an EPR preset file with Media Encoder and ship it with your panel
Copy link to clipboard
Copied
Understood, thanks mate. I have the QE function exportFramePNG() working, but this would be a nice fallback in case the QE function gets changed, or goes away.
Copy link to clipboard
Copied
That QE DOM function is not synchronous FYI so if you need to export an image and then do something with it like upload / copy it somewhere else, make sure to wait until it's written to disk first, otherwise you may run into errors.
Copy link to clipboard
Copied
Thanks for the update!
Copy link to clipboard
Copied
> it's a property of the function...exportCurrentFrameAsPNG : function (presetPath)
> But in the panel, no preset is passed into it.
Not true!
https://github.com/Adobe-CEP/Samples/blob/9efca02ea88ad32a8c22571f5ffe2407ae732cd8/PProPanel/index.h...
Copy link to clipboard
Copied
Hi Bruce,
Oh I see, that's how it gets passed in.
However, for some reason, this doesn't work for me, using the PProPanel on my mac.
PresetPath is undefined.
Copy link to clipboard
Copied
Hi, Imkindofabigdeal,
What are you passing for the parameter, presetPath? All of the other paraemeters appear to be defined
(I keep a file named "test.epr" on my desktop within easy reach, just for such occasions.)
Also, life hack: you could set breakpoints in your code, before calling that function, so you can check which param(s) might be invalid.
I hope this helps,
Dan
Also, thanks Kevin and Justin for weighing in, you guys are great.
Copy link to clipboard
Copied
Hey Dan,
I was initially just trying out the PProPanel and got the error, not sure why presetPath was not populated for me. I have the QE exportFramePNG() working in my own panel, but I wanted to test this non-qe method as a fallback.
Now that I understand what was missing, and that I need an epr file, I should be good to go
Copy link to clipboard
Copied
Also, if anyone is still listening; Adobe Premiere Pro scripting is moving from CEP to UXP
See documentation here: https://developer.adobe.com/premiere-pro/uxp/
and samples here: https://github.com/AdobeDocs/uxp-premiere-pro-samples
Copy link to clipboard
Copied
Thanks Dan
I will start reading up on how to port my extensions over to UXP

