I have the following jQuery, which I think should pass a sliced file to PHP:
var blob = f.slice(start, stop);
var formData = new FormData();    
formData.append('fileUpload', blob, f.name);
$.ajax({
     url: 'save.php',
     type: 'POST',
     data: formData,
     processData: false,
     contentType: false,
     success: function(msg){
          alert("Success: " + msg);
     },
     error: function(bla, msg){
          alert("Fail: " + msg);
     }
});
However, I'm not sure what the PHP should look like to save the blob to a file.
The intention is for the browser to slice the file and then save the output.