使用videojs和videojs-contrib-hls无法配置HLS和videojs.tech.hls不会使用react js。
import videojs from "video.js";
window.videojs = videojs;
import video from 'videojs-contrib-hls';
let player = videojs("really-cool-video",{html5: {
hls: {
withCredentials: true,
useCueTags:true
}}});
player.src({
src: "http://clips.vorwaerts-gmbh.de/big_buck_bunny.webm",
type: 'video/webm'
});
let hls = player.tech({ IWillNotUseThisInPlugins: true }).hls;
这里hls未定义即将到来。