Daniel Herbert created CB-12073:
-----------------------------------

             Summary: PhoneGap / Cordova is crashing when selecting a video 
greater than 59MB
                 Key: CB-12073
                 URL: https://issues.apache.org/jira/browse/CB-12073
             Project: Apache Cordova
          Issue Type: Bug
          Components: Plugin Camera
         Environment: iPhone 6
            Reporter: Daniel Herbert


This is the line of code that is failing, even if I run nothing in the success 
function, it still crashes however the success function is being run for a 
brief second before crashing.

navigator.camera.getPicture(createPostSuccessVideo, cameraError, { quality: 50, 
destinationType: destinationType.NATIVE_URI,  sourceType: 
pictureSource.PHOTOLIBRARY, mediaType: navigator.camera.MediaType.VIDEO, 
correctOrientation : true , saveToPhotoAlbum: false  } );
I noticed the memory usage spikes up to half a GB for some reason.

Taking a video works, only selecting from the gallery is failing.

I occasionally get an exc_bad_access error in Xcode before crashing, other 
times no error just a crash.

This code works for TAKING a video larger than 59mb:

navigator.device.capture.captureVideo(function(imageURI){ 
createPostSuccessVideo(imageURI,1); }, captureError, {limit:1}); 

But I need to be able to select from the users library which fails.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to