-
Notifications
You must be signed in to change notification settings - Fork 3
/
plugins.qmltypes
193 lines (191 loc) · 7.53 KB
/
plugins.qmltypes
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
import QtQuick.tooling 1.2
// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
// 'qmlplugindump -nonrelocatable wangwenx190.QuickMpv 1.0'
Module {
dependencies: ["QtQuick 2.13"]
Component {
name: "MpvDeclarativeObject"
defaultProperty: "data"
prototype: "QQuickFramebufferObject"
exports: ["wangwenx190.QuickMpv/MpvObject 1.0"]
exportMetaObjectRevisions: [0]
Enum {
name: "PlaybackState"
values: {
"Stopped": 0,
"Playing": 1,
"Paused": 2
}
}
Enum {
name: "MediaStatus"
values: {
"Unknown": 0,
"NoMedia": 1,
"Loading": 2,
"Loaded": 3,
"Stalled": 4,
"Buffering": 5,
"Buffered": 6,
"End": 7,
"Invalid": 8
}
}
Enum {
name: "LogLevel"
values: {
"Off": 0,
"Debug": 1,
"Warning": 2,
"Critical": 3,
"Fatal": 4,
"Info": 5
}
}
Enum {
name: "MpvCallType"
values: {
"Synchronous": 0,
"Asynchronous": 1
}
}
Property { name: "source"; type: "QUrl" }
Property { name: "videoSize"; type: "QSize"; isReadonly: true }
Property { name: "duration"; type: "qlonglong"; isReadonly: true }
Property { name: "position"; type: "qlonglong" }
Property { name: "volume"; type: "int" }
Property { name: "mute"; type: "bool" }
Property { name: "seekable"; type: "bool"; isReadonly: true }
Property { name: "playbackState"; type: "MpvDeclarativeObject::PlaybackState" }
Property { name: "mediaStatus"; type: "MpvDeclarativeObject::MediaStatus"; isReadonly: true }
Property { name: "logLevel"; type: "MpvDeclarativeObject::LogLevel" }
Property { name: "hwdec"; type: "string" }
Property { name: "mpvVersion"; type: "string"; isReadonly: true }
Property { name: "mpvConfiguration"; type: "string"; isReadonly: true }
Property { name: "ffmpegVersion"; type: "string"; isReadonly: true }
Property { name: "qtVersion"; type: "string"; isReadonly: true }
Property { name: "vid"; type: "int" }
Property { name: "aid"; type: "int" }
Property { name: "sid"; type: "int" }
Property { name: "videoRotate"; type: "int" }
Property { name: "videoAspect"; type: "double" }
Property { name: "speed"; type: "double" }
Property { name: "deinterlace"; type: "bool" }
Property { name: "audioExclusive"; type: "bool" }
Property { name: "audioFileAuto"; type: "string" }
Property { name: "subAuto"; type: "string" }
Property { name: "subCodepage"; type: "string" }
Property { name: "fileName"; type: "string"; isReadonly: true }
Property { name: "mediaTitle"; type: "string"; isReadonly: true }
Property { name: "vo"; type: "string" }
Property { name: "ao"; type: "string" }
Property { name: "screenshotFormat"; type: "string" }
Property { name: "screenshotPngCompression"; type: "int" }
Property { name: "screenshotTemplate"; type: "string" }
Property { name: "screenshotDirectory"; type: "string" }
Property { name: "profile"; type: "string" }
Property { name: "hrSeek"; type: "bool" }
Property { name: "ytdl"; type: "bool" }
Property { name: "loadScripts"; type: "bool" }
Property { name: "path"; type: "string"; isReadonly: true }
Property { name: "fileFormat"; type: "string"; isReadonly: true }
Property { name: "fileSize"; type: "qlonglong"; isReadonly: true }
Property { name: "videoBitrate"; type: "double"; isReadonly: true }
Property { name: "audioBitrate"; type: "double"; isReadonly: true }
Property {
name: "audioDeviceList"
type: "MpvDeclarativeObject::AudioDevices"
isReadonly: true
}
Property { name: "screenshotTagColorspace"; type: "bool" }
Property { name: "screenshotJpegQuality"; type: "int" }
Property { name: "videoFormat"; type: "string"; isReadonly: true }
Property { name: "mpvCallType"; type: "MpvDeclarativeObject::MpvCallType" }
Property { name: "mediaTracks"; type: "MpvDeclarativeObject::MediaTracks"; isReadonly: true }
Property { name: "videoSuffixes"; type: "QStringList"; isReadonly: true }
Property { name: "audioSuffixes"; type: "QStringList"; isReadonly: true }
Property { name: "subtitleSuffixes"; type: "QStringList"; isReadonly: true }
Property { name: "chapters"; type: "MpvDeclarativeObject::Chapters"; isReadonly: true }
Property { name: "metadata"; type: "MpvDeclarativeObject::Metadata"; isReadonly: true }
Property { name: "avsync"; type: "double"; isReadonly: true }
Property { name: "percentPos"; type: "int" }
Property { name: "estimatedVfFps"; type: "double"; isReadonly: true }
Signal { name: "onUpdate" }
Signal { name: "hasMpvEvents" }
Signal { name: "initFinished" }
Signal { name: "loaded" }
Signal { name: "playing" }
Signal { name: "paused" }
Signal { name: "stopped" }
Method {
name: "open"
type: "bool"
Parameter { name: "url"; type: "QUrl" }
}
Method { name: "play"; type: "bool" }
Method {
name: "play"
type: "bool"
Parameter { name: "url"; type: "QUrl" }
}
Method { name: "pause"; type: "bool" }
Method { name: "stop"; type: "bool" }
Method {
name: "seek"
type: "bool"
Parameter { name: "value"; type: "qlonglong" }
Parameter { name: "absolute"; type: "bool" }
Parameter { name: "percent"; type: "bool" }
}
Method {
name: "seek"
type: "bool"
Parameter { name: "value"; type: "qlonglong" }
Parameter { name: "absolute"; type: "bool" }
}
Method {
name: "seek"
type: "bool"
Parameter { name: "value"; type: "qlonglong" }
}
Method {
name: "seekAbsolute"
type: "bool"
Parameter { name: "position"; type: "qlonglong" }
}
Method {
name: "seekRelative"
type: "bool"
Parameter { name: "offset"; type: "qlonglong" }
}
Method {
name: "seekPercent"
type: "bool"
Parameter { name: "percent"; type: "int" }
}
Method { name: "screenshot"; type: "bool" }
Method {
name: "screenshotToFile"
type: "bool"
Parameter { name: "filePath"; type: "string" }
}
}
Component {
name: "QQuickFramebufferObject"
defaultProperty: "data"
prototype: "QQuickItem"
Property { name: "textureFollowsItemSize"; type: "bool" }
Property { name: "mirrorVertically"; type: "bool" }
Signal {
name: "textureFollowsItemSizeChanged"
Parameter { type: "bool" }
}
Signal {
name: "mirrorVerticallyChanged"
Parameter { type: "bool" }
}
}
}