I'm trying to add a video player, I'm using react-native-video-controls to add controls on my video but it has a problem with resetting a pause
code:
handleExitFullScreen = () => {
this.setState({
fullScreen : false
…
I am using the react-native https://github.com/react-native-community/react-native-video library to play the videos in my mobile app.
Now I wanted to show the playable duration ( amount of video that is already loaded in the player) as you can see…
I am trying to implement live video streaming functionality using "react-native-nodemediaclient". And facing the issue in android device. It works properly in ios.
Unable to open the camera in an android device while using ignite boilerplate to…
Is there a way to create App in react native which can be used to record audio and video and save same file on both Android and iOS Devices using App?
Please help me as I am stuck.
Thank You.
I am trying to make my home page like instagram.
so like instagram, I want to play video only when scrollview reach that video and video will play automatically.
I have tried this code
this.scrollView = ref}
…
I have few audio, image and video files present in the gallery. But it is not scrollable. Is there any additional controllers which I should use to make it scrollable? How can i achieve it? I'm using the react-native-gallery module.
Just installed and linked react-native-fullscreen-video library and got this error:
undefined is not an object (evaluating 'Orientation.lockToPortrait')
Then I installed react-native-orientation library and get another error:
undefined is not an…
I am working on a react native app which involves a video player (react-native-video), and some simple controls I set up myself. on iOS this works fine, but on Android the TouchableOpacity elements, which I use for controls and navigation, don't…
I am trying to display a video in react-native. But having some issues. 'till now this what I did: I install react-native-video. and also linked it.
And this is the codes:
import React, {Component} from 'react';
import {
AppRegistry,
…
is there any way to use (enable/disable) in runtime the subtitles of the running video? I am actually using this package: https://github.com/abbasfreestyle/react-native-af-video-player and does not show directly how to use them, but going to the…
I've implement video scrolling using Flatlist and below libraries.
react-native-video
react-native-orientation
On click of play button it starts video in same frame as shown under:
I want to play video in landscape fullscreen on click of the play…
Current behavior
When I attempt to invoke the Video library (import { Video } from 'react-native-video') my application breaks with the error of Module AppRegistry is not a registered callable module (calling runApplication)
Reproduction steps
My…
I have a difficulty here showing video using react-native-video.
The server is using Express, and using GridFSBucket to retrieve the video from mongodb.
The problem is that:
The video from GridFSBucket won't show. But when I tried to place the video…
I am trying to disable the seek function on react native video. I have a full video that I want to preview for 30 seconds. In order to do this I want to disable the seek button so a user cannot skip through the video.
I have tried giving onSeek the…