is there any plans for chunked upload files?

Sorry if my English is meh, what I was looking is for information about if exists any plans to make FileUpload to upload BIG files in chunks. Currently I’m developing a plugin (for personal use) to address this issue but Ik wondering if there’s any plan in the future. The reason is that right now I’m developing a platform where the clients can upload some video assets, and those videos can be like 50GB so for the moment I’m addressing the issue by just uploading directly to Google Drive (Google Drive Picker) while I’m developing this plugin to upload really big files.
5 Replies
krekas
krekas3w ago
roadmap is public https://github.com/orgs/filamentphp/projects/2/ if it's not in there I would guess there are no plans
Nick Ruddra
Nick Ruddra3w ago
This maybe outside of filament! 50 gb is huge file so you need to use queue + ffmpge like package to create chunks!!
Tetracyclic
Tetracyclic3w ago
They presumably mean chunking the upload, not the file itself. FilePond supports chunked uploads, but it doesn't seem like there is direct support for the FileUpload component. You might find some useful inspiration in this "very hacky and messy" Filament plugin that implements it, @Comandante_COG: https://github.com/0wain/filament-chunked-file-uploads/tree/main And FilePond's docs: https://pqina.nl/filepond/docs/api/server/#process-chunks
Comandante_COG
Thanks for the response Thanks for the response Thanks for the response
Comandante_COG
I was reading that already, that’s why I came with the question, to see if there’s any future idea to allows users to upload but files without the need to hugely incremente de size in the .ini file. Recently I was reading about a way to upload directly to S3 even the tmp files created on the server, I will try this:
No description