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

Videojs Warn Player.tech--.hls Is Deprecated. Use Player.tech--.vhs Instead Today

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'); player

var player = videojs('my-video', { html5: { vhs: { overrideNative: true } } }); Use code with caution. Why the Change Happened var player = videojs('my-video')