Copiar link para a área de transferência
Copiado
Is it possible to use an Extendscript script in Premiere Pro to change the speed of a clip? If so, can you provide an example on how this would be done? I suspected that it would be somewhere in clips.components, but that only seems to contain opacity and motion values.
1 resposta correta
While a panel can get clip speed, and detect whether a given clip is reversed, there's no supported API today for changing clip speed.
What's the entire workflow, which you'd like to support?
Copiar link para a área de transferência
Copiado
While a panel can get clip speed, and detect whether a given clip is reversed, there's no supported API today for changing clip speed.
What's the entire workflow, which you'd like to support?
Copiar link para a área de transferência
Copiado
I'm trying to create a shortcut key that turns on/off backward playback of the selected TrackItem.
(Because there is no corresponding option in 'Command' in keyboard shortcut settings)
function ReverseTrackItem(trackItem) {
var orgStart = trackItem.start; // if 10
var orgEnd = trackItem.end; // if 20
// Reverse ?
trackItem.start = orgEnd; // result 20
trackItem.end = orgStart; // result 20
}
I tried this, but it doesn't work as expected.
If there isn't an API yet, is there another way that doesn't go through the API?

