Amir.H Ebrahimi
Amir.H Ebrahimi
The default value for the deps is null and use following for inner dependency array ```js deps || [params.options, params.source] ``` I'm somehow losed the context, but think that separating...
Hey @alexandrsek, Could you follow `url` guide from `plyr` documentation > If you wish to override any API URLs then you can do so here. You can also set a...
Hi @protatix, Could you send me an example of preventing preloading source in pure plyr javascript version. I couldn't find one. But for preventing preload, you must `plyr.media.preload = 'none'`...
Every prop expects `source` and `options` are going to be passed directly to underlining the `video` element. [source](https://github.com/chintan9/plyr-react/blob/3ab03e582f9dce2c2fea6e18cadb28ddf094046f/src/index.tsx#L75) But the problem is that we don't rely on dom element for...
Hey @haluvibe , the only non-serverside action I'm suspicious of it is about this line: https://github.com/chintan9/plyr-react/blob/f5d6ab7b26fc4335b8eca499001369c77495cdfd/src/index.tsx#L38 But the error and our last investigation show that the problem was related to...
Hey @bosbode, Thanks for the report Support for React 18 has been added to the core `plyr-react` https://github.com/chintan9/plyr-react/blob/master/package.json#L157 but we need to update the documentation so we can release it....
Hey, @amrtaher1234 thanks for the report, Plyr ecosystem overrides the actual video playing system, so the actual [HTMLMediaElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/play_event) won't work as expected. You can use plyr [Standard Media Events](use https://github.com/sampotts/plyr#standard-media-events)...
Autoplay functionality as deafult is not guaranteed to be safe in cross-browser modes. If it were I would suggest working with passed props. Now I suggest using `usePlyr` and adding...
As plyr core maintainer said: > It needs to be triggered by a user input/event. Just calling plyr.fullscreen.enter() won't work, it needs to happen in an event binding. https://github.com/sampotts/plyr/issues/1981 For...
Have you tried to set the muted property of the video? It might be a good option to forward the issue to plyr team, they have more experience in browser-related...