]> git.sesse.net Git - mlt/blob - src/modules/oldfilm/filter_oldfilm.yml
Misc YAML fixes
[mlt] / src / modules / oldfilm / filter_oldfilm.yml
1 schema_version: 0.1
2 type: filter # consumer, filter, producer, or transition
3 identifier: oldfilm
4 title: Oldfilm
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: Moves the Picture up and down and random brightness change
14 icon:
15   filename: oldfilm/oldfilm.svg # relative to $MLT_DATA/modules/
16   content-type: image/svg
17
18 notes: Implementation or additional usage notes go here.
19 bugs: # this can be just for documentation, or the tool may disclose it to help user avoid pitfalls
20   - need to do some speed improvement.
21
22 parameters:
23   - identifier: delta
24     title: Y-Delta
25     type: integer
26     description: Maximum delta value of Up/Down move
27     readonly: no
28     required: yes
29     minimum: 0
30     maximum: 400
31     default: 14
32     mutable: no
33     widget: spinner
34     unit: pixel
35
36   - identifier: every
37     title: "% of picture have a delta"
38     type: integer
39     description: n'th % have a Y-Delta in picture
40     readonly: no
41     required: yes
42     minimum: 0
43     maximum: 100
44     default: 20
45     mutable: no
46     widget: spinner
47     unit: "%"
48
49   - identifier: brightnessdelta_up
50     title: Brightness up
51     type: integer
52     description: Makes image n values lighter
53     readonly: no
54     required: yes
55     minimum: 0
56     maximum: 100
57     default: 20
58     mutable: no
59     widget: spinner
60
61   - identifier: brightnessdelta_down
62     title: Brightness down
63     type: integer
64     description: Makes image n values darker
65     readonly: no
66     required: yes
67     minimum: 0
68     maximum: 100
69     default: 30
70     mutable: no
71     widget: spinner
72
73   - identifier: brightnessdelta_every
74     title: Brightness every
75     type: integer
76     description: Change value only for n/100
77     readonly: no
78     required: yes
79     minimum: 0
80     maximum: 100
81     default: 70
82     mutable: no
83     widget: spinner
84     unit: "%"
85
86   - identifier: unevendevelop_up
87     title: Unevendevelop up
88     type: integer
89     description: Makes image n values lighter
90     readonly: no
91     required: yes
92     minimum: 0
93     maximum: 100
94     default: 60
95     mutable: no
96     widget: spinner
97
98   - identifier: unevendevelop_down
99     title: Unevendevelop down
100     type: integer
101     description: Makes image n values darker
102     readonly: no
103     required: yes
104     minimum: 0
105     maximum: 100
106     default: 20
107     mutable: no
108     widget: spinner
109
110   - identifier: unevendevelop_duration
111     title: Unevendevelop Duration
112     type: integer
113     description: Time (in frames) of a up/down cycle
114     readonly: no
115     required: yes
116     minimum: 0
117     maximum: 10000
118     default: 70
119     mutable: no
120     widget: spinner
121     unit: "%"