Gary Katsevman
Gary Katsevman
How are you compiling/bundling your javascript? Webpack? If so, what version? Can you look at the [webpack-visualizer](https://chrisbateman.github.io/webpack-visualizer/) or [source-map-explorer](https://github.com/danvk/source-map-explorer) and see if you have two versions of video.js? I wonder...
Oh, I think the issue here might be a bit separate than videojs/video.js#4580. Seems like in this case video.js is included twice for some reason. Once with dashvue and ones...
Unfortunately, quality-levels support never got implemented. You'll need to use the DASHjs API directly to interact with those.
I don't think that this project works with contrib-eme. I believe everything is handled directly by DASH.js. I'm pretty sure that DASH.js has similar functionality, and if it does you'll...
this may be that videojs-errors expects the player to be created when it is initialized and so initializing it via options is too early for it. We probably should guard...
I think the change here with `external` usage on rollup which puts in declared dependencies in AMD is a breaking change for users. Also, the requirement on using `map` for...
So, looking into why this is happening and I think it's because rollup's `globals` is broken and potentially doesn't match our expectations. The UMD bundle it generates will always require/define...
This is a typescript issue. It doesn't like our plugin system and will complain about it.
Video.js has the player be focusable with a click via `tabindex=-1`. Looks like YouTube has a mix of global key binding as well as player key-binding. YouTube also has `tabindex=-1`...
After making the PR, I remembered about https://github.com/muxinc/media-chrome/discussions/134. The question is does this make fullscreen an unavailable thing? In some ways, I think that the behavior of showing the button...