Blame view

sources/apps/files_videoviewer/mediaelement/src/js/mep-feature-volume.js 6.67 KB
42e4f8d60   Kload   add all apps
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
  (function($) {
  
  	$.extend(mejs.MepDefaults, {
  		muteText: 'Mute Toggle',
  		hideVolumeOnTouchDevices: true,
  		
  		audioVolume: 'horizontal',
  		videoVolume: 'vertical'
  	});
  
  	$.extend(MediaElementPlayer.prototype, {
  		buildvolume: function(player, controls, layers, media) {
  				
  			// Android and iOS don't support volume controls
  			if (mejs.MediaFeatures.hasTouch && this.options.hideVolumeOnTouchDevices)
  				return;
  			
  			var t = this,
  				mode = (t.isVideo) ? t.options.videoVolume : t.options.audioVolume,
  				mute = (mode == 'horizontal') ?
  				
  				// horizontal version
  				$('<div class="mejs-button mejs-volume-button mejs-mute">'+
  					'<button type="button" aria-controls="' + t.id + '" title="' + t.options.muteText + '" aria-label="' + t.options.muteText + '"></button>'+
  				'</div>' +
  				'<div class="mejs-horizontal-volume-slider">'+ // outer background
  					'<div class="mejs-horizontal-volume-total"></div>'+ // line background
  					'<div class="mejs-horizontal-volume-current"></div>'+ // current volume
  					'<div class="mejs-horizontal-volume-handle"></div>'+ // handle
  				'</div>'
  				)
  					.appendTo(controls) :
  				
  				// vertical version
  				$('<div class="mejs-button mejs-volume-button mejs-mute">'+
  					'<button type="button" aria-controls="' + t.id + '" title="' + t.options.muteText + '" aria-label="' + t.options.muteText + '"></button>'+
  					'<div class="mejs-volume-slider">'+ // outer background
  						'<div class="mejs-volume-total"></div>'+ // line background
  						'<div class="mejs-volume-current"></div>'+ // current volume
  						'<div class="mejs-volume-handle"></div>'+ // handle
  					'</div>'+
  				'</div>')
  					.appendTo(controls),
  			volumeSlider = t.container.find('.mejs-volume-slider, .mejs-horizontal-volume-slider'),
  			volumeTotal = t.container.find('.mejs-volume-total, .mejs-horizontal-volume-total'),
  			volumeCurrent = t.container.find('.mejs-volume-current, .mejs-horizontal-volume-current'),
  			volumeHandle = t.container.find('.mejs-volume-handle, .mejs-horizontal-volume-handle'),
  
  			positionVolumeHandle = function(volume, secondTry) {
  
  				if (!volumeSlider.is(':visible') && typeof secondTry == 'undefined') {
  					volumeSlider.show();
  					positionVolumeHandle(volume, true);
  					volumeSlider.hide()
  					return;
  				}
  			
  				// correct to 0-1
  				volume = Math.max(0,volume);
  				volume = Math.min(volume,1);					
  				
  				// ajust mute button style
  				if (volume == 0) {
  					mute.removeClass('mejs-mute').addClass('mejs-unmute');
  				} else {
  					mute.removeClass('mejs-unmute').addClass('mejs-mute');
  				}				
  
  				// position slider 
  				if (mode == 'vertical') {
  					var 
  					
  						// height of the full size volume slider background
  						totalHeight = volumeTotal.height(),
  						
  						// top/left of full size volume slider background
  						totalPosition = volumeTotal.position(),
  						
  						// the new top position based on the current volume
  						// 70% volume on 100px height == top:30px
  						newTop = totalHeight - (totalHeight * volume);
  	
  					// handle
  					volumeHandle.css('top', Math.round(totalPosition.top + newTop - (volumeHandle.height() / 2)));
  	
  					// show the current visibility
  					volumeCurrent.height(totalHeight - newTop );
  					volumeCurrent.css('top', totalPosition.top + newTop);
  				} else {
  					var 
  					
  						// height of the full size volume slider background
  						totalWidth = volumeTotal.width(),
  						
  						// top/left of full size volume slider background
  						totalPosition = volumeTotal.position(),
  						
  						// the new left position based on the current volume
  						newLeft = totalWidth * volume;
  	
  					// handle
  					volumeHandle.css('left', Math.round(totalPosition.left + newLeft - (volumeHandle.width() / 2)));
  	
  					// rezize the current part of the volume bar
  					volumeCurrent.width( Math.round(newLeft) );
  				}
  			},
  			handleVolumeMove = function(e) {
  				
  				var volume = null,
  					totalOffset = volumeTotal.offset();
  				
  				// calculate the new volume based on the moust position
  				if (mode == 'vertical') {
  				
  					var
  						railHeight = volumeTotal.height(),
  						totalTop = parseInt(volumeTotal.css('top').replace(/px/,''),10),
  						newY = e.pageY - totalOffset.top;
  						
  					volume = (railHeight - newY) / railHeight;
  						
  					// the controls just hide themselves (usually when mouse moves too far up)
  					if (totalOffset.top == 0 || totalOffset.left == 0)
  						return;
  					
  				} else {
  					var
  						railWidth = volumeTotal.width(),
  						newX = e.pageX - totalOffset.left;
  						
  					volume = newX / railWidth;
  				}
  				
  				// ensure the volume isn't outside 0-1
  				volume = Math.max(0,volume);
  				volume = Math.min(volume,1);
  				
  				// position the slider and handle			
  				positionVolumeHandle(volume);
  				
  				// set the media object (this will trigger the volumechanged event)
  				if (volume == 0) {
  					media.setMuted(true);
  				} else {
  					media.setMuted(false);
  				}
  				media.setVolume(volume);			
  			},
  			mouseIsDown = false,
  			mouseIsOver = false;
  
  			// SLIDER
  			
  			mute
  				.hover(function() {
  					volumeSlider.show();
  					mouseIsOver = true;
  				}, function() {
  					mouseIsOver = false;	
  						
  					if (!mouseIsDown && mode == 'vertical')	{
  						volumeSlider.hide();
  					}
  				});
  			
  			volumeSlider
  				.bind('mouseover', function() {
  					mouseIsOver = true;	
  				})
  				.bind('mousedown', function (e) {
  					handleVolumeMove(e);
  					t.globalBind('mousemove.vol', function(e) {
  						handleVolumeMove(e);
  					});
  					t.globalBind('mouseup.vol', function () {
  						mouseIsDown = false;
  						t.globalUnbind('.vol');
  
  						if (!mouseIsOver && mode == 'vertical') {
  							volumeSlider.hide();
  						}
  					});
  					mouseIsDown = true;
  						
  					return false;
  				});
  
  
  			// MUTE button
  			mute.find('button').click(function() {
  				media.setMuted( !media.muted );
  			});
  
  			// listen for volume change events from other sources
  			media.addEventListener('volumechange', function(e) {
  				if (!mouseIsDown) {
  					if (media.muted) {
  						positionVolumeHandle(0);
  						mute.removeClass('mejs-mute').addClass('mejs-unmute');
  					} else {
  						positionVolumeHandle(media.volume);
  						mute.removeClass('mejs-unmute').addClass('mejs-mute');
  					}
  				}
  			}, false);
  
  			if (t.container.is(':visible')) {
  				// set initial volume
  				positionVolumeHandle(player.options.startVolume);
  
  				// mutes the media and sets the volume icon muted if the initial volume is set to 0
          if (player.options.startVolume === 0) {
            media.setMuted(true);
          }
  
  				// shim gets the startvolume as a parameter, but we have to set it on the native <video> and <audio> elements
  				if (media.pluginType === 'native') {
  					media.setVolume(player.options.startVolume);
  				}
  			}
  		}
  	});
  	
  })(mejs.$);