Parse.com に Android 端末から MP4 の映像をアップロードする方法がわからないです。

File file=new File(path);
    try {
        byte[] data = FileUtils.readFileToByteArray(file);//Convert any file, image or video into byte array
        ParseFile Pfile = new ParseFile("sample.mp4", data);
        Pfile.saveInBackground();
        ParseObject jobApplication = new ParseObject("JobApplication");
        jobApplication.put("applicantName", "Joe Smith");
        jobApplication.put("applicantResumeFile", Pfile);
        jobApplication.saveInBackground();
    } catch (IOException e) {
        e.printStackTrace();
    }