-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathextension.json
94 lines (94 loc) · 2.02 KB
/
extension.json
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
{
"name": "EmbedVideo",
"version": "2.9.0",
"author": [
"Jim R. Wilson",
"Andrew Whitworth",
"Alexia E. Smith",
"Cameron M. Chunn"
],
"url": "https://www.mediawiki.org/wiki/Extension:EmbedVideo",
"descriptionmsg": "embedvideo_description",
"license-name": "MIT",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.29.0"
},
"callback": "EmbedVideoHooks::onExtension",
"MessagesDirs": {
"EmbedVideo": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"EmbedVideoMagic": "EmbedVideo.i18n.magic.php"
},
"AutoloadClasses": {
"EmbedVideoHooks": "EmbedVideo.hooks.php",
"ApiEmbedVideo": "classes/ApiEmbedVideo.php",
"EmbedVideo\\OEmbed": "classes/OEmbed.php",
"EmbedVideo\\VideoService": "classes/VideoService.php",
"EmbedVideo\\FFProbe": "classes/media/FFProbe.php",
"EmbedVideo\\AudioHandler": "classes/media/AudioHandler.php",
"EmbedVideo\\AudioTransformOutput": "classes/media/AudioTransformOutput.php",
"EmbedVideo\\VideoHandler": "classes/media/VideoHandler.php",
"EmbedVideo\\VideoTransformOutput": "classes/media/VideoTransformOutput.php"
},
"APIModules": {
"embedvideo": "ApiEmbedVideo"
},
"ResourceModules": {
"ext.embedVideo": {
"scripts": [
"js/autoResize.js"
],
"position": "top",
"targets": [
"desktop",
"mobile"
]
},
"ext.embedVideo-evl": {
"scripts": [
"js/evlPlayer.js"
],
"position": "top",
"targets": [
"desktop",
"mobile"
],
"dependencies": [
"mediawiki.api",
"ext.embedVideo"
]
},
"ext.embedVideo.styles": {
"styles": [
"css/embedvideo.css"
],
"targets": [
"desktop",
"mobile"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "EmbedVideo"
},
"config": {
"EmbedVideoAddFileExtensions": true,
"EmbedVideoEnableVideoHandler": true,
"EmbedVideoEnableAudioHandler": true,
"FFprobeLocation": "/usr/bin/ffprobe"
},
"HookHandlers": {
"main": {
"class": "EmbedVideoHooks"
}
},
"Hooks": {
"ParserFirstCallInit": "main"
},
"manifest_version": 1
}