Get the in and out points in ppro for remapped clips
I have a clip that has some time remapping on it, once I do double click on the clip it opens the clip in the source panel and I can see the in and out points, if I playback the video in the source it will also show the time remapping
now if I get from the trackItem.inPoint and outPoint and import the code into another sequence:
projectItem.clearInPoint();
projectItem.clearOutPoint();
projectItem.setInPoint(clipData.inPoint, 4);
projectItem.setOutPoint(clipData.outPoint, 4);
targetVideoTrack.overwriteClip(projectItem, insertTime);
it will import the clip without time remapping ( i dont need it anyway), but it will trim the duration of the clip to match exactly in and out pounts, but how to get the whole duration of the part of footage that was originally used?
