977e86ea by David LaPalomento

Use bipbop in example.html

Switch the example to use the locally committed HLS fixture to avoid CORS issues when trying it out. It will still be necessary to load the example page through a web server, though.
1 parent df9faa3f
......@@ -52,7 +52,9 @@
videojs.options.flash.swf = 'node_modules/videojs-media-sources/video-js-with-mse.swf';
video = videojs('video',{},function(){
this.playbackController = new window.videojs.hls.HLSPlaybackController(this);
this.playbackController.loadManifest('http://localhost:7070/test/basic-playback/zencoder/gogo/manifest.m3u8',function(data){console.log(data)});
this.playbackController.loadManifest('test/fixtures/bipbop.m3u8', function(data) {
console.log(data);
});
});
</script>
......