Questions tagged [tus]

Open Protocol for Resumeable File Uploads

43 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 /…
Vitor Pepicon
  • 177
  • 4
  • 14
3
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
  • 71
  • 1
  • 4
3
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
  • 742
  • 5
  • 24
2
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
  • 23
  • 3
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…
developer
  • 88
  • 7
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
  • 4
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
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
  • 4
  • 11
1
vote
1 answer

Rails 5.2 Shrine and Tus server: Cannot create a custom folder structure to save files

I am using rails 5.2, Shrine 2.19 and tus server 2.3 for resumable file upload routes.rb mount Tus::Server => '/files' model, file_resource.rb class FileResource < ApplicationRecord # adds an `file` virtual attribute include…
Abhi
  • 2,769
  • 2
  • 29
  • 33
1
vote
0 answers

Vimeo and Tus: Upload stuck after few seconds without showing error on Android

After a few seconds from the beginning of the video upload process, the progress bar stops without displaying any errors. I notice that the code freeze in attempt to execute uploader.uploadChunk() (after a few successful attempts). My previous…
1
vote
2 answers

Vimeo upload : unexpected status code (404) while resuming upload

I am trying to upload video on Vimeo with Vimeo Android API and tus library. I have upload access, I have PRO account, and I follow this tutorial (https://developer.vimeo.com/api/upload/videos). After I get upload_link from Vimeo, I tried to start…
1
vote
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
  • 95
  • 1
  • 5
1
vote
1 answer

Difference between http.handle and gorilla.mux when implementing tus-file-uploader

I am trying to implement a tus-file-uploader (tus.io) based on the exmaples provided on their website. Everything works fine until I switch from http.Handle("/files/", http.StripPrefix("/files/", handler)) to r.Handle("/files/",…
Tobias Gassmann
  • 9,393
  • 10
  • 50
  • 76
1
vote
1 answer

Golang HTTP uploading file to S3 using tusd only uploading metadata

I am using the tusd library to upload a file directly to S3 in Go. It seems to be functioning however tusd uploads two files a .info metadata file and a .bin actual content file. For some reason my code is only uploading the info file. The…
amlwwalker
  • 2,866
  • 2
  • 20
  • 34
1
vote
0 answers

Issue dockerizing uppy-server

I tried to build the image with my configuration for docker. I successfully build the image either with "docker build ." within the cloned directory or with "docker-compose up". I run a container with the flag of --env-file providing all needed…
1
2 3