vimeo / vimeo-unity-sdk

Easily stream your Vimeo videos into Unity or record and publish out to Vimeo.
MIT License
211 stars 49 forks source link

Can't upload very large video files to Vimeo #23

Closed caseypugh closed 5 years ago

caseypugh commented 5 years ago

Describe the issue

When recording a longer, higher quality video (e.g. using AVPro Movie Capture), the file can be pretty big (> 3GB). The way file uploading works is using File.ReadAllBytes, but this will freeze/crash Unity for large files.

Need to upgrade uploader to Tus https://medium.com/vimeo-engineering-blog/vimeo-is-adopting-tus-d5e999acd517 to support chunked uploading

tommypenner commented 5 years ago

@caseypugh FWIW when working with another user implementing chunked tus uploads, we observed very slow/poor performance with small chunks (<10mb). Upload team recommends chunks in 128mb+ sizes for quicker uploads.

caseypugh commented 5 years ago

thank you!

juniorxsound commented 5 years ago

This is now available the latest release 🎉