Skip to main content
Participant
August 7, 2021
Question

Change timebase, Working color and Preview File Format

  • August 7, 2021
  • 1 reply
  • 213 views

Hi,

Is it possible to change via script this parameters?

Timebase -> to 25fps

Working Space Color -> to 709

Preview File Format -> to I-Frame Only MPEG

 

I've found this script but it doesn't work on Premiere v15

 

var seq = app.project.activeSequence;

if (seq){

var settings = seq.getSettings();

if (settings){

var tempFR = settings.videoFrameRate;

tempFR.seconds = 0.04;

settings.videoFrameRate = tempFR;

settings.videoDisplayFormat = 101;

seq.setSettings(settings);

var safetyCheck = seq.getSettings();

}

}

 

Link where I found the code.

https://community.adobe.com/t5/premiere-pro/change-frame-rate-of-a-sequence/m-p/10289545

 

Thankyou

This topic has been closed for replies.

1 reply

Bruce Bullis
Legend
August 9, 2021

> I've found this script but it doesn't work on Premiere v15

 

Which one? There have been 5 different PPro 15.x versions released...

We fixed at least some problems with setSettings(), in 15.4. 

There remains a known issue about the UI not updating, in response to such changes: DVAPR-4217133.

Participant
August 9, 2021

Thanks Bruce. As soon as I can update to 15.4 version I'll check the code.