forked from ue4plugins/VlcMedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VlcMedia.uplugin
43 lines (40 loc) · 1022 Bytes
/
VlcMedia.uplugin
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
{
"FileVersion" : 3,
"FriendlyName" : "VLC Media Player",
"Version" : 14,
"VersionName" : "14.0",
"CreatedBy" : "Epic Games Inc",
"CreatedByURL" : "http://epicgames.com",
"DocsURL" : "https://github.com/ue4plugins/VlcMedia",
"EngineVersion" : "4.20.0",
"Description" : "Implements a media player using the Video LAN Codec (libvlc).",
"Category" : "Media Players",
"EnabledByDefault" : true,
"IsBetaVersion": true,
"Modules" :
[
{
"Name" : "VlcMedia",
"Type" : "RuntimeNoCommandlet",
"LoadingPhase" : "PreLoadingScreen",
"WhitelistPlatforms" : [ "Linux", "Mac", "Win32", "Win64" ]
},
{
"Name" : "VlcMediaEditor",
"Type" : "Editor",
"LoadingPhase" : "PostEngineInit"
},
{
"Name" : "VlcMediaFactory",
"Type" : "Editor",
"LoadingPhase" : "PostEngineInit"
},
{
"Name": "VlcMediaFactory",
"Type": "RuntimeNoCommandlet",
"LoadingPhase" : "PostEngineInit",
"WhitelistPlatforms" : [ "Linux", "Mac", "Win32", "Win64" ]
}
],
"CanContainContent" : false
}