Questions tagged [tus]

Open Protocol for Resumeable File Uploads

55 questions
0
votes
0 answers

Flutter tus_client file upload throws exception when pausing

I hava a flutter app which uploads files to an express server using tus protocol, every thing works just fine except when I want to pause the uploading it throws an exception that I can't figure out why. This is the exception it throws type '() =>…
Abdullah Qasemi
  • 449
  • 1
  • 12
0
votes
0 answers

Upload multiple videos to Vimeo using tus protocol and Javascript

I have the following java script code I tried to upload multiples videos to my Viemo account now the problem is when I upload multiples videos only one of them work other videos will corruption and not working what is the exactly my problem with…
0
votes
0 answers

How to create file with upload with the help of Tus-Extension header

I wanted to make a request using curl POST, that should create file in my site. curl -ks -u admin:admin -XPOST https://host.docker.internal:9200/.... -H "Tus-Resumable: 1.0.0" -H "Upload-Length: 100" -H "Content-Type:…
Amrita
  • 1
  • 1
0
votes
0 answers

How to determine S3 endpoint in tus upload

this.tusServer.datastore = new tus.S3Store({ path: '/s3-store', namingFunction: this.fileNameFromRequest, bucket: storageConfig.bucket, accessKeyId:…
rezasafaei
  • 23
  • 1
  • 6
0
votes
0 answers

Error uploading a file with TUSD to Cloudflare R2

I am trying to use tus-js-client with TUSD Docker image to upload a file to Cloudflare R2. I've used the same docker-compose.yml to upload to AWS S3 bucket successfully, like shown. TUSD provides a way to upload a file using a S3 compatible endpoint…
0
votes
1 answer

How to resolve application/octet-stream in S3 using TUS node, Tusd, Uppy or .NET,

This is an explanation of a problem, I encountered while uploading files to S3 using tus-node-server or Tusd. The problem, is I have a server running tus server and takes requests from react and react native clients. The file gets uploaded…
Ahmad Khudeish
  • 1,017
  • 13
  • 15
0
votes
1 answer

CloudFlare Direct creator video upload, TUS protocol, error after 100%

I am trying to upload a video using the TUS methodology (js-tus-client) everything seems to be working well. I will post my code below to see if you can help me, please! // /** Get one time link to upload video to cloudFlare…
0
votes
0 answers

How to modify file after being uploaded to tus-node-server?

I am using tus-node-server, I get the file id but when I modify the file, the url of this file is no longer working. I found that there is a write function in the source code, but I am not sure how to use it to update the file /** * Write…
Alsaraha
  • 69
  • 1
  • 7
0
votes
0 answers

Uploading files to a separate server, and missing data about the uploader

I am using two servers: Elixir tus-node-server because tus-node-server is an official implementation of the tus protocol. the issue is that the tus-node-server has no data about the users, so when User 1 uploads File 1, User 1 is only…
Alsaraha
  • 69
  • 1
  • 7
0
votes
1 answer

Send custom response back and capture it on the javascript client using tusdotnet

I am using tusdotnet from tus.io in ASP.NET Core Application, I am trying to send back a custom response as I am putting the entries in database and need to send back database Id in the response. On the javascript side, after the file successfully…
Jamshaid K.
  • 3,555
  • 1
  • 27
  • 42
0
votes
1 answer

Trying to upload video to vimeo via API, resumable approach, getting 412 response

I'm trying to upload a video via the presumable approach, I'm able to get the upload link through PHP curl and jQuery ajax then I'm trying to upload the file but I receive 412 error. Failed because: Error: Tus: unable to resume upload (new upload…
Vraja
  • 121
  • 1
  • 5
0
votes
1 answer

TUS upload video problem in cloudflare stream service

I send request to https://api.cloudflare.com/client/v4/accounts//stream?direct_user=true with curl in PHP, and get header location value as upload link then pass it to java Script. this link is like…
sh_mirzaee
  • 41
  • 2
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
  • 876
  • 2
  • 10
  • 19
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
  • 33
  • 2