1
  • I am using react-native camera to record video.
  • Its play in iOS but not play in android
  • Extension is : .mov for iOS and .mp4 for android

<Video source={{uri:videoUri}} type="mp4"/>

1 Answers1

-1

Please use below code,

import {Platform} from 'react-native';

<Video source={{uri:videoUri}} type=Platform.OS === 'ios'? "mov" : "mp4" />
Vijay Kahar
  • 1,082
  • 1
  • 7
  • 20