Pete Cook
Pete Cook
>Uncomment setPlayed inside handleProgress to see issue >https://codesandbox.io/s/strange-sun-cw9oq?file=/src/App.js:301-311 Notice the flickering stops when you change `url={['file.mp4']}` to `url='file.mp4'`. ReactPlayer is re-rendering because `url={['file.mp4']}` passes in a newly instantiated array as...
Yep, or just tell ReactPlayer not to re-render or reload if the `url` is an array and the items have not changed. Maybe.
@wouter-deen If you can create something that reproduces the issue, I can take a look.
The [URL matching patterns](https://github.com/cookpete/react-player/blob/master/src/patterns.js) have been put together over time mostly based on trial and error and PRs to correct them. I will gladly look at a PR updating the...
To anyone who stumbles across this in the future – there is a hacky way of adding a class to the `tippy-popper` element. Because of this line: https://github.com/tvkhoa/react-tippy/blob/b2e430ec9a112b313f5744aa879a6ef3d27e838e/src/Tooltip/js/core/createPopperElement.js#L35 You can...
Hard to investigate this without more info. Wistia videos work fine for me. Did you see the issue template? 
This seem to work for Twitch but only once the player has tapped on the video itself (not just tapped to unmute). If I tap to unmute and then lock...
>Also wanted to point out that the often suggested "responsive-player" section does not solve this bug. See below images with the exact responsive player formatting applied. The responsive player only...
Unless you are passing `config={{ forceHLS: true }}`, HLS streams on iOS use the native HLS support of the device and do not use `hls.js`. I’m not sure what we...
@ferrero1987 Do you have a reproducible example of this happening? Does anyone?