Footage Interpretation frame rate 23.9760 vs 23.98
Hi,
If I change the footage interpretation frame rate (with setFootageInterpretation()) of an item to 23.9760, Premiere Pro shows 23.98. Is there a way to avoid the rounding the value?
Chris
Hi,
If I change the footage interpretation frame rate (with setFootageInterpretation()) of an item to 23.9760, Premiere Pro shows 23.98. Is there a way to avoid the rounding the value?
Chris
> ... with the script, it always rounded to 23.98.
That's not the behavior I see, with this; what are we doing differently?
// new project, import just one piece of valid media, then run the following from ESTK:
var currentItem = app.project.rootItem.children[0];
var interp = currentItem.getFootageInterpretation();
if (interp) {
alert("Original frameRate = " + interp.frameRate + " FPS.");
interp.frameRate = 23.976;
currentItem.setFootageInterpretation(interp);
var safetyInterp = currentItem.getFootageInterpretation();
alert("Retrieved frameRate = " + safetyInterp.frameRate + " FPS.");
}
Here's a screencast.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.