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

const levels = player.tech_.vhs.levels; levels.forEach((level, idx) => console.log(`Level $idx: $level.heightp`); );

player.tech_.vhs // or player.tech().vhs const levels = player

: References the new, unified engine that supports both HLS and DASH. How to Fix the Deprecation const levels = player.tech_.vhs.levels

);

In this article, we’ll break down:

var player = videojs('my-video'); player.ready(function() var hlsTech = player.tech_.hls; // ⚠️ DEPRECATED console.log(hlsTech.playlist); ); console.log(`Level $idx: $level.heightp`)