Hi,
Im using the latest version of your player which is great!
I have an issue with my videos on iOS...
Its just doesnt play although its set to mute (only in safari)
android works just fine
<ReactPlayer
ref={videoRef => (this._videoPlayer = videoRef)}
url={this.urlsArray}
style={style}
playing={this.shouldPlayVideo()}
config={config}
muted={true}
volume={0}
loop={loop}
width="100%"
height="100%"
/>
This is how I use it... this.shouldPlayVideo returns true or false.
Im trying to play a video from a file....
Thanks for your help!
Solved, if someone else encounters this issue the missing part was to add playsinline={true} to the component props
Most helpful comment
Solved, if someone else encounters this issue the missing part was to add playsinline={true} to the component props