Hello,
At the moment, it is possible to GET the inPoint and the outPoint of a clip located within a sequence on a video or audio track via:
getStartTime(): Promise<TickTime>
getEndTime(): Promise<TickTime>
It is also possible to GET the inPoint and outPoint of the sequence itself:
getInPoint(): Promise<TickTime>
getOutPoint(): Promise<TickTime>
However, I haven’t been able to find a way to SET the inPoint and outPoint of the sequence.
Ideally, it would be something like:
setInPoint(): Promise<TickTime>
setOutPoint(): Promise<TickTime>
Do you know if this functionality is currently available?
Or whether it’s planned for an upcoming release?
Thanks in advance!