343 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
54
views
How do I render multiple videos performantly?
I'm trying to render a scrollable grid of videos in React Native. Currently, I'm storing the videos as .mp4 files on Google Cloud Storage then fetching and rendering them using react-native-video's ...
0
votes
0
answers
107
views
react-native-video not showing subtitles from `.srt` files
I'm trying to display subtitles in a react-native-video player v6, but the subtitles are not showing at all. I’m fetching .srt files from a server and passing them via the textTracks prop.
Here's my ...
4
votes
1
answer
146
views
captions not working in react-native-video
I'm using the react-native-video package in my React Native app, and I want to display captions/subtitles.
I tried using the textTracks and selectedTextTrack props, but the captions are not showing on ...
0
votes
0
answers
111
views
Streaming a HLS-Stream results in 1 FPS on Device with expo video
We are trying to display an HLS livestream (m3u8) in a React Native Expo app. The livestream works perfectly and smoothly in the iOS simulator (started via expo run:ios). However, we are experiencing ...
0
votes
1
answer
124
views
React Native upgrade breaks video background layering on Android (react-native-video 6.14.0)
I’m upgrading a React Native app from version 0.74.3 to 0.79.2, and also updating react-native-video from 6.3.0 to 6.14.0.
Before this upgrade, a full-screen background video rendered correctly behind ...
3
votes
0
answers
52
views
Keyboard horizontal and vertical cutoff issue react-native iPhone App: while using react-native-video(5.2.2) in react native version 0.66
We facing issue of Keyboard horizontal and vertical cutoff while using
react-native-video(5.2.2)
react native app version 0.66
iPhone 13 with iOS version 18.4
Built with Xcode version 16.2 (...
0
votes
1
answer
146
views
React native video rotation
React native expo video view is not rotating the video.
I want to rotate a react native video view to 90deg, I am seeing only the video controllers are getting rotated but the video is still in that ...
1
vote
1
answer
317
views
react-native-video hls streaming not working on ios
I am trying to stream a video using HLS and display it using react-native-video. On android both video and sound work although the video is distorted.
On ios, the streaming does not work at all. React-...
0
votes
0
answers
259
views
react-native-video player issue
useFocusEffect(
React.useCallback(() => {
// Start playing the video when the screen gains focus
if (videoRef.current) {
setPlaybackRate(1.0);
}
// ...
1
vote
1
answer
410
views
Cannot find type 'RCTEventDispatcher' in scope | react-native-video
Can`t build project on IOS.
Error:
Cannot find type 'RCTEventDispatcher' in scope
React-native v0.73.6 + react-native-video ^6.5.0
import AVFoundation
import AVKit
import Foundation
#if ...
0
votes
2
answers
2k
views
Invariant Violation: requireNativeComponent: "RCTVideo" was not found in the UIManager
Error:
Invariant Violation: requireNativeComponent: "RCTVideo" was not found in the UIManager.
using react-native-video(last version)
react-native version >0.60
react-native cli**(NOT ...
2
votes
1
answer
545
views
react-native-video: requireNativeComponent: "RCTVideo" was not found in the UIManager
I am trying to use react-native-video in my app.
I have this code in my app:
<Video
source={{uri: "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"}} ...
0
votes
2
answers
63
views
How to open video while downloading like TikTok and YouTube using React Native
Is there a way to open the video file while it is downloading and watch all that is downloaded, one megabyte or more, using React WinTap?
Is there a way to open the video file while it is downloading ...
0
votes
0
answers
226
views
How to stop background music when playing a video in React Native and resume it after pausing?
I'm developing an app using React Native, and I'm facing an issue with controlling background music when a video is played. Specifically, I want to mimic Instagram's behavior where:
The background ...
1
vote
0
answers
311
views
Execution failed for task ':app:createBundleReleaseJsAndAssets'. but I don't know why? prebuild is good. but production build is not
I'm tried my react-native application build with expo-cli, but build failed with this error:
Execution failed for task ':app:createBundleReleaseJsAndAssets'
because I input local video file. It does ...