File: timer.xml

package info (click to toggle)
kdenlive 25.12.1-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 125,932 kB
  • sloc: cpp: 206,733; xml: 11,858; python: 1,139; ansic: 1,054; javascript: 578; sh: 389; makefile: 15
file content (71 lines) | stat: -rw-r--r-- 3,586 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect xmlns="https://www.kdenlive.org" tag="timer" id="timer">
    <name>Timer</name>
    <description>Overlay a timer onto the video</description>
    <author>Guillaume Papin</author>
    <parameter type="animatedrect" name="geometry" default="0 0 100% 100%" fixed="0">
        <name>Geometry</name>
    </parameter>
    <parameter type="fontfamily" name="family" default="DejaVu Sans">
        <name>Font Family</name>
    </parameter>
    <parameter type="list" name="style" default="normal" paramlist="normal;italic">
        <name>Font Style</name>
    </parameter>
    <parameter type="constant" name="size" max="200" min="8" default="48">
        <name>Font Size</name>
    </parameter>
    <parameter type="constant" name="weight" max="900" min="100" default="400">
        <name>Font Weight</name>
    </parameter>
    <parameter type="color" name="fgcolour" default="0x000000ff" alpha="1">
        <name>Foreground Color</name>
    </parameter>
    <parameter type="color" name="bgcolour" default="0x00000020" alpha="1">
        <name>Background Color</name>
    </parameter>
    <parameter type="color" name="olcolour" default="0x00000000" alpha="1">
        <name>Outline Color</name>
    </parameter>
    <parameter type="constant" name="outline" max="3" min="0" default="0">
        <name>Outline Width</name>
    </parameter>
    <parameter type="constant" name="pad" max="500" min="0" default="0">
        <name>Padding</name>
    </parameter>
    <parameter type="list" name="halign" default="left" paramlist="left;center;right">
        <name>Horizontal Alignment</name>
        <paramlistdisplay>Left,Center,Right</paramlistdisplay>
    </parameter>
    <parameter type="list" name="valign" default="top" paramlist="top;middle;bottom">
        <name>Vertical Alignment</name>
        <paramlistdisplay>Top,Middle,Bottom</paramlistdisplay>
    </parameter>
    <parameter type="list" name="format" default="SS.SS" paramlist="HH:MM:SS;HH:MM:SS.S;MM:SS;MM:SS.SS;MM:SS.SSS;SS;SS.S;SS.SS;SS.SSS">
        <name>Format</name>
        <paramlistdisplay>HH:MM:SS,HH:MM:SS.S,MM:SS,MM:SS.SS,MM:SS.SSS,SS,SS.S,SS.SS,SS.SSS</paramlistdisplay>
    </parameter>
    <parameter type="position" name="start" max="1000000" min="0" default="0" totime="true">
        <name>Start</name>
        <comment><![CDATA[The time that the timer will start counting up or down.
The text will be frozen at 00:00:00.000 from the start of the filter until the start time has elapsed.]]></comment>
    </parameter>
    <parameter type="position" name="duration" max="1000000" min="0" default="%out" totime="true" relative="true">
        <name>Duration</name>
        <comment><![CDATA[The maximum elapsed duration of the timer after the start time has elapsed.
The text will be frozen at the duration time after the duration has elapsed.]]></comment>
    </parameter>
    <parameter type="position" name="offset" max="1000000" min="0" default="0" totime="true" relative="true">
        <name>Offset</name>
        <comment><![CDATA[An offset to be added to the timer value.
When the direction is "down", the timer will count down to "offset" instead of 00:00:00.000.
When the direction is up, the timer will count up starting from "offset".]]></comment>
    </parameter>
    <parameter type="list" name="direction" default="up" paramlist="up;down">
        <name>Direction</name>
        <comment>
            <![CDATA[Whether the counter should count up from 00:00:00.000 or down from the duration time.]]>
        </comment>
    </parameter>
</effect>