FineUploader / fine-uploader

Multiple file upload plugin with image previews, drag and drop, progress bars. S3 and Azure support, image scaling, form support, chunking, resume, pause, and tons of other features.
https://fineuploader.com
MIT License
8.18k stars 1.87k forks source link

Add ability to provide chunks to uploader #2040

Open Kontsedal opened 6 years ago

Kontsedal commented 6 years ago

Type of issue

Uploader type

Feature Request #### Feature request details I think it is better to provide a use case. You have a video stream recorder(webcam, audio, desktop etc.). During recording it generates Blobs which must be uploaded to S3. Currently, Fineuploader suppots only complete files which will be splitted to chunks and uploaded. Request is to provide more low level API for multipart chunked uploading, for example: ```javascript let fileId = uploaderInstance.createMultipartUpload(); uploaderInstance.addChunk(fileId, blob1); uploaderInstance.addChunk(fileId, blob2); uploaderInstance.addChunk(fileId, blob3); uploaderInstance.completeMultipartUpload(fileId); ```
singhjusraj commented 6 years ago

I don't know whether this is even doable. Maybe @rnicholus can chime in on this. But I don't see this happening anytime soon unless someone want to give it a shot. PR's are welcome..