All Questions
12 questions
0
votes
1
answer
452
views
Can I customize the error message displayed when React Player cannot play a video?
I have a use case for React Player (https://www.npmjs.com/package/react-player) where the video that is being displayed from a Cloudfront presigned URL might not exist.
Currently, when the user tries ...
1
vote
0
answers
976
views
Playing a specific time of a video in ReactJs
Suppose you have a full video with a total time of 43 minutes.
Is there any way to kind of split it and show only a specific part of it?
for example from 05:03:00 to 08:40:30.
Actually, I used ...
0
votes
1
answer
334
views
Vue equivalent for the ReactPlayer component [closed]
I've been using the ReactPlayer component in the past and was wondering if there is a Vuejs equivalent to it?
I found this, but this component doesn't seem to be maintained anymore + doesn't have all ...
3
votes
0
answers
1k
views
Cannot play video via react-player on iOS devices
We use DigitalOcean spaces as a storage for media files. When I try to play any uploaded video with react-player I only see a crossed-out play button. The problem only occurs on iOS devices both in ...
2
votes
1
answer
1k
views
React Player subtitles are not showing
I receive my subtitles dynamically from the remote API but I can't get them to show in my react-player
<ReactPlayer
width="100%"
height="100%"
url={...
0
votes
1
answer
3k
views
Hide Something in Video in React
I need to hide the icon encircled on the picture below? How can I hide it? I'm using react-player.
Pls check this codesandbox
CLICK HERE
<ReactPlayer
url="https://bitdash-a.akamaihd.net/...
0
votes
0
answers
590
views
Clicking Video Doesn't Play in IOS in React
I have a problem on playing the video when I click the play button on the center. I'm using react-player for it. I still need to click the play on the controls on the bottom just to play it. This only ...
2
votes
0
answers
317
views
video element not filling div completely (React Player)
Code available here:
https://codesandbox.io/s/optimistic-saha-i2j64?file=/src/App.js
I am having an issue getting React Player to fill the entirety of it's parent div, as you can see in the image ...
1
vote
0
answers
278
views
player in background tab doesn't play next playlist track (autoplay policy ?)
I use the react-player module in a React music app i'm working on.
My app has a music playlist. When a track has finished playing, it goes to the next one automatically.
Problem is, when the browser ...
3
votes
3
answers
3k
views
React local video does not load in production
I am trying to loop a very simple video contained in src/Assets/videos.
When I deploy a local server with npm start, the video performs as expected, however, when I publish to production the video ...
0
votes
1
answer
539
views
HTML Video failing on mobile
I'm playing a video in ReactPlayer that generates an HTML5 video in a <video> tag. It's not working on mobile (tested on Safari, Chrome, and Firefox on iPhone 8 iOS 13.5.1)
I saw this question ...
4
votes
4
answers
15k
views
Video is not auto playing on IOS by using react-player npm
I want to play video when user comes to the page, it is working fine for all the platform except IOS.
I am using react-player npm. I have tried by passing muted property but doesn't work.
My code ...