-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpaella_plugins.js
154 lines (149 loc) · 3.94 KB
/
paella_plugins.js
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
import AudioVideoPlugin from "paella-core/js/videoFormats/es.upv.paella.audioVideoFormat";
import HlsVideoPlugin from "paella-core/js/videoFormats/es.upv.paella.hlsVideoFormat";
import HlsLiveVideoFormat from "paella-core/js/videoFormats/es.upv.paella.hlsLiveVideoFormat";
import HtmlVideoPlugin from "paella-core/js/videoFormats/es.upv.paella.htmlVideoFormat";
import ImageVideoPlugin from "paella-core/js/videoFormats/es.upv.paella.imageVideoFormat";
import Mp4VideoPlugin from "paella-core/js/videoFormats/es.upv.paella.mp4VideoFormat";
import DefaultKeyShortcutsPlugin from "paella-core/js/plugins/es.upv.paella.defaultShortcuts";
import DfxpManifestCaptionsPlugin from "paella-core/js/plugins/es.upv.paella.dfxpManifestCaptionsPlugin";
import PlayPauseButtonPlugin from "paella-core/js/plugins/es.upv.paella.playPauseButton";
import VttManifestCaptionsPlugin from "paella-core/js/plugins/es.upv.paella.vttManifestCaptionsPlugin";
import DualVideoDynamicLayout from "paella-core/js/layouts/es.upv.paella.dualVideoDynamic";
import DualVideoLayout from "paella-core/js/layouts/es.upv.paella.dualVideo";
import DualVideoPiPLayout from "paella-core/js/layouts/es.upv.paella.dualVideoPiP";
import SingleVideoLayout from "paella-core/js/layouts/es.upv.paella.singleVideo";
import SingleVideoDynamicLayout from "paella-core/js/layouts/es.upv.paella.singleVideoDynamic";
import TripleVideoLayout from "paella-core/js/layouts/es.upv.paella.tripleVideo";
import NStreamsVideoLayout from "paella-core/js/layouts/es.upv.paella.nStreams";
import AudioCanvasPlugin from "paella-core/js/canvas/es.upv.paella.audioCanvas";
import VideoCanvasPlugin from "paella-core/js/canvas/es.upv.paella.videoCanvas";
import CookieDataPlugin from "paella-core/js/data/es.upv.paella.cookieDataPlugin";
export default [
{
plugin: AudioVideoPlugin,
config: {
enabled: false
}
},
{
plugin: HlsVideoPlugin,
config: {
enabled: false
}
},
{
plugin: HlsLiveVideoFormat,
config: {
enabled: false
}
},
{
plugin: HtmlVideoPlugin,
config: {
enabled: false
}
},
{
plugin: ImageVideoPlugin,
config: {
enabled: false
}
},
{
plugin: Mp4VideoPlugin,
config: {
enabled: false
}
},
{
plugin: DefaultKeyShortcutsPlugin,
config: {
enabled: false
}
},
{
plugin: DfxpManifestCaptionsPlugin,
config: {
enabled: false
}
},
{
plugin: PlayPauseButtonPlugin,
config: {
enabled: false
}
},
{
plugin: VttManifestCaptionsPlugin,
config: {
enabled: false
}
},
{
plugin: DualVideoDynamicLayout,
config: {
enabled: false
}
},
{
plugin: DualVideoLayout,
config: {
enabled: false
}
},
{
plugin: DualVideoPiPLayout,
config: {
enabled: false
}
},
{
plugin: SingleVideoLayout,
config: {
enabled: false
}
},
{
plugin: SingleVideoDynamicLayout,
config: {
enabled: false
}
},
{
plugin: DualVideoDynamicLayout,
config: {
enabled: false
}
},
{
plugin: TripleVideoLayout,
config: {
enabled: false
}
},
{
plugin: NStreamsVideoLayout,
config: {
enabled: false
}
},
{
plugin: AudioCanvasPlugin,
config: {
enabled: false
}
},
{
plugin: VideoCanvasPlugin,
config: {
enabled: false
}
},
{
plugin: CookieDataPlugin,
config: {
enabled: false,
context: ["default"]
}
}
]