Video playback test
HTML
<button id="play">Play video</button>
<video id="video" src='http://dl2.my98music.com/Data/Serial/12%20Monkeys/Season%201/12%20Monkeys%20S01E01%20480p%20HDTV%20%5b98Music%5d.mkv' autobuffer controls type='video/mp4' style='background: rgba(0,0,0,0.7)'></video>
CSS
video {
opacity: 1;
position: absolute;
-webkit-transform: scale(0) translate3d(0,0,0) !important;
transform: scale(0) translate3d(0,0,0) !important;
}
JavaScript
var playVideo = function(){
var video = document.getElementById('video');
setTimeout(function(){
video.currentTime = 0;
video.play();
}, 0);
video.play();
video.webkitEnterFullscreen();
};
document.getElementById('play').addEventListener('click',playVideo,false);