]> git.sesse.net Git - mlt/blob - src/modules/opengl/filter_movit_glow.yml
Let Movit effects supply their own fingerprint.
[mlt] / src / modules / opengl / filter_movit_glow.yml
1 schema_version: 0.1
2 type: filter
3 identifier: movit.glow
4 title: Glow (GLSL)
5 version: 1
6 copyright: Dan Dennedy
7 creator: Steinar H. Gunderson
8 license: GPLv2
9 language: en
10 tags:
11   - Video
12 description: >
13   Cut out the highlights of the image (everything above a certain threshold),
14   blur them, and overlay them onto the original image.
15
16 parameters:
17   - identifier: radius
18     title: Radius
19     type: float
20     minimum: 0.0
21     default: 20.0
22     mutable: yes
23
24   - identifier: blur_mix
25     title: Highlight Blurriness
26     type: float
27     minimum: 0.0
28     maximum: 1.0
29     default: 1.0
30     mutable: yes
31
32   - identifier: highlight_cutoff
33     title: Highlight Cutoff Threshold
34     type: float
35     minimum: 0.0
36     maximum: 1.0
37     default: 0.2
38     mutable: yes