fade ¶
Functions:
-
crossfade
– -
fade
– -
fade_freeze
– -
fade_in
– -
fade_in_freeze
– -
fade_out
– -
fade_out_freeze
– -
fade_ranges
–
crossfade ¶
crossfade(
clipa: VideoNode,
clipb: VideoNode,
function: EasingT,
debug: bool | int | tuple[int, int] = False,
) -> VideoNode
Source code in vstransitions/fade.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
|
fade ¶
fade(
clipa: VideoNode,
clipb: VideoNode,
invert: bool,
start: int,
end: int,
function: EasingT = Linear,
) -> VideoNode
Source code in vstransitions/fade.py
19 20 21 22 23 24 25 26 27 |
|
fade_freeze ¶
fade_freeze(
clipa: VideoNode,
clipb: VideoNode,
invert: bool,
start: int,
end: int,
function: EasingT = Linear,
) -> VideoNode
Source code in vstransitions/fade.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|
fade_in ¶
Source code in vstransitions/fade.py
47 48 |
|
fade_in_freeze ¶
Source code in vstransitions/fade.py
55 56 |
|
fade_out ¶
Source code in vstransitions/fade.py
51 52 |
|
fade_out_freeze ¶
Source code in vstransitions/fade.py
59 60 |
|
fade_ranges ¶
fade_ranges(
clip_a: VideoNode,
clip_b: VideoNode,
ranges: FrameRangeN | FrameRangesN,
fade_length: int = 5,
ease_func: EasingT = Linear,
) -> VideoNode
Source code in vstransitions/fade.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|