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

jsx: Markers - end time and duration

New Here ,
Apr 20, 2022 Apr 20, 2022

Copy link to clipboard

Copied

Hello all,

I am making an extension panel to Adobe Premiere Pro and trying to insert markers programatically. However I wonder if I understand correctly the correlation between end and duration for a marker. The markers get created and the data is there, but duration is set to 0. I am expecting the duration of the marker to be marker.end - marker.start. Even if I insert markers from the PProPanel where end is set to a value, duration of the inserted markers is still 0. From the PProPanel examples I am using:

 

 

 

var tempTime = new Time(); // Use a local time object to take care of all the tick math

var newCommentMarker = markers.createMarker(12.345);
newCommentMarker.name = 'Marker created by PProPanel.';
newCommentMarker.comments = 'Here are some comments, inserted by PProPanel.';
tempTime.seconds = 15.6789;
newCommentMarker.end.ticks = tempTime.ticks;

 

Thank you in advance

TOPICS
SDK

Views

82

Translate

Translate

Report

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 ,
Apr 20, 2022 Apr 20, 2022

Copy link to clipboard

Copied

After you execute [above], what are the start and end values, for newCommentMarker?

Votes

Translate

Translate

Report

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
New Here ,
Apr 20, 2022 Apr 20, 2022

Copy link to clipboard

Copied

LATEST

They are both "12.345". Should they not be different due to 

tempTime.seconds = 15.6789;

I am just showing them like this:

alert('' + newCommentMarker.start.seconds + '');
alert('' + newCommentMarker.end.seconds + '');

 

Votes

Translate

Translate

Report

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