Video.js
3.61 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
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* licensing@sencha.com
* http://www.sencha.com/license
*/
// From code originally written by David Davis (http://www.sencha.com/blog/html5-video-canvas-and-ext-js/)
/* -NOTICE-
* For HTML5 video to work, your server must
* send the right content type, for more info see:
* http://developer.mozilla.org/En/HTML/Element/Video
*/
Ext.define('Ext.ux.desktop.Video', {
extend: 'Ext.panel.Panel',
alias: 'widget.video',
layout: 'fit',
autoplay: false,
controls: true,
bodyStyle: 'background-color:#000;color:#fff',
html: '',
initComponent: function () {
this.callParent();
},
afterRender: function () {
var fallback;
if (this.fallbackHTML) {
fallback = this.fallbackHTML;
} else {
fallback = "Your browser does not support HTML5 Video. ";
if (Ext.isChrome) {
fallback += 'Upgrade Chrome.';
} else if (Ext.isGecko) {
fallback += 'Upgrade to Firefox 3.5 or newer.';
} else {
var chrome = '<a href="http://www.google.com/chrome">Chrome</a>';
fallback += 'Please try <a href="http://www.mozilla.com">Firefox</a>';
if (Ext.isIE) {
fallback += ', ' + chrome +
' or <a href="http://www.apple.com/safari/">Safari</a>.';
} else {
fallback += ' or ' + chrome + '.';
}
}
}
this.fallbackHTML = fallback;
// match the video size to the panel dimensions
var size = this.getSize();
var cfg = Ext.copyTo({
tag : 'video',
width : size.width,
height: size.height
},
this, 'poster,start,loopstart,loopend,playcount,autobuffer,loop');
// just having the params exist enables them
if (this.autoplay) {
cfg.autoplay = 1;
}
if (this.controls) {
cfg.controls = 1;
}
// handle multiple sources
if (Ext.isArray(this.src)) {
cfg.children = [];
for (var i = 0, len = this.src.length; i < len; i++) {
if (!Ext.isObject(this.src[i])) {
Ext.Error.raise('The src list passed to "video" must be an array of objects');
}
cfg.children.push(
Ext.applyIf({tag: 'source'}, this.src[i])
);
}
cfg.children.push(this.getFallback());
} else {
cfg.src = this.src;
cfg.html = fallback;
}
this.video = this.body.createChild(cfg);
var el = this.video.dom;
this.video.on('error', this.onVideoError, this);
this.supported = (el && el.tagName.toLowerCase() == 'video');
},
getFallback: function(){
return {
html: this.fallbackHTML,
style: 'padding: 10px;'
};
},
afterComponentLayout : function() {
var me = this;
me.callParent(arguments);
if (me.video) {
me.video.setSize(me.body.getSize());
}
},
onVideoError: function(){
this.video.remove();
this.body.createChild(this.getFallback());
},
onDestroy: function () {
var video = this.video;
if (video) {
var videoDom = video.dom;
if (videoDom && videoDom.pause) {
videoDom.pause();
}
video.remove();
this.video = null;
}
this.callParent();
}
});