Skip to content
This repository has been archived by the owner on May 30, 2021. It is now read-only.

Additional Options for VideoPicker

Abdullah Alhazmy edited this page Sep 11, 2016 · 1 revision
  • mode to select the mode, you can chose one ot these CAMERA,GALLERY or CAMERA_AND_GALLERY
.mode(VideoPicker.Mode.CAMERA)
  • extension You can change the extanion of image to _MP4 , _MKV or _3GP
.extension(VideoPicker.Extension._MP4)
  • directory You can pass the storage path, or select Directory.DEFAULT_DIR to keep the default path.
.directory(VideoPicker.Directory.DEFAULT)

//OR

.directory(Environment.getExternalStorageDirectory()+"/myFolder")