Are there any useful Javascript or JQuery plugins for getting the length of a video (e.g. mp4, flv - I am open to any video format as long as I can get the video length) before playing the video file?
UPDATE 1:
<video controls>
<source src="video.mp4" onerror="fallback(this.parentNode)">
video not supported
</video>
<script>
document.write("The duration is: " + video[0].duration);
</script>