Hi folks, I work on a Mac and I used Apple Script to create a script that works basically using the Premiere hot keys to go to the next marker then another hot key to export the still. So I’m sure something similar could be done on a PC.
The script looks like this, just update how many times you want to repeat to go for roughly based on the number of markers you have. It’ll save to the last location you saved a still from your programme window to.
Paste this into the Apple Script Editor:
activate application “Adobe Premiere Pro CC 2018”
repeat 5 times
tell application “System Events” to keystroke “m” using shift down
delay (random number from 0.5 to 2)
tell application “System Events” to keystroke “e” using shift down
delay (random number from 0.5 to 1)
tell application “System Events” to key code 36
delay (random number from 0.5 to 2)
end repeat
I’m not a coder at all but it works a charm. Best M