]> git.sesse.net Git - mlt/blob - src/modules/oldfilm/filter_vignette.yml
Move rotoscoping filter into plusgpl module.
[mlt] / src / modules / oldfilm / filter_vignette.yml
1 schema_version: 0.1
2 type: filter # consumer, filter, producer, or transition
3 identifier: vignette
4 title: Vignette Effect
5 version: 0.2.5
6 copyright: Copyright (C) 2008 Marco Gittler
7 license: GPL
8 language: en
9 url: none
10 creator: Marco Gittler
11 tags:
12   - Video # this may produce video
13 description: >
14   Vignette around a point with adjustable smooth, radius, position
15   and transparency
16 icon:
17   filename: oldfilm/vignette.svg # relative to $MLT_DATA/modules/
18   content-type: image/svg
19
20 notes: Implementation or additional usage notes go here.
21 bugs: # this can be just for documentation, or the tool may disclose it to help user avoid pitfalls
22   - need to do some speed improvement.
23
24 parameters:
25   - identifier: smooth
26     title: Feathering
27     type: float
28     readonly: no
29     required: yes
30     mutable: no
31     minimum: 0.0
32     maximum: 1.0
33     default: 0.8
34
35   - identifier: radius
36     title: Radius
37     type: float
38     readonly: no
39     required: yes
40     mutable: no
41     minimum: 0.0
42     maximum: 1.0
43     default: 0.5
44
45   - identifier: x
46     title: X Position
47     type: float
48     readonly: no
49     required: yes
50     mutable: no
51     minimum: 0.0
52     maximum: 1.0
53     default: 0.5
54
55   - identifier: y
56     title: Y Position
57     type: float
58     readonly: no
59     required: yes
60     mutable: no
61     minimum: 0.0
62     maximum: 1.0
63     default: 0.5
64
65   - identifier: opacity
66     title: Opacity
67     type: float
68     readonly: no
69     required: yes
70     mutable: no
71     minimum: 0.0
72     maximum: 1.0
73     default: 0.0
74   - identifier: mode
75     title: Mode
76     type: integer
77     description:  Use linear (0) or cosinus (1) mode to fade from opac to black
78     readonly: no
79     required: yes
80     mutable: no
81     minimum: 0
82     maximum: 1
83     default: 0
84     widget: checkbox