Question
How to insert unwrapped multicam clips onto the timeline?
I am attempting to use the javascript SDK to insert a sequence that contains multicams onto the timeline. I want it to be "unnested", in other words not wrapped up in a sequence but rather as individual clips. When I run my code below, it inserts the sequence with the multicam wrapped within it. Is there a way to fix this?

I have code that looks like the following ( modelled after the PPRoPanel plugin )
var seq = app.project.activeSequence;
var vTrack1 = seq.videoTracks[0];
projectItem.setInPoint(instance.start, AUDIO_AND_VIDEO);
projectItem.setOutPoint(instance.end, AUDIO_AND_VIDEO);
vTrack1.overwriteClip(projectItem, now.seconds);
