I'm trying to host my videos with Vimeo and use VideoJS to display them on the front end. Here is the sample page:
https://jsfiddle.net/zhdnmxt8/
<div>
<video id="example_video_1" class="video-js vjs-default-skin"
controls preload="auto" width="auto" height="auto"
data-setup='{}'>
<source src="//player.vimeo.com[...]" type="video/mp4" data-quality="hd" data-res="HD" data-default="true">
<source src="//player.vimeo.com/[...]" type="video/mp4" data-res="SD">
<p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>.</p>
</video>
</div>
Press Play to get the audio but there's no video that displays. Why is this?
Note: VideoJS CDN JS and CSS are included via External Resources at JSFiddle.