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

خصائص اضافية للتعامل مع الفيديو

Abdullah Alhazmy edited this page Sep 11, 2016 · 1 revision
  • mode لتغير اسلوب التقاط الفيديو سواء من الكاميرا فقط او الاستديو فقط او الاثنين CAMERA,GALLERY or` CAMERA_AND_GALLERY
.mode(VideoPicker.Mode.CAMERA)
  • extension لتغير امتداد الفيديو مابين _MP4 , _MKV or _3GP
.extension(VideoPicker.Extension._MP4)
  • directory تستطيع تغير مسار حفظ الفيدو الى المسار الذي تريده او تستطيع تمرير Directory.DEFAULT_DIR لحفظ الفيديو في المسار الافتراضي للمكتبة.
.directory(VideoPicker.Directory.DEFAULT)

//OR

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