Questions tagged [tus]

Open Protocol for Resumeable File Uploads

43 questions
1
vote
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
  • 13,172
  • 14
  • 64
  • 137
0
votes
0 answers

How does tus sets the name of a file

I am trying out resumable uploads in Golang and fairly new to golang as well. I have been looking at a few samples online for better understanding around resumable uploads. What concerns me is how are the files being named!! I know I can change the…
dravit
  • 475
  • 4
  • 12
0
votes
1 answer

How to connect two tus severs

I want to upload a file with resume capability to Cloudflare (tus enabled API). I cannot upload a file directly from the browser to Cloudflare because the credentials should not be visible. So, I have to use tus-node-server as an express middleware…
Ehsan Shekari
  • 456
  • 3
  • 15
0
votes
0 answers

Resumable files upload with tus.io and uppy.io to aws s3

I am trying to implement TUS resumable file upload with frontend uppy.io. before I was using XHR upload and it was working fine. when I uploading on local machine using tus it works but I need to upload on s3. front-end code. var uppy =…
developer
  • 88
  • 7
0
votes
0 answers

Woking with Cloudflare direct upload(TUS) with Ruby on Rails

Ruby Version: 2.4.1 Rails Version: 5.2.3 gem installed: "tus-server", "~> 2.3" Hi I am trying to upload a large video file to Cloudflare using TUS protocol. The tus-ruby-server doesn't have sufficient documentation for Cloudflare for me to solve the…
0
votes
0 answers

How to include metadata with Vimeo upload API

I am working on aa API that uploads video file to Vimeo using Go tus approach. I could get the video created but not able to find a way to include metadata parameters that can be used to specify the name of video etc. I am using…
scagc
  • 1
  • 1
0
votes
1 answer

My Tus URL for .Net Core 3.1 is not working, is my configuration correct?

When I send a request to the URL path specified in the Startup class I am getting 404 not found when using a Post request, I am using Postman. When I send a options request with Postman, I hit the block of code in the Startup class and get 204 No…
RussBuss
  • 13
  • 2
0
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', [ …
0
votes
0 answers

tus.io unsure how to add in the termination route

I am using tus-js-client and tus-node-server for my application. Based on the documentation, https://github.com/tus/tus-js-client/blob/master/docs/api.md#tusuploadabortshouldterminate, if I were to pass in upload.abort(true); I should be able to…
0
votes
0 answers

Filter and Hooks caused to re-render issue

I have a file system that I am building with tus. So for each file upload, I will have an array with ReactElement which will kickstart the uploading process. Adding an element into the array has no issue, but what I faced is the issue of deleting…
0
votes
1 answer

Integrating Tus Resumable File Upload Protocol with Gin-Gonic CORS issue

I have looked at the similar questions here related to CORS issues with Gin and Tus; none addresses the problem I am currently having. The current implementation works with the standard net/http package by adding a small wrapper. // The wrapping…
Abah
  • 1
  • 1
  • 2
0
votes
0 answers

how to send a tus.js empty request

i'm using tus to create a upload resource . here is the doc : https://tus.io/protocols/resumable-upload.html search "empty post request" you see the detail my problem is that i don't know how to send a empty post request with tus ! dose any one have…
Qasem Salehy
  • 129
  • 1
  • 2
  • 7
0
votes
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) { …
0
votes
1 answer

Laravel ftp upload with tus

I need to upload large files throguh ftp with tus, so the file is uploading as little parts. It is possible to upload tu s3 with tus through this packages, but unfortunately they didnt support ftp, and I cannot find any ftp tus package or solution…
0
votes
1 answer

Vimeo Upload API

I'm trying to upload videos to my Vimeo account via their API using the TUS approach. I've managed to get the first step working fine, using POST https://api.vimeo.com/me/videos to create the video placeholder in Vimeo, and getting a response which…