I have a m3u8 source that I am trying to play via a video.js player. When I try it, I see a black screen and the console log has the message " "No compatible source and playback technology were found." This is the HTML:
<html>
<head>
<title>Test Player</title>
<link href="http://vjs.zencdn.net/c/video-js.css" rel="stylesheet"
type="test/css">
<script src="http://vjs.zencdn.net/c/video.js"></script>
</head>
<body>
<h3>Using m3u8 source</h3>
<video id="example_video_1" class="video-js vjs-default-skin" controls
autoplay width="640" height="360" data-setup="{}">
<source
src="http://184.72.239.149/vod/smil:BigBuckBunny.smil/playlist.m3u8"
type="application/x-mpegURL" />
</video>
</body>
</html>
The type is correct (i.e., "application/x-mpegURL") and I don't see any indication of a CORS issue. I've test with both Chrome and Firefox browsers with identical results. Any suggestions would be most appreciated.