freqs ¶
Functions:
-
frequency_merge
–Merges the frequency components of the input clips.
frequency_merge ¶
frequency_merge(
*_clips: VideoNode | Iterable[VideoNode],
mode_high: MeanMode | VideoNode = LEHMER,
mode_low: MeanMode | VideoNode = ARITHMETIC,
lowpass: GenericVSFunction | list[GenericVSFunction] = denoise,
planes: PlanesT = None,
**kwargs: Any
) -> VideoNode
Merges the frequency components of the input clips.
Parameters:
-
_clips
¶VideoNode | Iterable[VideoNode]
, default:()
) –The clips to merge.
-
mode_high
¶MeanMode | VideoNode
, default:LEHMER
) –The mean mode to use for the high frequency components or specifying the clip with the high frequency components.
-
mode_low
¶MeanMode | VideoNode
, default:ARITHMETIC
) –The mean mode to use for the low frequency components or specifying the clip with the low frequency components.
-
lowpass
¶GenericVSFunction | list[GenericVSFunction]
, default:denoise
) –The lowpass filter to used to extract high frequency components. Example:
lowpass = lambda i: vsrgtools.box_blur(i, passes=3)
-
planes
¶PlanesT
, default:None
) –The planes to process. If None, all planes will be processed.
Source code
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|