On my Appcelerator titanium mobile project i have to record video and upload this to our server. Recording is not difficult for me, it's quite easy, and i could return the video url properly from :
Titanium.Filesystem.getFile(Titanium.Filesystem.applicationDataDirectory, 'myVideo.mp4');
so i can get native path :
myVideoPath = f.nativePath;
From there i don't know how to upload the file, for an image i just base64 the blob, but for a video file how can handle this?
Thanks for your precious help.