Skip to main content
Participant
April 5, 2024
Answered

How to check if a clip in an Adobe Premiere sequence is a Black Video?

  • April 5, 2024
  • 1 reply
  • 271 views

Is there any way to discriminate a Black Video item-clip on the Adobe Premiere track via script?

Does the Black Video item have any special characteristic that distinguishes it from another video clip?

And for a Color Matte?

Thankyou so much in advance!

Joan

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

Each trackItem has a backing projectItem; projectItems for Color Matte or Black Video will not have a path.

1 reply

Bruce Bullis
Bruce BullisCorrect answer
Legend
April 10, 2024

Each trackItem has a backing projectItem; projectItems for Color Matte or Black Video will not have a path.

Participant
April 18, 2024

Great, thank you very much, Bruce. I've solved it with the code:
...
if (getRootItem.getMediaPath().length != 0) {...}
...