File: audiolevelgraph.xml

package info (click to toggle)
kdenlive 25.12.0-1
  • links: PTS
  • area: main
  • in suites: forky
  • size: 125,912 kB
  • sloc: cpp: 206,648; xml: 11,857; python: 1,139; ansic: 1,054; javascript: 578; sh: 389; makefile: 15
file content (61 lines) | stat: -rw-r--r-- 3,016 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
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect xmlns="https://www.kdenlive.org" tag="audiolevelgraph" id="audiolevelgraph" type="video">
    <name>Audio Level Visualization Filter</name>
    <description>An audio visualization filter that draws an audio level meter on the image.</description>
    <author>Meltytech, LLC</author>
    <parameter type="list" name="type" default="bar" paramlist="segment;bar">
        <name>Graph type</name>
        <comment>The type of graph to display the levels.</comment>
        <paramlistdisplay>Segment,Bar</paramlistdisplay>
    </parameter>
    <parameter type="color" name="bgcolor" default="0x00000000" alpha="1">
        <name>Background Color</name>
        <comment>The background color to be applied to the entire frame.</comment>
    </parameter>
    <parameter type="color" name="color.1" default="0xffffffff" alpha="1">
        <name>Gradient Color 1</name>
        <comment>The color of the waveform gradient.</comment>
    </parameter>
    <parameter type="color" name="color.2" default="0xffffffff" alpha="1">
        <name>Gradient Color 2</name>
        <comment>The color of the waveform gradient.</comment>
    </parameter>
    <parameter type="color" name="color.3" default="0xffffffff" alpha="1">
        <name>Gradient Color 3</name>
        <comment>The color of the waveform gradient.</comment>
    </parameter>
    <parameter type="animated" name="thickness" max="20" min="0" default="0">
        <name>Line Thickness</name>
        <comment>The thickness of the bar or segments.</comment>
    </parameter>
    <parameter type="animated" name="angle" max="360" min="0" default="0">
        <name>Angle</name>
        <comment>The rotation angle to be applied to the waveform.</comment>
    </parameter>
    <parameter type="animatedrect" name="rect" default="0 0 100% 100%">
        <name>Rectangle</name>
        <comment>Defines the rectangle that the waveform(s) should be drawn in.</comment>
    </parameter>
    <parameter type="bool" name="mirror" default="0">
        <name>Mirror</name>
        <comment>Mirror the spectrum about the center of the rectangle.</comment>
    </parameter>
    <parameter type="bool" name="reverse" default="0">
        <name>Reverse</name>
        <comment>Draw the points starting with the right channel first.</comment>
    </parameter>
    <parameter type="list" name="gorient" default="vertical" paramlist="vertical;horizontal">
        <name>Gradient Orientation</name>
        <comment>Direction of the color gradient.</comment>
        <paramlistdisplay>Vertical,Horizontal</paramlistdisplay>
    </parameter>
    <parameter type="animated" name="channels" max="500" min="0" default="2">
        <name>Channels</name>
        <comment>The number of channels to show.</comment>
    </parameter>
    <parameter type="animated" name="segment_gap" max="100" min="0" default="10">
        <name>Segment Gap</name>
        <comment>The space in pixels between the segments.</comment>
    </parameter>
</effect>