Playing video from given url in extjs is quite easy:
Ext.application({
name : 'Fiddle',
launch : function() {
Ext.create('Ext.panel.Panel', {
renderTo: Ext.getBody(),
itemId: 'foo',
html: '<iframe width="300" height="200" src="//content.jwplatform.com/videos/HkauGhRi-640.mp4" frameborder="0" allowfullscreen></iframe>',
});
}
});
However, hot to play (preview) local video file with filefield
?