Questions tagged [transloadit]

Transloadit handles file uploading & file processing for your website or app. Transloadit can process video, audio, images and documents.

How it works

  • Upload/import files - Your users can upload files from their devices or import them from URLs, your cloud buckets, your servers, Facebook, Dropbox and many other platforms.

  • Transloadit converts these files - According to simple instructions that you save in your Transloadit account. Conversion includes video/audio encoding, image manipulation, watermarking and much more.

  • Display the results - Transloadit uploads the encoding results to your website or cloud buckets and provide you the result URLs and meta data. Then you can display beautiful media to your users on all platforms.

65 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
4
votes
1 answer

Spinning circle with transloadit. Is it possible with watermark or image rotation?

I'm trying to achieve a spinning circle with artwork as a mask. From what I've seen there is no way to use a moving watermark or an automatic rotation of an image. Is it possible with transloadit? The result should be a "vinyl" spinning.
Tudor-Radu Barbu
  • 348
  • 1
  • 9
  • 25
2
votes
2 answers

Transloadit - Image auto-rotation not working

In my project I implemented image upload using Transloadit API, all the properties are working properly except rotation. When I hardcoded the rotation value then it is working proper and the uploaded image is rotated correctly. But when I try…
Ankur Tiwari
  • 2,627
  • 2
  • 17
  • 39
2
votes
1 answer

TransloadIt image upload issue when image is too small in size in ios

While uploading the image of too small size e.g when i crop the image Transloadit server always reply with this response. {"error":"FILE_FILTER_DECLINED_FILE","message":"One of your files was declined","reason":"file_0"} I also tried testing…
Dhaval H. Nena
  • 3,571
  • 1
  • 28
  • 44
2
votes
1 answer

Parsing an array of objects and pushing selectively to new object

I am trying to parse a JSON response from transloadit and save off the result objects in groups to store separately. This is the JSON: https://jsonblob.com/552917cee4b0237a964c0de1 I am trying this... var results = response.results; var…
latitudehopper
  • 635
  • 1
  • 6
  • 21
2
votes
1 answer

image resize using multiparty stream

How can I use GraphicsMagick or transloadit in my scenario? I am using expressjs multiparty to upload files to Azure storage: app.post('/upload', function (req, res) { var blobService = azure.createBlobService(); var form = new…
Alvin
  • 7,167
  • 18
  • 72
  • 152
2
votes
1 answer

post a local file to a rest endpoint with angularjs & cordova

I'm trying to post a video recorded by a user to a rest endpoint. The user will record a video and then my app will post it to TransloadIt. I'm currently using the FileTransfer Plugin from Cordova. My app just exits when it runs though. Here is…
guyja
  • 727
  • 1
  • 8
  • 19
2
votes
1 answer

Prevent transloadit-rails overlay and progres bar to show when no file is attached

In a form where it's optional to attach an image When there is no image attached and the user submits the form Then transloadit overlay and progress bar is shown Then the submission form hangs when it reaches 100% I want to prevent overlay and…
Max
  • 283
  • 3
  • 11
2
votes
1 answer

Issue with JSON.parse , don't know why is not parsing everything

I'm developing a web app with Node.js using Sails framework(based on Express) and i'm using a third party image solution called Transloadit (no need to know Transloadit). Anyway, that's not the problem, i'm been able to implement the Transloadit…
kevinblanco
  • 699
  • 2
  • 7
  • 13
2
votes
2 answers

Transloadit and PhoneGap

I checked out TransloadIt website and it looked like a great service but its Jquery plugin works only with the html form input... this won't really work with my phonegap application. Is there a way to upload Phonegap camera captured image into…
1
vote
1 answer

INVALID_SIGNATURE error while trying to retrieve list of assemblies in transloadit

I am using Transloadit API to merge audio file and series of images. At some point, I need to retrieve list of assemblies (videos generated till now) for which transloadit provides a get API endpoint but that endpoint accepts two query strings,…
1
vote
1 answer

Estimating Transloadit Assembly Durations

I have a web app that allows users to insert short advert videos (30 to 60 seconds) into a longer main video (typically 45 minutes, but file sizes can vary widely). The entire process involves: Importing all selected files from s3 Encoding each to…
SamAko
  • 2,935
  • 6
  • 35
  • 68
1
vote
1 answer

Using Transloadit, How do you encode a video without resizing it?

I want to encode videos using transloadit, but i don't want to change their dimensions. Checking the docs for the ffmpeg parameter it says if you set the value to null, you'll clear the default from the preset. This doesn't seem to work with the…
1
vote
0 answers

Get transloadit result file names before actual encoding

It’d be easier for me to pass the resulting video encoding paths complete with file names to hidden inputs in a php form than actually waiting for the encoding to be completed or deal with assembly responses to be fed to an import/decode/update DB…
Milksamsa
  • 319
  • 1
  • 5
  • 17
1
vote
2 answers

how to import a class in code splitting using import()?

I cannot find out how to import a class in my React app after using the code splitting. Before (it works!): import React, {PureComponent} from 'react'; import Tus from './components/test'; class Shopper extends PureComponent { constructor…
Jaz
  • 125
  • 1
  • 14
1
2 3 4 5