FPS Test 23.976

HTML

<BR>
Frame: <p id="frame"></p>
<BR>
<BR>
<BR>
<video id="video" controls tabindex="0" autobuffer preload>
    <source type="video/mp4" src="http://embed-0.wistia.com/deliveries/3a3039ad671f95c831b75b1128ce0e5dcd21eab7/file.mp4"></source>
    <p>Sorry, your browser does not support the &lt;video&gt; element.</p>
</video>

JavaScript

var vid = $('#video')[0];
var fps = 23.976;

vid.onplay = vid.onclick = function () {
    vid.onplay = vid.onclick = null;       
    
    setInterval(function()
                {
                   vid.play(); 
                   vid.pause();
                }, 30);
};

video.addEventListener('play', function()
{
     $('#frame').html((vid.currentTime * fps).toPrecision(5));
});