generated from mattermost/mattermost-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.json
More file actions
41 lines (41 loc) · 1.22 KB
/
plugin.json
File metadata and controls
41 lines (41 loc) · 1.22 KB
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
{
"id": "com.equinux.mattermost-plugin-video-reencode",
"name": "Video Re-Encode Plugin",
"description": "Automatically re-encodes video uploads to be compatible with most clients.",
"version": "0.1.4",
"min_server_version": "5.12.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "CreatePreviewImage",
"display_name": "Create Preview GIF",
"type": "bool",
"help_text": "Extract a preview GIF from a video file attached to a message.",
"default": false
},
{
"key": "ConvertMOVToMP4",
"display_name": "Convert mov to mp4",
"type": "bool",
"help_text": "Converts mov file uploads to mp4.",
"default": false
},
{
"key": "ConversionFileSizeLimit",
"display_name": "File size limit for mp4 conversion",
"type": "number",
"help_text": "Files larger then this in Kilobyte (KB) will not be converted.",
"default": 20480
}
]
}
}