Open Protocol for Resumeable File Uploads
Questions tagged [tus]
55 questions
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
- 3,361
- 2
- 33
- 38
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…

Petar LjubicOfficial
- 43
- 5
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…

Petar LjubicOfficial
- 43
- 5
1
vote
1 answer
How to yield inside an external callback function in react redux saga?
I'm using the tus Protocol to upload files and this protocol has some callback functions.
What I'm trying to do is to yield an action and do something else, but I see that I can't use yield inside the callback.
Bellow is a piece of code from the…

Maturano
- 951
- 4
- 15
- 42
1
vote
1 answer
don't install symfony/console v5.0.5 \ankitpokhrel/tus-php in laravel 7
I am facing this issue of don't install symfony/console v5.0.5 Using version ^1.2 for ankitpokhrel/tus-php in laravel 7 version. Please help me out. Im not getting how to resolve it...
This is the screenshot of my issue

Lalith Kumar
- 426
- 1
- 6
- 10
1
vote
1 answer
Securing Asp.NET Core Uppy.js Endpoint
I'm using Uppy.io as client side tus.io implementation in my ASP.NET MVC web application.
And tusdotnet v2.0.0 as server side in ASP.NET Core Web API.
It works fine all the way but how can we limit the file uploads only to authenticated users?
Here…

Azaz ul Haq
- 1,635
- 2
- 18
- 46
1
vote
0 answers
Chunk uploading with Filepond to NodeJS running Express
I need to upload large files (2GB+) using Filepond to a NodeJS server running Express. These files need to be streamed (because of their size) to two locations...a local folder and a remote folder.
My research led me to a solution using…

dlg
- 41
- 3
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
- 11,399
- 15
- 58
- 92
1
vote
1 answer
GetRequiredService from within Configure
I'm trying to access one of my services from within the Configure call within Startup.cs in aspnet core. I'm doing the following however I get the following error "No service for type 'UserService' has been registered." Now I know it is registered…

Michael Esteves
- 1,445
- 3
- 21
- 38
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
- 3,161
- 4
- 26
- 47
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…

Marios Paligiannis
- 99
- 3
- 8
0
votes
1 answer
Serving up a node project from within a docker file
I'm pretty new to the node.js/frontend world and am getting bamboozled by the various frameworks.
I have a node project that I can run locally. I've got a simple proof of concept up and running using the uppy front end framework, supported by tus.io…

WhatTheWhat
- 197
- 3
- 13
0
votes
0 answers
When I use tus to upload a video into bunnystream service, it gives me an error
I saw the documentation in bunnystream's API, for uploading videos using TUS.
I copied the javascript example, changed the data to my own.
And the console gives me this error:
Error: tus: unexpected response while creating upload, originated from…

Mohamed Amr
- 11
- 1
0
votes
0 answers
Videos are loading slowly to the player when it is uploaded with Tus-php
I have used tus.js client and tus-php to upload videos to my server. But after uploading the files when I try to stream it on the player it is waiting the whole video to load to start playing.
This is my client
const input =…
0
votes
0 answers
Why the Authorization header is missing in tus-js-client?
I have a tusd dockerized as follows:
tusd-addressfull:
image: my-tusd
environment:
- FILE_SERVICE_URL
- AWS_ACCESS_KEY_ID=${S3_ACCESS_KEY}
- AWS_SECRET_ACCESS_KEY=${S3_SECRET_KEY}
- AWS_REGION=${S3_REGION}
-…

Kambei
- 458
- 9
- 23