var player = videojs('my-video'); player.ready(function() { // This triggers the warning var hls = player.tech().hls; console.log(hls.playlists.master); }); Use code with caution. javascript
Video.js HTTP Streaming (VHS) replaced the separate videojs-contrib-hls and DASH plugins.
var player = videojs('my-video', { html5: { vhs: { overrideNative: true } } }); Use code with caution. Why the Change Happened