我正在使用 React Native 并正在使用https://github.com/lwansbrough/react-native-camera来捕捉视频。在保存视频时,我获得了设备存储的绝对路径。我想将其转换为 URI 以显示它。
{路径:“文件:///storage/emulated/0/DCIM/VID_21324217_242411222.mp4”}
我已经尝试过这样做
<Video
source={{ uri: this.state.videoSource.path}}
....
但它不起作用我错过了什么?如何将此绝对路径转换为 URI,以便在视频播放器中显示它?