0

Plugin Url

this below code doesn't allow durationLimit filter.

Image Picker version: 4.6.0 React Native version: 0.66.3 Platform: iOS Development Operating System: MacOS Dev tools: Xcode, iOS

mediaType: 'video',
videoQuality: 'medium',
durationLimit: 30,
allowsEditing: true,
};
launchImageLibrary(options, async res => {

});

Avruti
  • 67
  • 1
  • 8

1 Answers1

1

durationLimit only works for videos taken from camera

For video Duration Limit in iOS

ImagePicker.launchCamera(    
{
    mediaType: 'video',
    durationLimit: 30,              
},