Videojs Warn Player.tech--.hls Is Deprecated. Use Player.tech--.vhs Instead -
: References the new, unified engine that supports both HLS and DASH. How to Fix the Deprecation
To resolve this warning and ensure your code is future-proof, you should update how you access the HLS tech properties in your JavaScript: 1. Update Property Access : References the new, unified engine that supports
// Old (Deprecated) var player = videojs('my-video', hls: overrideNative: true ); // New (Recommended) var player = videojs('my-video', vhs: overrideNative: true ); Use code with caution. Copied to clipboard : References the new