-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
/
Copy pathhtml5.js
167 lines (136 loc) · 4.73 KB
/
html5.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
155
156
157
158
159
160
161
162
163
164
165
166
167
// ==========================================================================
// Plyr HTML5 helpers
// ==========================================================================
import { types } from './config/types';
import PlyrProvider from './plugins/providers';
import support from './support';
import ui from './ui';
import { removeElement } from './utils/elements';
import { triggerEvent } from './utils/events';
import is from './utils/is';
import { silencePromise } from './utils/promise';
import { setAspectRatio } from './utils/style';
class HTML5Provider extends PlyrProvider {
static get name() {
return 'html5';
}
static type(player) {
return player.media.tagName.toLowerCase() === 'video' ? types.video : types.audio;
}
static get availableSpeed() {
return [0.5, 0.75, 1, 1.25, 1.5, 1.75, 2, 4];
}
static get supportCaptions() {
return true;
}
static getSources(player) {
if (!player.isHTML5) {
return [];
}
const sources = Array.from(player.media.querySelectorAll('source'));
// Filter out unsupported sources (if type is specified)
return sources.filter(source => {
const type = source.getAttribute('type');
if (is.empty(type)) {
return true;
}
return support.mime.call(player, type);
});
}
// Get quality levels
static getQualityOptions(player) {
// Whether we're forcing all options (e.g. for streaming)
if (player.config.quality.forced) {
return player.config.quality.options;
}
// Get sizes from <source> elements
return HTML5Provider.getSources(player)
.map(source => Number(source.getAttribute('size')))
.filter(Boolean);
}
static setup(player) {
if (!player.isHTML5) {
return;
}
// Set aspect ratio if fixed
if (!is.empty(player.config.ratio)) {
setAspectRatio.call(player);
}
// Quality
Object.defineProperty(player.media, 'quality', {
get() {
// Get sources
const sources = HTML5Provider.getSources(player);
const source = sources.find(s => s.getAttribute('src') === player.source);
// Return size, if match is found
return source && Number(source.getAttribute('size'));
},
set(input) {
if (player.quality === input) {
return;
}
// If we're using an an external handler...
if (player.config.quality.forced && is.function(player.config.quality.onChange)) {
player.config.quality.onChange(input);
} else {
// Get sources
const sources = HTML5Provider.getSources(player);
// Get first match for requested size
const source = sources.find(s => Number(s.getAttribute('size')) === input);
// No matching source found
if (!source) {
return;
}
// Get current state
const { currentTime, paused, preload, readyState, playbackRate } = player.media;
// Set new source
player.media.setAttribute('src', source.getAttribute('src'));
// Prevent loading if preload="none" and the current source isn't loaded (#1044)
if (preload !== 'none' || readyState) {
// Restore time
player.once('loadedmetadata', () => {
// eslint-disable-next-line no-param-reassign
player.speed = playbackRate;
// eslint-disable-next-line no-param-reassign
player.currentTime = currentTime;
// Resume playing
if (!paused) {
silencePromise(player.play());
}
});
// Load new source
player.media.load();
}
}
// Trigger change event
triggerEvent.call(player, player.media, 'qualitychange', false, {
quality: input,
});
},
});
}
// Cancel current network requests
// See https://github.com/sampotts/plyr/issues/174
static cancelRequests(player) {
if (!player.isHTML5) {
return;
}
// Remove child sources
removeElement(HTML5Provider.getSources(player));
// Set blank video src attribute
// This is to prevent a MEDIA_ERR_SRC_NOT_SUPPORTED error
// Info: http://stackoverflow.com/questions/32231579/how-to-properly-dispose-of-an-html5-video-and-close-socket-or-connection
player.media.setAttribute('src', player.config.blankVideo);
// Load the new empty source
// This will cancel existing requests
// See https://github.com/sampotts/plyr/issues/174
player.media.load();
// Debugging
player.debug.log('Cancelled network requests');
}
static async destroy(player) {
// Restore native video controls
ui.toggleNativeControls.call(player, true);
}
}
export default HTML5Provider;