]> git.sesse.net Git - mlt/blob - src/modules/plus/filter_rgblut.yml
Change expression half-comma to semicolon and fix typos
[mlt] / src / modules / plus / filter_rgblut.yml
1 schema_version: 0.1
2 type: filter
3 identifier: rgblut
4 title: RGBLUT
5 version: 1
6 copyright: Janne Liljeblad
7 creator: Janne Liljeblad
8 license: LGPLv2.1
9 language: en
10 tags:
11   - Video
12 description:
13   Converts input strings with exactly 256 half-comma separated integer values in 
14   range 0 - 255 to look-up tables that are then used to modify R, G, B values. 
15   
16   This creates a generic string interface for color correction.
17
18 parameters:
19   - identifier: R_table
20     title: Red channel look-up table
21     type: string
22     default: unset
23     description: >
24       Value is tokenised using semicolon separator into exactly 256 integer 
25       values in range 0 - 255 and a look-up table for red channel values is 
26       created and applied to image. If tokenising of value fails a linear table 
27       that returns input values unchanged is used instead.
28
29   - identifier: G_table
30     title: Green channel look-up table
31     type: string
32     default: unset
33     description: >
34       Value is tokenised using semicolon separator into exactly 256 integer 
35       values in range 0 - 255 and a look-up table for green channel values is 
36       created and applied to image. If tokenising of value fails a linear table 
37       that returns input values unchanged is used instead.
38
39   - identifier: B_table
40     title: Blue channel look-up table
41     type: string
42     default: unset
43     description: >
44       Value is tokenised using semicolon separator into exactly 256 integer 
45       values in range 0 - 255 and a look-up table for green channel values is 
46       created and applied to image. If tokenising of value fails a linear table 
47       that returns input values unchanged is used instead.