react-native-vlc-media-player
                                
                                 react-native-vlc-media-player copied to clipboard
                                
                                    react-native-vlc-media-player copied to clipboard
                            
                            
                            
                        Doesn't work with local videos
I'm testing the latest versions of the library and it works correctly with online videos, but it doesn't work with videos stored locally.
Hi, can you please post you uri?
es.
const fileName = `${RNFS.DocumentDirectoryPath}/video.mp4`
this.setState({localUri: fileName});
// then in render ...
<VLCPlayer
          style={{width: '100%', height: 250}}
          autoAspectRatio={true}
          videoAspectRatio={`${windowWidth}:258`}
          autoplay={true}
          onProgress={() => {
            console.log('onProgress')
          }}
          source={{
            uri: this.state.localUri,
          }}
        />
Just letting people know who comes to see this issue, local videos are working fine.