We are a Swiss Army knife for your files
Transloadit is a service for companies with developers. We handle their file uploads and media processing. This means that they can save on development time and the heavy machinery that is required to handle big volumes in an automated way.
We pioneered with this concept in 2009 and have made our customers happy ever since. We are still actively improving our service in 2022, as well as our open source projects uppy.io and tus.io, which are changing how the world does file uploading.
Copy files from Wasabi to MinIO
In this demo we show how you can use Transloadit's API to copy files from Wasabi to MinIO.
Once you set up the recipes, Transloadit can do this for you automatically.
Optionally you could also transform the files between the import from Wasabi and the export to MinIO.
You can for example encode videos, optimize images, detect faces, and much more.
1. Import files from Wasabi
We are happy to import from whatever storage solution suits you best. Learn more ›
2. Export files to MinIO
We export to the storage platform of your choice. Learn more ›
Tricky to demo, but in this Step the following files were exported to MinIO:
- snowflake.jpg
- desert.jpg
- ravi-roshan-383162.jpg
Once all files have been exported, we can ping a URL of your choice with the Assembly status JSON.
Build this in your own language
{
"imported": {
"robot": "/wasabi/import",
"result": true,
"credentials": "YOUR_WASABI_CREDENTIALS",
"path": "my_source_folder/"
},
"exported": {
"robot": "/minio/store",
"use": "imported",
"result": true,
"credentials": "YOUR_MINIO_CREDENTIALS",
"path": "my_target_folder"
}
}
# Prerequisites: brew install curl jq || sudo apt install curl jq
# To avoid tampering, use Signature Authentication
echo '{
"auth": {
"key": "YOUR_TRANSLOADIT_KEY"
},
"steps": {
"imported": {
"robot": "/wasabi/import",
"result": true,
"credentials": "YOUR_WASABI_CREDENTIALS",
"path": "my_source_folder/"
},
"exported": {
"robot": "/minio/store",
"use": "imported",
"result": true,
"credentials": "YOUR_MINIO_CREDENTIALS",
"path": "my_target_folder"
}
}
}' |curl \
--request POST \
--form 'params=<-' \
--form my_file1=@./joe-gardner-149699.jpg \
--form my_file2=@./patrick-tomasso-60176.jpg \
https://api2.transloadit.com/assemblies \
|jq
// Add 'Transloadit' to your Podfile, run 'pod install', add credentials to 'Info.plist'
import Arcane
import TransloaditKit
// Set Encoding Instructions
var AssemblySteps: Array = Array<Step>() // An array to hold the Steps
var Step1 = Step (key: "imported") // Create a Step object
Step1?.setValue("/wasabi/import", forOption: "robot") // Add the details
Step1?.setValue(true, forOption: "result") // Add the details
Step1?.setValue("YOUR_WASABI_CREDENTIALS", forOption: "credentials") // Add the details
Step1?.setValue("my_source_folder/", forOption: "path") // Add the details
AssemblySteps.append(Step1) // Add the Step to the array
var Step2 = Step (key: "exported") // Create a Step object
Step2?.setValue("imported", forOption: "use") // Add the details
Step2?.setValue("/minio/store", forOption: "robot") // Add the details
Step2?.setValue(true, forOption: "result") // Add the details
Step2?.setValue("YOUR_MINIO_CREDENTIALS", forOption: "credentials") // Add the details
Step2?.setValue("my_target_folder", forOption: "path") // Add the details
AssemblySteps.append(Step2) // Add the Step to the array
// We then create an Assembly Object with the Steps and files
var MyAssembly: Assembly = Assembly(steps: AssemblySteps, andNumberOfFiles: 1)
// Add files to upload
MyAssembly.addFile("./joe-gardner-149699.jpg")
MyAssembly.addFile("./patrick-tomasso-60176.jpg")
// Start the Assembly
Transloadit.createAssembly(MyAssembly)
// Fires after your Assembly has completed
transloadit.assemblyStatusBlock = {(_ completionDictionary: [AnyHashable: Any]) -> Void in
print("\(completionDictionary.description)")
}
<body>
<form action="/uploads" enctype="multipart/form-data" method="POST">
<input type="file" name="my_file" multiple="multiple" />
</form>
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="//assets.transloadit.com/js/jquery.transloadit2-v3-latest.js"></script>
<script type="text/javascript">
$(function() {
$('form').transloadit({
wait: true,
triggerUploadOnFileSelection: true,
params: {
auth: {
// To avoid tampering use signatures:
// https://transloadit.com/docs/api/#authentication
key: 'YOUR_TRANSLOADIT_KEY',
},
// It's often better store encoding instructions in your account
// and use a `template_id` instead of adding these steps inline
steps: {
imported: {
robot: '/wasabi/import',
result: true,
credentials: 'YOUR_WASABI_CREDENTIALS',
path: 'my_source_folder/'
},
exported: {
use: 'imported',
robot: '/minio/store',
result: true,
credentials: 'YOUR_MINIO_CREDENTIALS',
path: 'my_target_folder'
}
}
}
});
});
</script>
</body>
<!-- This pulls Uppy from our CDN. Alternatively use `npm i @uppy/robodog --save` -->
<!-- if you want smaller self-hosted bundles and/or to use modern JavaScript -->
<link href="//releases.transloadit.com/uppy/robodog/v2.5.1/robodog.min.css" rel="stylesheet">
<script src="//releases.transloadit.com/uppy/robodog/v2.5.1/robodog.min.js"></script>
<button id="browse">Select Files</button>
<script>
document.getElementById('browse').addEventListener('click', function () {
var uppy = window.Robodog.pick({
providers: [ 'instagram', 'url', 'webcam', 'dropbox', 'google-drive', 'facebook', 'onedrive' ],
waitForEncoding: true,
params: {
// To avoid tampering, use Signature Authentication
auth: { key: 'YOUR_TRANSLOADIT_KEY' },
// To hide your `steps`, use a `template_id` instead
steps: {
imported: {
robot: '/wasabi/import',
result: true,
credentials: 'YOUR_WASABI_CREDENTIALS',
path: 'my_source_folder/'
},
exported: {
use: 'imported',
robot: '/minio/store',
result: true,
credentials: 'YOUR_MINIO_CREDENTIALS',
path: 'my_target_folder'
}
}
}
}).then(function (bundle) {
// Due to `waitForEncoding: true` this is fired after encoding is done.
// Alternatively, set `waitForEncoding` to `false` and provide a `notify_url`
// for Async Mode where your back-end receives the encoding results
// so that your user can be on their way as soon as the upload completes.
console.log(bundle.transloadit) // Array of Assembly Statuses
console.log(bundle.results) // Array of all encoding results
}).catch(console.error)
})
</script>
// yarn add transloadit || npm i transloadit --save-exact
const Transloadit = require('transloadit')
const transloadit = new Transloadit({
authKey: 'YOUR_TRANSLOADIT_KEY',
authSecret: 'YOUR_TRANSLOADIT_SECRET'
})
// Set Encoding Instructions
const options = {
files: {
// Add files to upload
'myfile_1': './joe-gardner-149699.jpg',
'myfile_2': './patrick-tomasso-60176.jpg',
},
params: {
steps: {
imported: {
robot: '/wasabi/import',
result: true,
credentials: 'YOUR_WASABI_CREDENTIALS',
path: 'my_source_folder/',
},
exported: {
use: 'imported',
robot: '/minio/store',
result: true,
credentials: 'YOUR_MINIO_CREDENTIALS',
path: 'my_target_folder',
},
}
}
}
// Start the Assembly
const result = await transloadit.createAssembly(options)
console.log({ result })
[sudo] npm install transloadify -g
export TRANSLOADIT_KEY="YOUR_TRANSLOADIT_KEY"
export TRANSLOADIT_SECRET="YOUR_TRANSLOADIT_SECRET"
# Save Encoding Instructions
echo '{
"imported": {
"robot": "/wasabi/import",
"result": true,
"credentials": "YOUR_WASABI_CREDENTIALS",
"path": "my_source_folder/"
},
"exported": {
"robot": "/minio/store",
"use": "imported",
"result": true,
"credentials": "YOUR_MINIO_CREDENTIALS",
"path": "my_target_folder"
}
}' > ./steps.json
transloadify \
--input "./joe-gardner-149699.jpg" \
--input "./patrick-tomasso-60176.jpg" \
--output "./output.example" \
--steps "./steps.json"
// composer require transloadit/php-sdk
use transloadit\Transloadit;
$transloadit = new Transloadit([
"key" => "YOUR_TRANSLOADIT_KEY",
"secret" => "YOUR_TRANSLOADIT_SECRET",
]);
// Add files to upload
$files = [];
array_push($files, "./joe-gardner-149699.jpg")
array_push($files, "./patrick-tomasso-60176.jpg")
// Start the Assembly
$response = $transloadit->createAssembly([
"files" => $files,
"params" => [
"steps" => [
"imported" => [
"robot" => "/wasabi/import",
"result" => true,
"credentials" => "YOUR_WASABI_CREDENTIALS",
"path" => "my_source_folder/",
],
"exported" => [
"use" => "imported",
"robot" => "/minio/store",
"result" => true,
"credentials" => "YOUR_MINIO_CREDENTIALS",
"path" => "my_target_folder",
],
],
],
]);
# gem install transloadit
transloadit = Transloadit.new(
:key => "YOUR_TRANSLOADIT_KEY",
:secret => "YOUR_TRANSLOADIT_SECRET"
)
# Set Encoding Instructions
imported = transloadit.step "imported", "/wasabi/import",
:result => true,
:credentials => "YOUR_WASABI_CREDENTIALS",
:path => "my_source_folder/"
)
exported = transloadit.step "exported", "/minio/store",
:use => "imported",
:result => true,
:credentials => "YOUR_MINIO_CREDENTIALS",
:path => "my_target_folder"
)
assembly = transloadit.assembly(
:steps => [ imported, exported ]
)
# Add files to upload
files = []
files.push("./joe-gardner-149699.jpg")
files.push("./patrick-tomasso-60176.jpg")
# Start the Assembly
response = assembly.create! *files
until response.finished?
sleep 1; response.reload!
end
if !response.error?
# handle success
end
# pip install pytransloadit
from transloadit import client
tl = client.Transloadit('YOUR_TRANSLOADIT_KEY', 'YOUR_TRANSLOADIT_SECRET')
assembly = tl.new_assembly()
# Set Encoding Instructions
assembly.add_step('imported', '/wasabi/import', {
'result': True,
'credentials': 'YOUR_WASABI_CREDENTIALS',
'path': 'my_source_folder/'
})
assembly.add_step('exported', '/minio/store', {
'use': 'imported',
'result': True,
'credentials': 'YOUR_MINIO_CREDENTIALS',
'path': 'my_target_folder'
})
# Add files to upload
assembly.add_file(open('./joe-gardner-149699.jpg', 'rb'))
assembly.add_file(open('./patrick-tomasso-60176.jpg', 'rb'))
# Start the Assembly
assembly_response = assembly.create(retries=5, wait=True)
print(assembly_response.data.get('assembly_ssl_url'))
# or:
print(assembly_response.data['assembly_ssl_url'])
// go get gopkg.in/transloadit/go-sdk.v1
package main
import (
"fmt"
"gopkg.in/transloadit/go-sdk.v1"
)
options := transloadit.DefaultConfig
options.AuthKey = "YOUR_TRANSLOADIT_KEY"
options.AuthSecret = "YOUR_TRANSLOADIT_SECRET"
client := transloadit.NewClient(options)
// Initialize new Assembly
assembly := transloadit.NewAssembly()
// Set Encoding Instructions
assembly.AddStep("imported", map[string]interface{}{
"robot": "/wasabi/import",
"result": true,
"credentials": "YOUR_WASABI_CREDENTIALS",
"path": "my_source_folder/"
})
assembly.AddStep("exported", map[string]interface{}{
"use": "imported",
"robot": "/minio/store",
"result": true,
"credentials": "YOUR_MINIO_CREDENTIALS",
"path": "my_target_folder"
})
// Add files to upload
assembly.AddFile("myfile_1", "./joe-gardner-149699.jpg")
assembly.AddFile("myfile_2", "./patrick-tomasso-60176.jpg")
// Start the Assembly
info, err := client.StartAssembly(context.Background(), assembly)
if err != nil {
panic(err)
}
// All files have now been uploaded and the Assembly has started but no
// results are available yet since the conversion has not finished.
// WaitForAssembly provides functionality for polling until the Assembly
// has ended.
info, err = client.WaitForAssembly(context.Background(), info)
if err != nil {
panic(err)
}
fmt.Printf("You can check some results at: \n")
fmt.Printf(" - %s\n", info.Results["imported"][0].SSLURL)
fmt.Printf(" - %s\n", info.Results["exported"][0].SSLURL)
// compile 'com.transloadit.sdk:transloadit:0.1.5'
import com.transloadit.sdk.Assembly;
import com.transloadit.sdk.Transloadit;
import com.transloadit.sdk.exceptions.LocalOperationException;
import com.transloadit.sdk.exceptions.RequestException;
import com.transloadit.sdk.response.AssemblyResponse;
import java.io.File;
import java.util.HashMap;
import java.util.Map;
public class Main {
public static void main(String[] args) {
Transloadit transloadit = new Transloadit("YOUR_TRANSLOADIT_KEY", "YOUR_TRANSLOADIT_SECRET");
Assembly assembly = transloadit.newAssembly();
// Set Encoding Instructions
Map<String Object> importedStepOptions = new HashMap();
importedStepOptions.put("result", true);
importedStepOptions.put("credentials", "YOUR_WASABI_CREDENTIALS");
importedStepOptions.put("path", "my_source_folder/");
assembly.addStep("imported", "/wasabi/import", importedStepOptions);
Map<String Object> exportedStepOptions = new HashMap();
exportedStepOptions.put("use", "imported");
exportedStepOptions.put("result", true);
exportedStepOptions.put("credentials", "YOUR_MINIO_CREDENTIALS");
exportedStepOptions.put("path", "my_target_folder");
assembly.addStep("exported", "/minio/store", exportedStepOptions);
// Add files to upload
assembly.addFile(new File("./joe-gardner-149699.jpg"));
assembly.addFile(new File("./patrick-tomasso-60176.jpg"));
// Start the Assembly
try {
AssemblyResponse response = assembly.save();
// Wait for Assembly to finish executing
while (!response.isFinished()) {
response = transloadit.getAssemblyByUrl(response.getSslUrl());
}
System.out.println(response.getId());
System.out.println(response.getUrl());
System.out.println(response.json());
} catch (RequestException | LocalOperationException e) {
// Handle exception here
}
}
}
So many ways to integrate
-
Bulk imports
Add one of our import Robots to acquire and transcode massive media libraries. -
Handling uploads
We are the experts at reliably handling uploads. We wrote the protocol for it. -
Front-end integration
We integrate with web browsers via our next-gen file uploader Uppy and SDKs for Android and iOS. -
Back-end integration
-
Pingbacks
Configure anotify_url
to let your server receive transcoding results JSON in thetransloadit
POST field.
Need help? Talk to a human