0

I want to know if Laravel 5.4 or greater supports chunked file upload for large file size also resumable support in case of network issue.

I have to upload big size videos but due to the network issue, this becomes heck to upload those.

So is there any package or anything. Currently, I am using ajax file upload.

Sumit Rai
  • 65
  • 5
  • 13

1 Answers1

1

Yes, try to use this library: https://packagist.org/packages/pion/laravel-chunk-upload

Installation:

composer require pion/laravel-chunk-upload

Add service provider:

\Pion\Laravel\ChunkUpload\Providers\ChunkUploadServiceProvider::class
Adam Kozlowski
  • 5,606
  • 2
  • 32
  • 51
  • Is this upload is Resumable. In case of network connection is lost will this start remaining upload? – augustine jenin Sep 25 '19 at 11:52
  • i started the upload , in the middle i refresh the page.When i upload the same file again it starts as new upload.is it possible start the upload from where it was stopped first. i found one demo here https://tus.io/demo.html is it possbile to do same in pio/laravel – augustine jenin Sep 25 '19 at 12:16