Questions tagged [tus]

Open Protocol for Resumeable File Uploads

55 questions
5
votes
3 answers

Problem configuring tusd over https on Nginx

I am trying to setup tusd with Uppy on https without success. It works well on http. Here's my nginx conf file: server { listen 80; listen[::]: 80; server_name DOMAIN.com www.DOMAIN.com; root / srv / users / DOMAIN / apps / DOMAIN /…
user4403148
5
votes
1 answer

Resume file uploading using Tus protocol

I am developing a website using Laravel, and I am using tus-js-client to upload files directly to Vimeo without going through my server. The uploading works perfect. But, lets say the uploading reached 44%, and then the user refreshed the browser...…
rook99
  • 1,034
  • 10
  • 34
4
votes
2 answers

Vimeo API: upload video files using resumable approach

I'm following the Vimeo api's guide about resumable uploads (https://developer.vimeo.com/api/upload/videos#resumable-tus-upload). I get a response after the first request but I get an undefined response for the second request (step 2. Upload the…
Pontus
  • 81
  • 1
  • 4
3
votes
1 answer

Upload to vimeo with tus-js-client

I’m new to tus and I’m using tus-js-client. I’m following the example in this link https://github.com/tus/tus-js-client/blob/master/docs/usage.md#example-upload-to-vimeo. I was able to successfully upload a video on Vimeo but I would like to set the…
dahnfalomi
  • 33
  • 4
3
votes
2 answers

Convert Laravel Route::any into Lumen Route

i'm setting up tus.io php server from https://github.com/ankitpokhrel/tus-php/wiki/Laravel-&-Lumen-Integration but i'm stuck at converting routes::any from laravel to lumen route Route::any('/tus/{any?}', function () { $response =…
Rachman Fauzan
  • 95
  • 1
  • 2
  • 7
2
votes
0 answers

Vimeo Resumable approach using Uppy Tus failed with response code: 412, response text: unsupported version

i am implementing Vimeo video upload using resumable approach using Uppy Tus So first i am making a call to my backend, and using Vimeo laravel package, i am creating the video, $vimeoResponse = Vimeo::request('/me/videos', [ …
Ashraful Islam
  • 895
  • 7
  • 17
2
votes
1 answer

Upload large Video

I am uploading images/pdf to S3Uploads and video to JwPlayer. it is working fine. Now I need to upload large video it can be 10,20... GB. problem is Client do not want to change php.ini or create .user.ini or change .htaccess file to increase upload…
dev
  • 152
  • 1
  • 10
2
votes
1 answer

Uppy + tus uploads to Vimeo won't resume and are always restarting

I have the class below based on the code found at https://github.com/transloadit/uppy-vimeo-thing/blob/master/Vimeo.js. Resuming an upload doesn't work, it always restarts upload from scratch. If I remove uploadUrl from the Tus options and set the…
Michael
  • 105
  • 1
  • 6
2
votes
1 answer

Vimeo API: upload video files using resumable approach (javascript)

Need help. I am using TUS protocol for uploading video on VIMEO. I split video files into chunks (size: 300.000 bytes each). After first chunk I see that his size is 300.000 bytes; ... var buf = new Int8Array(evt.target.result); var chunkSizeReal =…
El53
  • 31
  • 5
2
votes
1 answer

tus - Access-Control-Allow-Origin Error After Upload

I'm using both the tus-node-server and the tus-js-client to try to upload files to my server from a web browser. On smaller files (10mb-ish) it seems to be working fine, but on larger files (385mb-ish) it seems to be failing with a…
Charlie Fish
  • 18,491
  • 19
  • 86
  • 179
1
vote
1 answer

Resumable video upload to the Azure blob in Flutter application

how to achieve this? I have tried tusc flutter packages. Everything has the same flow like pushing the video chuck to tus server https://master.tus.io/files I need to push the video source to the Azure blob directly without tus server.
Gowtham M
  • 11
  • 4
1
vote
1 answer

How to upload multiple files using Tus protocol?

Info: I want to upload multiple file using tus-js-client. I am facing some issue when i try to upload multiple files. Issues: If i try to upload multiple files The progress bar is fluctuating because index of chunks are not properly so that's why…
afi
  • 573
  • 4
  • 18
1
vote
1 answer

Getting "Content length 0 too small" when trying to upload to vimeo using tus

I am trying to upload a video file to vimeo using their resumable upload protocol, but end up getting Failed because: Error: tus: unexpected response while creating upload, originated from request (method: POST, url:…
1
vote
1 answer

tus uploads to Vimeo won't resume and are always restarting

I am trying to upload video on vimeo using tus protocol, and video uploading is working fine, But the uploading start again if we pause and resume, What am I possibly doing wrong? This is the code. $(document).on("click", "button", function (e) { …
1
vote
0 answers

video upload to vimeo using tus-android-client, Upload doesn't resume instead restart from 0 on resume

I am uploading video to vimeo using tus-android-client in react-native. The video is uploading but is not resuming on resume instead it restart from 0. I'm following the Vimeo api's guide about resumable uploads…
Harish Jangra
  • 381
  • 5
  • 16
1
2 3 4