Export frame from Source Monitor via Timeline
I need to export a frame from Source monitor, since I don't have a direct Source Monitor API for doing so, I use the Sequence API this way:
- I select a frame in the Souce Monitor using the time indicator.
- I add the media to a new sequence
- I set the sequence time indicator like this:
seq.setPlayerPosition(app.sourceMonitor.getPosition().ticks)
- I export the frame in Timeline:
activeSequence.exportFrameJPEG(timecode, outPath)
My issue is that I get one frame back relative to my selection in Source Monitor.
Any suggestions how can I get through it?