Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Add ability to provide chunks to uploader #2040

Description

@Kontsedal

Type of issue

  • Bug report
  • Feature request

Uploader type

  • Traditional
  • S3
  • Azure
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:

let fileId = uploaderInstance.createMultipartUpload();
uploaderInstance.addChunk(fileId, blob1);
uploaderInstance.addChunk(fileId, blob2);
uploaderInstance.addChunk(fileId, blob3);
uploaderInstance.completeMultipartUpload(fileId);

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions