Skip to main content
Premiopolis
Inspiring
February 21, 2018
Answered

Is it possible for ExtendScript to determine the speed of a timeline clip?

  • February 21, 2018
  • 2 replies
  • 323 views

Is there a way to programmatically read the speed of a timeline clip?

By speed of clip, for example...

     - Edit a clip into the timeline.  By default it plays at 100%

     - Select the clip in them timeline, then change the speed via Menu > Clip > Speed/Duration... > 200%

Is there way to distinguish between the 100 / 200% states of the above clip via ExtendScript?

This topic has been closed for replies.
Correct answer Bruce Bullis

Is there way to distinguish between the 100 / 200% states of the above clip via ExtendScript?

Yes; see the usage of clip.getSpeed(), in PProPanel's selectAllRetimedClips() function:

https://github.com/Adobe-CEP/Samples/blob/e60d6a22ef44d8eb4cca3904c35a0c050576b697/PProPanel/jsx/PPRO/Premiere.jsx#L2404

 

 

2 replies

Bruce Bullis
Bruce BullisCorrect answer
Legend
June 7, 2023

Is there way to distinguish between the 100 / 200% states of the above clip via ExtendScript?

Yes; see the usage of clip.getSpeed(), in PProPanel's selectAllRetimedClips() function:

https://github.com/Adobe-CEP/Samples/blob/e60d6a22ef44d8eb4cca3904c35a0c050576b697/PProPanel/jsx/PPRO/Premiere.jsx#L2404

 

 

Participant
June 7, 2023

I am not find