I am using phonegap to build an iPhone application. I recorded the file using the following code.
navigator.device.capture.captureAudio(
captureSuccess, captureError
);
How can i get the file size of this captured audio file?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The captureSuccess method of navigator.device.capture.captureAudio( captureSuccess, captureError ) will be called with an array of MediaFile objects which has the size parameter.