Hi thanks for responding, here I have modified the code, but it still does not work. Why is that? var captureSuccess = function(mediaFiles) { var i, path, len; for (i = 0, len = mediaFiles.length; i < len; i += 1) { uploadVideo(mediaFiles ); } }; // Upload file to file database server // capture err...
Hi there, I have modified the code so that i uploads the file to files collection, however, it still doesn't work. var captureSuccess = function(mediaFiles) { var i, path, len; for (i = 0, len = mediaFiles.length; i < len; i += 1) { uploadVideo(mediaFiles ); } }; // do something interesting with the...
Hi, I am creating an app where users can record a video and upload it onto the Appery IO database collection that I called video. However, at the moment, with my existing code, I am only able to record video, but the file does not transfer to the Appery IO database. Here is the code that I used: var...
Hi, so my app records a video, and I used the FileTransfer sample code, but it didn't work. Is it possible if you could type out what kind of code I can use to transfer the video file to a collection I created called Video. Thanks I also used this code in my button, but I can't manage to upload it o...