Copy files from FTP servers to MinIO
In this demo we show how you can use Transloadit's API to copy files from FTP servers 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 FTP servers and the export to MinIO.
You can for example encode videos, optimize images, detect faces, and much more.
Step 1:
Import files from FTP servers
We are happy to import from whatever storage solution suits you best.Learn more






"imported": {
"robot": "/ftp/import",
"result": true,
"credentials": "YOUR_FTP_CREDENTIALS",
"path": "my_source_folder/"
}This bot imports whole libraries of files from your FTP servers into Transloadit. This Robot relies on password access. For more security, consider our /sftp/import Robot
Step 2:
Export files to MinIO
We export to the storage platform of your choice.Learn more
imported- https://demos.transloadit.com/d3/930e37ae3a4e808c4841a4ec2880d8/BRUNTSFIELD.jpg
- https://demos.transloadit.com/19/01bfcd601f4916bdb24cf6bd61f1f1/.jpg
- https://demos.transloadit.com/7b/c6cb4118d342ec81741773e7a03e55/STOCKBRIDGE.jpg
- https://demos.transloadit.com/40/a56a408fb14bf58bb2064f61430c73/desert.jpg
- https://demos.transloadit.com/c1/2efa1fc2514962b5ce9cc3f51e3136/snowflake.jpg
- https://demos.transloadit.com/58/432b66c2dd46179e9fcb2a932d7322/ravi-roshan-383162.jpg
"exported": {
"use": "imported",
"robot": "/minio/store",
"result": true,
"credentials": "YOUR_MINIO_CREDENTIALS"
}This bot exports encoding results to MinIO buckets
Build this in your own language
<!-- This pulls Uppy from our CDN -->
<!-- For smaller self-hosted bundles, install Uppy and plugins manually: -->
<!-- npm i --save @uppy/core @uppy/dashboard @uppy/remote-sources @uppy/transloadit ... -->
<link
href="https://releases.transloadit.com/uppy/v3.10.0/uppy.min.css"
rel="stylesheet"
/>
<button id="browse">Select Files</button>
<script type="module">
import {
Uppy,
Dashboard,
ImageEditor,
RemoteSources,
Transloadit,
} from 'https://releases.transloadit.com/uppy/v3.10.0/uppy.min.mjs'
const uppy = new Uppy()
.use(Transloadit, {
waitForEncoding: true,
alwaysRunAssembly: true,
assemblyOptions: {
params: {
// It's often better store encoding instructions in your account
// and use a `template_id` instead of adding these steps inline
steps: {
imported: {
robot: '/ftp/import',
result: true,
credentials: 'YOUR_FTP_CREDENTIALS',
path: 'my_source_folder/',
},
exported: {
use: 'imported',
robot: '/minio/store',
result: true,
credentials: 'YOUR_MINIO_CREDENTIALS',
},
},
},
},
})
.use(Dashboard, { trigger: '#browse' })
.use(ImageEditor, { target: Dashboard })
.use(RemoteSources, {
companionUrl: 'https://api2.transloadit.com/companion',
})
.on('complete', ({ transloadit }) => {
// Due to `waitForEncoding:true` this is fired after encoding is done.
// Alternatively, set `waitForEncoding` to `false` and provide a `notify_url`
console.log(transloadit) // Array of Assembly Statuses
for (const assembly of transloadit) {
console.log(assembly.results) // Array of all encoding results
}
})
.on('error', (error) => {
console.error(error)
})
</script>
So many ways to integrate
Transloadit is a service for companies with developers. And there are many ways developers can put Transloadit to good use inside your company to automate media processing.
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
Send us batch jobs in any server language using one of our SDKs or directly interfacing with our REST API.
Pingbacks
Configure a notify_url to let your server receive transcoding results JSON in the transloadit POST field.
On-demand
Use our Smart CDN to adapt files on-demand and stream them directly to your users.