1import QtQuick 2.0
2import org.shotcut.qml 1.0
3
4Metadata {
5    type: Metadata.Filter
6    objectName: 'brightnessOpacity'
7    name: qsTr("Opacity")
8    mlt_service: "brightness"
9    qml: "ui.qml"
10    gpuAlt: "movit.opacity"
11    keyframes {
12        allowAnimateIn: true
13        allowAnimateOut: true
14        simpleProperties: ['alpha']
15        parameters: [
16            Parameter {
17                name: qsTr('Level')
18                property: 'alpha'
19                gangedProperties: ['opacity']
20                isSimple: true
21                isCurve: true
22                minimum: 0
23                maximum: 1
24            }
25        ]
26    }
27}
28