I am using videojs to play html5 videos, of varying dimensions. Is it possible to detect the height/width of a video file using jQuery (or another scripting language for th
You could get the height of the video maybe using the height attribute (if it's set on the element...
$('#idOfVideoElement').attr('height');