You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's an issue with mp4 files, they autoplay even if playing={false} is passed as a prop.
It's related with the play() call in players/Base.jscomponentDidMount.
It seems required to init some players (Youtube, SoundCloud...) since they're initialized in the play method. Maybe moving the initalization part in a separate method, and calling this in componentDidMount could avoid this issue.
The text was updated successfully, but these errors were encountered:
Hi,
Thanks for the player, it looks promising.
There's an issue with mp4 files, they autoplay even if
playing={false}
is passed as a prop.It's related with the
play()
call inplayers/Base.js
componentDidMount
.It seems required to init some players (Youtube, SoundCloud...) since they're initialized in the play method. Maybe moving the initalization part in a separate method, and calling this in
componentDidMount
could avoid this issue.The text was updated successfully, but these errors were encountered: