Feature Request
Describe the Feature Request
I have used Camera plugin to get photos from the user's media gallery (on Android), and it worked very well - however, I would also like for users to be able to import & capture videos.
Platform Support Requested
Describe Preferred Solution
Camera.getMedia({
mediaTypes: [CameraMediaType.Photo, CameraMediaType.Video],
videoQuality: CameraVideoQuality.Medium,
...
})
When CameraMediaType.Video and CameraSource.Photos (or should it be CameraSource.Library?) is specified, list videos in the gallery feed alongside photos (like they appear when you use the Samsung Gallery app or similar). Accept video quality parameters similar to UIImagePickerController.QualityType.
Describe Alternatives
Currently I am using <input capture> (see spec) but this is painfully inefficient as the media's binary data must cross the bridge as Base64 (which can take tens of seconds on slower devices). It is also unstable on iOS leading to termination of the webview.
Feature Request
Describe the Feature Request
I have used
Cameraplugin to get photos from the user's media gallery (on Android), and it worked very well - however, I would also like for users to be able to import & capture videos.Platform Support Requested
Describe Preferred Solution
When
CameraMediaType.VideoandCameraSource.Photos(or should it beCameraSource.Library?) is specified, list videos in the gallery feed alongside photos (like they appear when you use the Samsung Gallery app or similar). Accept video quality parameters similar toUIImagePickerController.QualityType.Describe Alternatives
Currently I am using
<input capture>(see spec) but this is painfully inefficient as the media's binary data must cross the bridge as Base64 (which can take tens of seconds on slower devices). It is also unstable on iOS leading to termination of the webview.