Gary Katsevman
Gary Katsevman
By default, Video.js uses native HLS on Safari. Also, I don't think we ever got MSE working with EME yet. Are you using native HLS or MSE? If it's native,...
Oops, this is definitely something that we want to have.
In addition to making sure that the video element gets the option set appropriately, we should make sure that when `crossorigin` is set to `"use-credentials"`, TextTrack sets `withCredentials` on the...
I wrote up some more direction on here: https://github.com/videojs/video.js/pull/5682#issuecomment-447040474
Video.js 7.8 pre-release has a new option and method to set the crossorigin attribute/`crossOrigin` property thanks to @citosid and @sodabrew.
We have not integrated this into VHS yet, for now, for DASH/HLS you'll need to set [withCredentials](https://github.com/videojs/http-streaming/#withcredentials), see https://github.com/videojs/http-streaming/#initialization for a couple examples.
VHS isn't configured as a top level option for Video.js. Try: ```js player = window.player = videojs('player', { html5: { hls: { withCredentials: true, } }, controls : true, fluid:...
Version 7.8 includes crossorigin support. The change in a4ea1f9657e1f36471e20225526d0460e77f8b40 while classified as a fix feels more like a minor level thing. I'm currently looking at #6640 and will likely release...
Also, wanted to add. The reason why this was kept open because there were basically 3 phases for this and only one is currently released, second is merged, and third...
`fill` is available as of 7.3. https://github.com/videojs/video.js/pull/5478