Dynamically calculate height of video, based on its width (responsive).
function setVideoHeight() {
var video = $('.video-js'),
videoW = video.width(),
videoH = videoW / 16 * 9;
video.css({
"height": videoH + "px",
});
}
setVideoHeight();
$(window).resize(function() {
setVideoHeight();
});