We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using
"video.js": "^8.12.0" "videojs-contrib-eme": "^4.0.0"
I initialize video.js player, initialize eme and try to add headers, but they are not being sent.
`const videoElement = document.createElement("video-js");
videoElement.classList.add("vjs-big-play-centered"); (videoRef.current as any).appendChild(videoElement); const player = (playerRef.current = videojs(videoElement, options, () => { videojs.log("player is ready"); onReady && onReady(player); })); (player as any).eme(); player.src({ src: "https://...playlist.m3u8", type: "application/x-mpegURL", emeHeaders: { Authorization: `Bearer=test`, }, });`
Am I missing any step here, I also tried with different (older) versions of the libraries.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am using
"video.js": "^8.12.0" "videojs-contrib-eme": "^4.0.0"
I initialize video.js player, initialize eme and try to add headers, but they are not being sent.
`const videoElement = document.createElement("video-js");
Am I missing any step here, I also tried with different (older) versions of the libraries.
The text was updated successfully, but these errors were encountered: