forked from ableplayer/ableplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdescription.js
More file actions
283 lines (258 loc) · 10.2 KB
/
description.js
File metadata and controls
283 lines (258 loc) · 10.2 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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
(function ($) {
AblePlayer.prototype.initDescription = function() {
// set default mode for delivering description (open vs closed)
// based on availability and user preference
// called when player is being built, or when a user
// toggles the Description button or changes a description-related preference
// In the latter two scendarios, this.refreshingDesc == true via control.js > handleDescriptionToggle()
// The following variables are applicable to delivery of description:
// prefDesc == 1 if user wants description (i.e., Description button is on); else 0
// prefDescFormat == either 'video' or 'text'
// prefDescPause == 1 to pause video when description starts; else 0
// prefVisibleDesc == 1 to visibly show text-based description area; else 0
// hasOpenDesc == true if a described version of video is available via data-desc-src attribute
// hasClosedDesc == true if a description text track is available
// this.useDescFormat == either 'video' or 'text'; the format ultimately delivered
// descOn == true if description of either type is on
if (!this.refreshingDesc) {
// this is the initial build
// first, check to see if there's an open-described version of this video
// checks only the first source since if a described version is provided,
// it must be provided for all sources
this.descFile = this.$sources.first().attr('data-desc-src');
if (typeof this.descFile !== 'undefined') {
this.hasOpenDesc = true;
}
else {
// there's no open-described version via data-desc-src, but what about data-youtube-desc-src?
if (this.youTubeDescId) {
this.hasOpenDesc = true;
}
else { // there are no open-described versions from any source
this.hasOpenDesc = false;
}
}
}
// update this.useDescFormat based on media availability & user preferences
if (this.prefDesc) {
if (this.hasOpenDesc && this.hasClosedDesc) {
// both formats are available. Use whichever one user prefers
this.useDescFormat = this.prefDescFormat;
this.descOn = true;
}
else if (this.hasOpenDesc) {
this.useDescFormat = 'video';
this.descOn = true;
}
else if (this.hasClosedDesc) {
this.useDescFormat = 'text';
this.descOn = true;
}
}
else { // description button is off
if (this.refreshingDesc) { // user just now toggled it off
this.prevDescFormat = this.useDescFormat;
this.useDescFormat = false;
this.descOn = false;
}
else { // desc has always been off
this.useDescFormat = false;
}
}
if (this.descOn) {
if (this.useDescFormat === 'video') {
if (!this.usingAudioDescription()) {
// switched from non-described to described version
this.swapDescription();
}
// hide description div
this.$descDiv.hide();
this.$descDiv.removeClass('able-clipped');
}
else if (this.useDescFormat === 'text') {
this.$descDiv.show();
if (this.prefVisibleDesc) { // make it visible to everyone
this.$descDiv.removeClass('able-clipped');
}
else { // keep it visible to screen readers, but hide from everyone else
this.$descDiv.addClass('able-clipped');
}
if (!this.swappingSrc) {
this.showDescription(this.getElapsed());
}
}
}
else { // description is off.
if (this.prevDescFormat === 'video') { // user was previously using description via video
if (this.usingAudioDescription()) {
this.swapDescription();
}
}
else if (this.prevDescFormat === 'text') { // user was previously using text description
// hide description div from everyone, including screen reader users
this.$descDiv.hide();
this.$descDiv.removeClass('able-clipped');
}
}
this.refreshingDesc = false;
};
// Returns true if currently using audio description, false otherwise.
AblePlayer.prototype.usingAudioDescription = function () {
if (this.player === 'youtube') {
return (this.activeYouTubeId === this.youTubeDescId);
}
else {
return (this.$sources.first().attr('data-desc-src') === this.$sources.first().attr('src'));
}
};
AblePlayer.prototype.swapDescription = function() {
// swap described and non-described source media, depending on which is playing
// this function is only called in two circumstances:
// 1. Swapping to described version when initializing player (based on user prefs & availability)
// 2. User is toggling description
var thisObj, i, origSrc, descSrc, srcType, jwSourceIndex, newSource;
thisObj = this;
// get current time, and start new video at the same time
// NOTE: There is some risk in resuming playback at the same start time
// since the described version might include extended audio description (with pauses)
// and might therefore be longer than the non-described version
// The benefits though would seem to outweigh this risk
this.swapTime = this.getElapsed(); // video will scrub to this time after loaded (see event.js)
if (this.descOn) {
// user has requested the described version
this.showAlert(this.tt.alertDescribedVersion);
}
else {
// user has requested the non-described version
this.showAlert(this.tt.alertNonDescribedVersion);
}
if (this.player === 'html5') {
if (this.usingAudioDescription()) {
// the described version is currently playing. Swap to non-described
for (i=0; i < this.$sources.length; i++) {
// for all <source> elements, replace src with data-orig-src
origSrc = this.$sources[i].getAttribute('data-orig-src');
srcType = this.$sources[i].getAttribute('type');
if (origSrc) {
this.$sources[i].setAttribute('src',origSrc);
}
if (srcType === 'video/mp4') {
jwSourceIndex = i;
}
}
// No need to check for this.initializing
// This function is only called during initialization
// if swapping from non-described to described
this.swappingSrc = true;
}
else {
// the non-described version is currently playing. Swap to described.
for (i=0; i < this.$sources.length; i++) {
// for all <source> elements, replace src with data-desc-src (if one exists)
// then store original source in a new data-orig-src attribute
origSrc = this.$sources[i].getAttribute('src');
descSrc = this.$sources[i].getAttribute('data-desc-src');
srcType = this.$sources[i].getAttribute('type');
if (descSrc) {
this.$sources[i].setAttribute('src',descSrc);
this.$sources[i].setAttribute('data-orig-src',origSrc);
}
if (srcType === 'video/mp4') {
jwSourceIndex = i;
}
}
this.swappingSrc = true;
}
// now reload the source file.
if (this.player === 'html5') {
this.media.load();
}
else if (this.player === 'youtube') {
// TODO: Load new youTubeId
}
else if (this.player === 'jw' && this.jwPlayer) {
newSource = this.$sources[jwSourceIndex].getAttribute('src');
this.jwPlayer.load({file: newSource});
}
}
else if (this.player === 'youtube') {
if (this.usingAudioDescription()) {
// the described version is currently playing. Swap to non-described
this.activeYouTubeId = this.youTubeId;
this.showAlert(this.tt.alertNonDescribedVersion);
}
else {
// the non-described version is currently playing. Swap to described.
this.activeYouTubeId = this.youTubeDescId;
this.showAlert(this.tt.alertDescribedVersion);
}
if (typeof this.youTubePlayer !== 'undefined') {
// retrieve/setup captions for the new video from YouTube
this.setupAltCaptions().then(function() {
if (thisObj.playing) {
// loadVideoById() loads and immediately plays the new video at swapTime
thisObj.youTubePlayer.loadVideoById(thisObj.activeYouTubeId,thisObj.swapTime);
}
else {
// cueVideoById() loads the new video and seeks to swapTime, but does not play
thisObj.youTubePlayer.cueVideoById(thisObj.activeYouTubeId,thisObj.swapTime);
}
});
}
}
};
AblePlayer.prototype.showDescription = function(now) {
// there's a lot of redundancy between this function and showCaptions
// Trying to combine them ended up in a mess though. Keeping as is for now.
if (this.swappingSrc) {
return;
}
var d, thisDescription;
var flattenComponentForDescription = function (component) {
var result = [];
if (component.type === 'string') {
result.push(component.value);
}
else {
for (var ii in component.children) {
result.push(flattenComponentForDescription(component.children[ii]));
}
}
return result.join('');
}
var cues;
if (this.selectedDescriptions) {
cues = this.selectedDescriptions.cues;
}
else if (this.descriptions.length >= 1) {
cues = this.descriptions[0].cues;
}
else {
cues = [];
}
for (d in cues) {
if ((cues[d].start <= now) && (cues[d].end > now)) {
thisDescription = d;
break;
}
}
if (typeof thisDescription !== 'undefined') {
if (this.currentDescription !== thisDescription) {
// temporarily remove aria-live from $status in order to prevent description from being interrupted
this.$status.removeAttr('aria-live');
// load the new description into the container div
this.$descDiv.html(flattenComponentForDescription(cues[thisDescription].components));
if (this.prefDescPause) {
this.pauseMedia();
}
this.currentDescription = thisDescription;
}
}
else {
this.$descDiv.html('');
this.currentDescription = -1;
// restore aria-live to $status
this.$status.attr('aria-live','polite');
}
};
})(jQuery);