(UXP) Get filepath of a VideoClipTrackItem?

Hello everyone! :slight_smile:

Do you know if there is another possibility to get the file path of a VideoClipTrackItem object?

I don’t see an object method that seems to do that. :sweat_smile:

Thanks a lot!

Found it!

const projectItem = await videoClipTrackItem.getProjectItem();
const clipProjectItem = await ppro.ClipProjectItem.cast(projectItem);
const mediaFilepath = await clipProjectItem.getMediaFilePath())