Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to insert unwrapped multicam clips onto the timeline?

Community Beginner ,
Jul 24, 2024 Jul 24, 2024
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?
 

Screenshot 2024-07-24 at 6.30.44 PM.png
 
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);​

 

TOPICS
SDK
203
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 25, 2024 Jul 25, 2024

This is how multi-camera source sequences behave in the latest version of Premiere.

If you want to insert the clips from the multi-camera source sequence, you need to untick Insert or Overwrite Sequences as Nests or Individuals Clips and also click the Timeline context menu and tick Multi-Camera follows Nest Setting.

Cheers,
Paul

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jul 25, 2024 Jul 25, 2024

Thanks! I think our issue is that we want to work from the javascript SDK.  We are able to get it working fine with the buttons you mentioned; but when we use the SDK it doesnt seem to respect those options.  Any thoughts on that?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 25, 2024 Jul 25, 2024

Sorry, I'm not familiar with the SDK.

 
 
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jul 26, 2024 Jul 26, 2024
LATEST

[I've already responded to direct mail, but for those following along]

I've recommended identifying the PPro prefs that do enable the insertion correctly (when using the UI), forcibly setting them, and seeing whether that improves behavior.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines