Reputation: 9685
I'm considering using trigger.io to build an app which can upload videos. As videos can become quite large and also timeconsuming to upload on low bandwith connection, I'm unsure if trigger.io will be able to handle this.
Upvotes: 1
Views: 272
Reputation: 27482
Videos captured with file.getVideo are indeed saved on the device - they are in the gallery, and can be accessed at a later time with the source: "gallery"
option.
We are limited by the device's own storage, obviously, but don't impose limits beyond that.
We do do file uploads in the background - although exactly how this behaves is somewhat platform dependent, so you should make sure your targeted platforms work as you wish.
For chunked uploads, do you mean split the file into sections, to be combined on the server manually? Or do you mean a lower-level resumable upload capability? We don't support this at the moment, but we'd be open to implementing something in the future!
Upvotes: 1