Effects
Effect
Bases: Protocol[ClipType]
A protocol for clip effects.
Note
This is a runtime checkable protocol, which means isinstance()
and
issubclass()
checks can be performed against it.
VideoEffect
module-attribute
VideoEffect = (
ZoomInEffect
| ZoomOutEffect
| PanLeftEffect
| PanRightEffect
| PanUpEffect
| PanDownEffect
)
A type representing any video effect.
VideoEffectType
module-attribute
VideoEffectType = Literal[
"zoom_in",
"zoom_out",
"pan_left",
"pan_right",
"pan_up",
"pan_down",
]
A type representing the type of a video effect.