Does WordPress support Plupload chunking when uploading asynchronously?
I'm using the Plupload library to upload audio files to my website from the front-end. Here is an example of my Plupload config:
var uploader = new plupload.Uploader({
browse_button : 'browse',
file_data_name : 'async-upload',
multipart_params: {
action : 'upload-attachment'
},
url : ajax_url,
flash_swf_url : flash_swf_url,
silverlight_xap_url : silverlight_xap_url,
chunk_size : '200kb',
max_retries : 3
});
My aim is to break files down into smaller 'chunks' whilst uploading. Plupload has built-in support for this.
My question
An example of server-side chuck handling is provided by Plupload. Does WordPress handle chunks server-side when uploading asynchronously or is this something I have to do myself?