]> git.sesse.net Git - mlt/blob - src/modules/gtk2/producer_count.yml
dc4662d0f41d2f4fa783b9e37606219bfa4f8cf1
[mlt] / src / modules / gtk2 / producer_count.yml
1 schema_version: 0.1
2 type: producer
3 identifier: count
4 title: Count
5 version: 1
6 copyright: Brian Matherly
7 creator: Brian Matherly
8 license: LGPLv2.1
9 language: en
10 tags:
11   - Audio
12   - Video
13 description: >
14   Generate frames with a counter and synchronized tone. 
15   The counter can go up or down.
16 parameters:
17   - identifier: direction
18     title: Count Direction
19     description: Whether to count up or down.
20     type: string
21     default: down
22     values:
23       - up
24       - down
25     mutable: yes
26     widget: combo
27   - identifier: style
28     title: Counter Style
29     description: |
30       The style of the counter. 
31         * seconds    - seconds counting up from or down to 0
32         * seconds+1  - seconds counting up from or down to 1
33         * frames     - frames
34         * timecode   - timecode in the format HH:MM:SS:FF
35         * clock      - clock in the format HH:MM:SS
36     type: string
37     default: seconds+1
38     values:
39       - seconds
40       - seconds+1
41       - frames
42       - timecode
43       - clock
44     mutable: yes
45     widget: combo
46   - identifier: sound
47     title: Sound
48     description:  |
49       The sound to be produced. 
50         * silent - No sound
51         * 2pop  - A 1kHz beep exactly two seconds before the out point
52         * frame0 - A 1kHz beep at frame 0 of every second
53     type: string
54     default: silent
55     values:
56       - none
57       - 2pop
58       - frame0
59     mutable: yes
60     widget: combo
61   - identifier: background
62     title: Background
63     description:  |
64       The background style. 
65         * none - No background
66         * clock  - Film style clock animation
67     type: string
68     default: clock
69     values:
70       - none
71       - clock
72     mutable: yes
73     widget: combo