Flag of Ukraine

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 2024, as well as our open source projects uppy.io and tus.io, which are changing how the world does file uploading.

×

Segment video files and create a playlist

Note: This Robot is no longer the recommended way to generate HLS segments. Please use 🤖/video/adaptive instead.

🤖/media/playlist Robot generates playlist files for HTTP Live Streaming (HLS).

This Robot accepts HLS segments generated by 🤖/audio/encode and 🤖/video/encode. You need to pass an 🤖/audio/encode or 🤖/video/encode Step that had its segment parameter set to true, to the use parameter of this Robot.

All segments need to be passed to the Robot at the same time, and not one by one. That is why you must use the bundle_steps parameter, otherwise you will generate multiple playlist files that each contain only one segment.

Also, please make sure that you export your segments (to Amazon S3 for example). If you do not, your playlist file will become invalid after 24 hours, when we remove temporary result files.

⚠️ It seems your browser does not send the referer, which we need to stop people from (ab)using our demos in other websites. If you want to use the demos, please allow your browser to send its referer to us. Adding us to the allowlist of blockers usually helps.

Step 1: Handle uploads

We can handle uploads of your users directly. Learn more ›

⚠️ It seems your browser does not support the codec used in this video of the page. For demo simplicity we'll link you to the original file, but you may also want to learn how to make videos compatible for all browsers.
surf.mp4
MPEG-4 video – 32 MB
22s · 1280 × 720
":original": {
  "robot": "/upload/handle"
}
🤖/upload/handle
This bot receives uploads that your users throw at you from browser or apps, or that you throw at us programmatically

Step 2: Resize videos to 800×600 and encode for iPhone (high quality) (H.264)

We offer a variety of video encoding features like optimizing for different devices, merging, injecting ads, changing audio tracks, or adding company logos. Learn more ›

⚠️ It seems your browser does not support the codec used in this video of the page. For demo simplicity we'll link you to the original file, but you may also want to learn how to make videos compatible for all browsers.
"iphone_high_segments": {
  "use": ":original",
  "robot": "/video/encode",
  "preset": "iphone-high",
  "segment": true,
  "segment_duration": 10,
  "ffmpeg_stack": "v6.0.0",
  "width": 800,
  "height": 600,
  "turbo": true
}
🤖/video/encode
This bot encodes, resizes, applies watermarks to videos and animated GIFs

Step 3: Export files to Amazon S3

We export to the storage platform of your choice. Learn more ›

"stored_iphone_high_segments": {
  "robot": "/s3/store",
  "use": "iphone_high_segments",
  "credentials": "YOUR_AWS_CREDENTIALS",
  "url_prefix": "https://demos.transloadit.com/"
}
🤖/s3/store
This bot exports encoding results to Amazon S3
Since this is a store Robot, be sure to use Template Credentials so that any sensitive data is encrypted and stored in our database, making sure that they’re never exposed to any end-user.

Step 4: Generate media playlists

We can enrich media files with metadata and use them to generate playlists. Learn more ›

⚠️ It seems your browser does not support the codec used in this video of the page. For demo simplicity we'll link you to the original file, but you may also want to learn how to make videos compatible for all browsers.
playlist-0.m3u8
Streaming media playlist – 564 B
"iphone_high_playlist": {
  "robot": "/media/playlist",
  "use": {
    "steps": "stored_iphone_high_segments",
    "bundle_steps": true
  },
  "result": true,
  "resolution": "800x600",
  "bandwidth": "auto"
}
🤖/media/playlist
This bot merges segment files to generate playlist files for HTTP Live Streaming (HLS)

Step 5: Transcode videos to iPhone (low quality) (H.264)

⚠️ It seems your browser does not support the codec used in this video of the page. For demo simplicity we'll link you to the original file, but you may also want to learn how to make videos compatible for all browsers.
"iphone_low_segments": {
  "use": ":original",
  "robot": "/video/encode",
  "preset": "iphone-low",
  "ffmpeg_stack": "v6.0.0",
  "segment": true,
  "result": true,
  "segment_duration": 10,
  "turbo": true
}
🤖/video/encode
This bot encodes, resizes, applies watermarks to videos and animated GIFs

Step 6: Export files to Amazon S3

"stored_iphone_low_segments": {
  "robot": "/s3/store",
  "use": "iphone_low_segments",
  "credentials": "YOUR_AWS_CREDENTIALS",
  "url_prefix": "https://demos.transloadit.com/"
}
🤖/s3/store
This bot exports encoding results to Amazon S3
Since this is a store Robot, be sure to use Template Credentials so that any sensitive data is encrypted and stored in our database, making sure that they’re never exposed to any end-user.

Step 7: Generate media playlists

⚠️ It seems your browser does not support the codec used in this video of the page. For demo simplicity we'll link you to the original file, but you may also want to learn how to make videos compatible for all browsers.
playlist-0.m3u8
Streaming media playlist – 564 B
"iphone_low_playlist": {
  "robot": "/media/playlist",
  "use": {
    "steps": "stored_iphone_low_segments",
    "bundle_steps": true
  },
  "result": true,
  "resolution": "800x600",
  "bandwidth": "auto"
}
🤖/media/playlist
This bot merges segment files to generate playlist files for HTTP Live Streaming (HLS)

Step 8: Generate media playlists

⚠️ It seems your browser does not support the codec used in this video of the page. For demo simplicity we'll link you to the original file, but you may also want to learn how to make videos compatible for all browsers.
playlist-0.m3u8
Streaming media playlist – 440 B
"master_playlist": {
  "robot": "/media/playlist",
  "use": {
    "steps": [
      "iphone_low_playlist",
      "iphone_high_playlist"
    ],
    "bundle_steps": true
  },
  "result": true
}
🤖/media/playlist
This bot merges segment files to generate playlist files for HTTP Live Streaming (HLS)

Step 9: Export files to Amazon S3

"stored_playlist": {
  "robot": "/s3/store",
  "use": "master_playlist",
  "credentials": "YOUR_AWS_CREDENTIALS",
  "url_prefix": "https://demos.transloadit.com/"
}
🤖/s3/store
This bot exports encoding results to Amazon S3
Since this is a store Robot, be sure to use Template Credentials so that any sensitive data is encrypted and stored in our database, making sure that they’re never exposed to any end-user.

Step 10: Export files to Amazon S3

"stored_original": {
  "robot": "/s3/store",
  "use": ":original",
  "credentials": "YOUR_AWS_CREDENTIALS",
  "url_prefix": "https://demos.transloadit.com/"
}
🤖/s3/store
This bot exports encoding results to Amazon S3
Since this is a store Robot, be sure to use Template Credentials so that any sensitive data is encrypted and stored in our database, making sure that they’re never exposed to any end-user.

Live Demo. See for yourself

This live demo is powered by Uppy, our open source file uploader that you can also use without Transloadit, andtus, our open protocol for resumable file uploads that is making uploading more reliable across the world.

Build this in your own language

{
  "steps": {
    ":original": {
      "robot": "/upload/handle"
    },
    "iphone_high_segments": {
      "use": ":original",
      "robot": "/video/encode",
      "preset": "iphone-high",
      "segment": true,
      "segment_duration": 10,
      "ffmpeg_stack": "v6.0.0",
      "width": 800,
      "height": 600,
      "turbo": true
    },
    "stored_iphone_high_segments": {
      "robot": "/s3/store",
      "use": "iphone_high_segments",
      "credentials": "YOUR_AWS_CREDENTIALS",
      "url_prefix": "https://demos.transloadit.com/"
    },
    "iphone_high_playlist": {
      "robot": "/media/playlist",
      "use": {
        "steps": "stored_iphone_high_segments",
        "bundle_steps": true
      },
      "result": true,
      "resolution": "800x600",
      "bandwidth": "auto"
    },
    "iphone_low_segments": {
      "use": ":original",
      "robot": "/video/encode",
      "preset": "iphone-low",
      "ffmpeg_stack": "v6.0.0",
      "segment": true,
      "result": true,
      "segment_duration": 10,
      "turbo": true
    },
    "stored_iphone_low_segments": {
      "robot": "/s3/store",
      "use": "iphone_low_segments",
      "credentials": "YOUR_AWS_CREDENTIALS",
      "url_prefix": "https://demos.transloadit.com/"
    },
    "iphone_low_playlist": {
      "robot": "/media/playlist",
      "use": {
        "steps": "stored_iphone_low_segments",
        "bundle_steps": true
      },
      "result": true,
      "resolution": "800x600",
      "bandwidth": "auto"
    },
    "master_playlist": {
      "robot": "/media/playlist",
      "use": {
        "steps": ["iphone_low_playlist", "iphone_high_playlist"],
        "bundle_steps": true
      },
      "result": true
    },
    "stored_playlist": {
      "robot": "/s3/store",
      "use": "master_playlist",
      "credentials": "YOUR_AWS_CREDENTIALS",
      "url_prefix": "https://demos.transloadit.com/"
    },
    "stored_original": {
      "robot": "/s3/store",
      "use": ":original",
      "credentials": "YOUR_AWS_CREDENTIALS",
      "url_prefix": "https://demos.transloadit.com/"
    }
  }
}
# Prerequisites: brew install curl jq || sudo apt install curl jq
# To avoid tampering, use Signature Authentication
echo '{
  "template_id": undefined,
  "auth": {
    "key": "YOUR_TRANSLOADIT_KEY"
  },
  "steps": {
    ":original": {
      "robot": "/upload/handle"
    },
    "iphone_high_segments": {
      "use": ":original",
      "robot": "/video/encode",
      "preset": "iphone-high",
      "segment": true,
      "segment_duration": 10,
      "ffmpeg_stack": "v6.0.0",
      "width": 800,
      "height": 600,
      "turbo": true
    },
    "stored_iphone_high_segments": {
      "robot": "/s3/store",
      "use": "iphone_high_segments",
      "credentials": "YOUR_AWS_CREDENTIALS",
      "url_prefix": "https://demos.transloadit.com/"
    },
    "iphone_high_playlist": {
      "robot": "/media/playlist",
      "use": {
        "steps": "stored_iphone_high_segments",
        "bundle_steps": true
      },
      "result": true,
      "resolution": "800x600",
      "bandwidth": "auto"
    },
    "iphone_low_segments": {
      "use": ":original",
      "robot": "/video/encode",
      "preset": "iphone-low",
      "ffmpeg_stack": "v6.0.0",
      "segment": true,
      "result": true,
      "segment_duration": 10,
      "turbo": true
    },
    "stored_iphone_low_segments": {
      "robot": "/s3/store",
      "use": "iphone_low_segments",
      "credentials": "YOUR_AWS_CREDENTIALS",
      "url_prefix": "https://demos.transloadit.com/"
    },
    "iphone_low_playlist": {
      "robot": "/media/playlist",
      "use": {
        "steps": "stored_iphone_low_segments",
        "bundle_steps": true
      },
      "result": true,
      "resolution": "800x600",
      "bandwidth": "auto"
    },
    "master_playlist": {
      "robot": "/media/playlist",
      "use": {
        "steps": ["iphone_low_playlist", "iphone_high_playlist"],
        "bundle_steps": true
      },
      "result": true
    },
    "stored_playlist": {
      "robot": "/s3/store",
      "use": "master_playlist",
      "credentials": "YOUR_AWS_CREDENTIALS",
      "url_prefix": "https://demos.transloadit.com/"
    },
    "stored_original": {
      "robot": "/s3/store",
      "use": ":original",
      "credentials": "YOUR_AWS_CREDENTIALS",
      "url_prefix": "https://demos.transloadit.com/"
    }
  }
}' |curl \
    --request POST \
    --form 'params=<-' \
    --form myfile1=@./surf.mp4 \
  https://api2.transloadit.com/assemblies \
|jq
// Install via Swift Package Manager:
// dependencies: [
//   .package(url: "https://github.com/transloadit/TransloaditKit", .upToNextMajor(from: "3.0.0"))
// ]

// Or via CocoaPods:
// pod 'Transloadit', '~> 3.0.0'

// Auth
let credentials = Credentials(key: "YOUR_TRANSLOADIT_KEY")

// Init
let transloadit = Transloadit(credentials: credentials, session: "URLSession.shared")

// Add files to upload
let filesToUpload: [URL] = ...

// Execute
let assembly = transloadit.assembly(steps: [
  _originalStep, 
,  iphone_high_segmentsStep, 
,  stored_iphone_high_segmentsStep, 
,  iphone_high_playlistStep, 
,  iphone_low_segmentsStep, 
,  stored_iphone_low_segmentsStep, 
,  iphone_low_playlistStep, 
,  master_playlistStep, 
,  stored_playlistStep, 
,  stored_originalStep, 
], andUpload: filesToUpload) { result in
  switch result {
  case .success(let assembly):
    print("Retrieved (assembly)")
  case .failure(let error):
    print("Assembly error (error)")
  }
}.pollAssemblyStatus { result in
  switch result {
  case .success(let assemblyStatus):
    print("Received assemblystatus (assemblyStatus)")
  case .failure(let error):
    print("Caught polling error (error)")
  }
<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,
        // To avoid tampering, use Signature Authentication:
        // https://transloadit.com/docs/topics/signature-authentication/
        auth: {
          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: {
          ':original': {
            robot: '/upload/handle',
          },
          iphone_high_segments: {
            use: ':original',
            robot: '/video/encode',
            preset: 'iphone-high',
            segment: true,
            segment_duration: 10,
            ffmpeg_stack: 'v6.0.0',
            width: 800,
            height: 600,
            turbo: true,
          },
          stored_iphone_high_segments: {
            robot: '/s3/store',
            use: 'iphone_high_segments',
            credentials: 'YOUR_AWS_CREDENTIALS',
            url_prefix: 'https://demos.transloadit.com/',
          },
          iphone_high_playlist: {
            robot: '/media/playlist',
            use: {
              steps: 'stored_iphone_high_segments',
              bundle_steps: true,
            },
            result: true,
            resolution: '800x600',
            bandwidth: 'auto',
          },
          iphone_low_segments: {
            use: ':original',
            robot: '/video/encode',
            preset: 'iphone-low',
            ffmpeg_stack: 'v6.0.0',
            segment: true,
            result: true,
            segment_duration: 10,
            turbo: true,
          },
          stored_iphone_low_segments: {
            robot: '/s3/store',
            use: 'iphone_low_segments',
            credentials: 'YOUR_AWS_CREDENTIALS',
            url_prefix: 'https://demos.transloadit.com/',
          },
          iphone_low_playlist: {
            robot: '/media/playlist',
            use: {
              steps: 'stored_iphone_low_segments',
              bundle_steps: true,
            },
            result: true,
            resolution: '800x600',
            bandwidth: 'auto',
          },
          master_playlist: {
            robot: '/media/playlist',
            use: {
              steps: ['iphone_low_playlist', 'iphone_high_playlist'],
              bundle_steps: true,
            },
            result: true,
          },
          stored_playlist: {
            robot: '/s3/store',
            use: 'master_playlist',
            credentials: 'YOUR_AWS_CREDENTIALS',
            url_prefix: 'https://demos.transloadit.com/',
          },
          stored_original: {
            robot: '/s3/store',
            use: ':original',
            credentials: 'YOUR_AWS_CREDENTIALS',
            url_prefix: 'https://demos.transloadit.com/',
          },
        },
      })
    })
  </script>
</body>
<!-- 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.22.2/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.22.2/uppy.min.mjs'
  const uppy = new Uppy()
    .use(Transloadit, {
      waitForEncoding: true,
      alwaysRunAssembly: true,
      assemblyOptions: {
        params: {
          // To avoid tampering, use Signature Authentication:
          // https://transloadit.com/docs/topics/signature-authentication/
          auth: {
            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: {
            ':original': {
              robot: '/upload/handle',
            },
            iphone_high_segments: {
              use: ':original',
              robot: '/video/encode',
              preset: 'iphone-high',
              segment: true,
              segment_duration: 10,
              ffmpeg_stack: 'v6.0.0',
              width: 800,
              height: 600,
              turbo: true,
            },
            stored_iphone_high_segments: {
              robot: '/s3/store',
              use: 'iphone_high_segments',
              credentials: 'YOUR_AWS_CREDENTIALS',
              url_prefix: 'https://demos.transloadit.com/',
            },
            iphone_high_playlist: {
              robot: '/media/playlist',
              use: {
                steps: 'stored_iphone_high_segments',
                bundle_steps: true,
              },
              result: true,
              resolution: '800x600',
              bandwidth: 'auto',
            },
            iphone_low_segments: {
              use: ':original',
              robot: '/video/encode',
              preset: 'iphone-low',
              ffmpeg_stack: 'v6.0.0',
              segment: true,
              result: true,
              segment_duration: 10,
              turbo: true,
            },
            stored_iphone_low_segments: {
              robot: '/s3/store',
              use: 'iphone_low_segments',
              credentials: 'YOUR_AWS_CREDENTIALS',
              url_prefix: 'https://demos.transloadit.com/',
            },
            iphone_low_playlist: {
              robot: '/media/playlist',
              use: {
                steps: 'stored_iphone_low_segments',
                bundle_steps: true,
              },
              result: true,
              resolution: '800x600',
              bandwidth: 'auto',
            },
            master_playlist: {
              robot: '/media/playlist',
              use: {
                steps: ['iphone_low_playlist', 'iphone_high_playlist'],
                bundle_steps: true,
              },
              result: true,
            },
            stored_playlist: {
              robot: '/s3/store',
              use: 'master_playlist',
              credentials: 'YOUR_AWS_CREDENTIALS',
              url_prefix: 'https://demos.transloadit.com/',
            },
            stored_original: {
              robot: '/s3/store',
              use: ':original',
              credentials: 'YOUR_AWS_CREDENTIALS',
              url_prefix: 'https://demos.transloadit.com/',
            },
          },
        },
      },
    })
    .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
      transloadit.forEach((assembly) => {
        console.log(assembly.results) // Array of all encoding results
      })
    })
    .on('error', (error) => {
      console.error(error)
    })
</script>
// yarn add transloadit || npm i transloadit

// Import
const Transloadit = require('transloadit')

// Init
const transloadit = new Transloadit({
  authKey: 'YOUR_TRANSLOADIT_KEY',
  authSecret: 'MY_TRANSLOADIT_SECRET',
})

// Set Encoding Instructions
const options = {
  files: {
    myfile_1: './surf.mp4',
  },
  params: {
    steps: {
      ':original': {
        robot: '/upload/handle',
      },
      iphone_high_segments: {
        use: ':original',
        robot: '/video/encode',
        preset: 'iphone-high',
        segment: true,
        segment_duration: 10,
        ffmpeg_stack: 'v6.0.0',
        width: 800,
        height: 600,
        turbo: true,
      },
      stored_iphone_high_segments: {
        robot: '/s3/store',
        use: 'iphone_high_segments',
        credentials: 'YOUR_AWS_CREDENTIALS',
        url_prefix: 'https://demos.transloadit.com/',
      },
      iphone_high_playlist: {
        robot: '/media/playlist',
        use: {
          steps: 'stored_iphone_high_segments',
          bundle_steps: true,
        },
        result: true,
        resolution: '800x600',
        bandwidth: 'auto',
      },
      iphone_low_segments: {
        use: ':original',
        robot: '/video/encode',
        preset: 'iphone-low',
        ffmpeg_stack: 'v6.0.0',
        segment: true,
        result: true,
        segment_duration: 10,
        turbo: true,
      },
      stored_iphone_low_segments: {
        robot: '/s3/store',
        use: 'iphone_low_segments',
        credentials: 'YOUR_AWS_CREDENTIALS',
        url_prefix: 'https://demos.transloadit.com/',
      },
      iphone_low_playlist: {
        robot: '/media/playlist',
        use: {
          steps: 'stored_iphone_low_segments',
          bundle_steps: true,
        },
        result: true,
        resolution: '800x600',
        bandwidth: 'auto',
      },
      master_playlist: {
        robot: '/media/playlist',
        use: {
          steps: ['iphone_low_playlist', 'iphone_high_playlist'],
          bundle_steps: true,
        },
        result: true,
      },
      stored_playlist: {
        robot: '/s3/store',
        use: 'master_playlist',
        credentials: 'YOUR_AWS_CREDENTIALS',
        url_prefix: 'https://demos.transloadit.com/',
      },
      stored_original: {
        robot: '/s3/store',
        use: ':original',
        credentials: 'YOUR_AWS_CREDENTIALS',
        url_prefix: 'https://demos.transloadit.com/',
      },
    },
  },
}

// Execute
const result = await transloadit.createAssembly(options)

// Show results
console.log({ result })
# [sudo] npm install transloadify -g

# Auth
export TRANSLOADIT_KEY="YOUR_TRANSLOADIT_KEY"

# Save Encoding Instructions
echo '{
  "steps": {
    ":original": {
      "robot": "/upload/handle"
    },
    "iphone_high_segments": {
      "use": ":original",
      "robot": "/video/encode",
      "preset": "iphone-high",
      "segment": true,
      "segment_duration": 10,
      "ffmpeg_stack": "v6.0.0",
      "width": 800,
      "height": 600,
      "turbo": true
    },
    "stored_iphone_high_segments": {
      "robot": "/s3/store",
      "use": "iphone_high_segments",
      "credentials": "YOUR_AWS_CREDENTIALS",
      "url_prefix": "https://demos.transloadit.com/"
    },
    "iphone_high_playlist": {
      "robot": "/media/playlist",
      "use": {
        "steps": "stored_iphone_high_segments",
        "bundle_steps": true
      },
      "result": true,
      "resolution": "800x600",
      "bandwidth": "auto"
    },
    "iphone_low_segments": {
      "use": ":original",
      "robot": "/video/encode",
      "preset": "iphone-low",
      "ffmpeg_stack": "v6.0.0",
      "segment": true,
      "result": true,
      "segment_duration": 10,
      "turbo": true
    },
    "stored_iphone_low_segments": {
      "robot": "/s3/store",
      "use": "iphone_low_segments",
      "credentials": "YOUR_AWS_CREDENTIALS",
      "url_prefix": "https://demos.transloadit.com/"
    },
    "iphone_low_playlist": {
      "robot": "/media/playlist",
      "use": {
        "steps": "stored_iphone_low_segments",
        "bundle_steps": true
      },
      "result": true,
      "resolution": "800x600",
      "bandwidth": "auto"
    },
    "master_playlist": {
      "robot": "/media/playlist",
      "use": {
        "steps": ["iphone_low_playlist", "iphone_high_playlist"],
        "bundle_steps": true
      },
      "result": true
    },
    "stored_playlist": {
      "robot": "/s3/store",
      "use": "master_playlist",
      "credentials": "YOUR_AWS_CREDENTIALS",
      "url_prefix": "https://demos.transloadit.com/"
    },
    "stored_original": {
      "robot": "/s3/store",
      "use": ":original",
      "credentials": "YOUR_AWS_CREDENTIALS",
      "url_prefix": "https://demos.transloadit.com/"
    }
  }
}' > ./steps.json

# Execute
transloadify \
  --input "surf.mp4" \
  --steps "./steps.json" \
  --output "./output.example"
// composer require transloadit/php-sdk
use transloadit\Transloadit;

$transloadit = new Transloadit([
  "key" => "YOUR_TRANSLOADIT_KEY",
  "secret" => "MY_TRANSLOADIT_SECRET",
]);

// Start the Assembly
$response = $transloadit->createAssembly([
  "files" => ["surf.mp4"],
  "params" => [
    "steps" => [
      ":original" => [
        "robot" => "/upload/handle",
      ],
      "iphone_high_segments" => [
        "use" => ":original",
        "robot" => "/video/encode",
        "preset" => "iphone-high",
        "segment" => true,
        "segment_duration" => 10,
        "ffmpeg_stack" => "v6.0.0",
        "width" => 800,
        "height" => 600,
        "turbo" => true,
      ],
      "stored_iphone_high_segments" => [
        "robot" => "/s3/store",
        "use" => "iphone_high_segments",
        "credentials" => "YOUR_AWS_CREDENTIALS",
        "url_prefix" => "https://demos.transloadit.com/",
      ],
      "iphone_high_playlist" => [
        "robot" => "/media/playlist",
        "use" => [
          "steps" => "stored_iphone_high_segments",
          "bundle_steps" => true,
        ],
        "result" => true,
        "resolution" => "800x600",
        "bandwidth" => "auto",
      ],
      "iphone_low_segments" => [
        "use" => ":original",
        "robot" => "/video/encode",
        "preset" => "iphone-low",
        "ffmpeg_stack" => "v6.0.0",
        "segment" => true,
        "result" => true,
        "segment_duration" => 10,
        "turbo" => true,
      ],
      "stored_iphone_low_segments" => [
        "robot" => "/s3/store",
        "use" => "iphone_low_segments",
        "credentials" => "YOUR_AWS_CREDENTIALS",
        "url_prefix" => "https://demos.transloadit.com/",
      ],
      "iphone_low_playlist" => [
        "robot" => "/media/playlist",
        "use" => [
          "steps" => "stored_iphone_low_segments",
          "bundle_steps" => true,
        ],
        "result" => true,
        "resolution" => "800x600",
        "bandwidth" => "auto",
      ],
      "master_playlist" => [
        "robot" => "/media/playlist",
        "use" => [
          "steps" => ["iphone_low_playlist", "iphone_high_playlist"],
          "bundle_steps" => true,
        ],
        "result" => true,
      ],
      "stored_playlist" => [
        "robot" => "/s3/store",
        "use" => "master_playlist",
        "credentials" => "YOUR_AWS_CREDENTIALS",
        "url_prefix" => "https://demos.transloadit.com/",
      ],
      "stored_original" => [
        "robot" => "/s3/store",
        "use" => ":original",
        "credentials" => "YOUR_AWS_CREDENTIALS",
        "url_prefix" => "https://demos.transloadit.com/",
      ],
    ],
  ],
]);
# gem install transloadit

# $ irb -rubygems
# >> require 'transloadit'
# => true

transloadit = Transloadit.new([
  :key => "YOUR_TRANSLOADIT_KEY",
])

# Set Encoding Instructions
_original = transloadit.step(":original", "/upload/handle", {})

iphone_high_segments = transloadit.step("iphone_high_segments", "/video/encode", [
  :use => ":original",
  :preset => "iphone-high",
  :segment => true,
  :segment_duration => 10,
  :ffmpeg_stack => "v6.0.0",
  :width => 800,
  :height => 600,
  :turbo => true
])

stored_iphone_high_segments = transloadit.step("stored_iphone_high_segments", "/s3/store", [
  :use => "iphone_high_segments",
  :credentials => "YOUR_AWS_CREDENTIALS",
  :url_prefix => "https://demos.transloadit.com/"
])

iphone_high_playlist = transloadit.step("iphone_high_playlist", "/media/playlist", [
  :use => [
    :steps => "stored_iphone_high_segments",
    :bundle_steps => true
  ],
  :result => true,
  :resolution => "800x600",
  :bandwidth => "auto"
])

iphone_low_segments = transloadit.step("iphone_low_segments", "/video/encode", [
  :use => ":original",
  :preset => "iphone-low",
  :ffmpeg_stack => "v6.0.0",
  :segment => true,
  :result => true,
  :segment_duration => 10,
  :turbo => true
])

stored_iphone_low_segments = transloadit.step("stored_iphone_low_segments", "/s3/store", [
  :use => "iphone_low_segments",
  :credentials => "YOUR_AWS_CREDENTIALS",
  :url_prefix => "https://demos.transloadit.com/"
])

iphone_low_playlist = transloadit.step("iphone_low_playlist", "/media/playlist", [
  :use => [
    :steps => "stored_iphone_low_segments",
    :bundle_steps => true
  ],
  :result => true,
  :resolution => "800x600",
  :bandwidth => "auto"
])

master_playlist = transloadit.step("master_playlist", "/media/playlist", [
  :use => [
    :steps => ["iphone_low_playlist", "iphone_high_playlist"],
    :bundle_steps => true
  ],
  :result => true
])

stored_playlist = transloadit.step("stored_playlist", "/s3/store", [
  :use => "master_playlist",
  :credentials => "YOUR_AWS_CREDENTIALS",
  :url_prefix => "https://demos.transloadit.com/"
])

stored_original = transloadit.step("stored_original", "/s3/store", [
  :use => ":original",
  :credentials => "YOUR_AWS_CREDENTIALS",
  :url_prefix => "https://demos.transloadit.com/"
])

transloadit.assembly([
  :steps => [
  _original, 
,  iphone_high_segments, 
,  stored_iphone_high_segments, 
,  iphone_high_playlist, 
,  iphone_low_segments, 
,  stored_iphone_low_segments, 
,  iphone_low_playlist, 
,  master_playlist, 
,  stored_playlist, 
,  stored_original
]
])

# Add files to upload
files = []
files.push("surf.mp4")

# 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', 'MY_TRANSLOADIT_SECRET')
assembly = tl.new_assembly()

# Set Encoding Instructions
assembly.add_step(":original", "/upload/handle", {})

assembly.add_step("iphone_high_segments", "/video/encode", {
  'use': ':original',
  'preset': 'iphone-high',
  'segment': True,
  'segment_duration': 10,
  'ffmpeg_stack': 'v6.0.0',
  'width': 800,
  'height': 600,
  'turbo': True
})

assembly.add_step("stored_iphone_high_segments", "/s3/store", {
  'use': 'iphone_high_segments',
  'credentials': 'YOUR_AWS_CREDENTIALS',
  'url_prefix': 'https://demos.transloadit.com/'
})

assembly.add_step("iphone_high_playlist", "/media/playlist", {
  'use': {
    'steps': 'stored_iphone_high_segments',
    'bundle_steps': True
  },
  'result': True,
  'resolution': '800x600',
  'bandwidth': 'auto'
})

assembly.add_step("iphone_low_segments", "/video/encode", {
  'use': ':original',
  'preset': 'iphone-low',
  'ffmpeg_stack': 'v6.0.0',
  'segment': True,
  'result': True,
  'segment_duration': 10,
  'turbo': True
})

assembly.add_step("stored_iphone_low_segments", "/s3/store", {
  'use': 'iphone_low_segments',
  'credentials': 'YOUR_AWS_CREDENTIALS',
  'url_prefix': 'https://demos.transloadit.com/'
})

assembly.add_step("iphone_low_playlist", "/media/playlist", {
  'use': {
    'steps': 'stored_iphone_low_segments',
    'bundle_steps': True
  },
  'result': True,
  'resolution': '800x600',
  'bandwidth': 'auto'
})

assembly.add_step("master_playlist", "/media/playlist", {
  'use': {
    'steps': ['iphone_low_playlist', 'iphone_high_playlist'],
    'bundle_steps': True
  },
  'result': True
})

assembly.add_step("stored_playlist", "/s3/store", {
  'use': 'master_playlist',
  'credentials': 'YOUR_AWS_CREDENTIALS',
  'url_prefix': 'https://demos.transloadit.com/'
})

assembly.add_step("stored_original", "/s3/store", {
  'use': ':original',
  'credentials': 'YOUR_AWS_CREDENTIALS',
  'url_prefix': 'https://demos.transloadit.com/'
})

# Add files to upload
assembly.add_file(open('surf.mp4', '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 (
  "context"
  "fmt"
  "github.com/transloadit/go-sdk"
)

func main() {
  // Create client
  options := transloadit.DefaultConfig
  options.AuthKey = "YOUR_TRANSLOADIT_KEY"
  options.AuthSecret = "MY_TRANSLOADIT_SECRET"
  client := transloadit.NewClient(options)
  
  // Initialize new Assembly
  assembly := transloadit.NewAssembly()
  
  // Set Encoding Instructions
  assembly.AddStep(":original", map[string]interface{}{
    "robot": "/upload/handle",
  })
  
  assembly.AddStep("iphone_high_segments", map[string]interface{}{
    "use": ":original",
    "robot": "/video/encode",
    "preset": "iphone-high",
    "segment": true,
    "segment_duration": 10,
    "ffmpeg_stack": "v6.0.0",
    "width": 800,
    "height": 600,
    "turbo": true,
  })
  
  assembly.AddStep("stored_iphone_high_segments", map[string]interface{}{
    "robot": "/s3/store",
    "use": "iphone_high_segments",
    "credentials": "YOUR_AWS_CREDENTIALS",
    "url_prefix": "https://demos.transloadit.com/",
  })
  
  assembly.AddStep("iphone_high_playlist", map[string]interface{}{
    "robot": "/media/playlist",
    "use": map[string]interface{}{
      "steps": "stored_iphone_high_segments",
      "bundle_steps": true,
    },
    "result": true,
    "resolution": "800x600",
    "bandwidth": "auto",
  })
  
  assembly.AddStep("iphone_low_segments", map[string]interface{}{
    "use": ":original",
    "robot": "/video/encode",
    "preset": "iphone-low",
    "ffmpeg_stack": "v6.0.0",
    "segment": true,
    "result": true,
    "segment_duration": 10,
    "turbo": true,
  })
  
  assembly.AddStep("stored_iphone_low_segments", map[string]interface{}{
    "robot": "/s3/store",
    "use": "iphone_low_segments",
    "credentials": "YOUR_AWS_CREDENTIALS",
    "url_prefix": "https://demos.transloadit.com/",
  })
  
  assembly.AddStep("iphone_low_playlist", map[string]interface{}{
    "robot": "/media/playlist",
    "use": map[string]interface{}{
      "steps": "stored_iphone_low_segments",
      "bundle_steps": true,
    },
    "result": true,
    "resolution": "800x600",
    "bandwidth": "auto",
  })
  
  assembly.AddStep("master_playlist", map[string]interface{}{
    "robot": "/media/playlist",
    "use": map[string]interface{}{
      "steps": ["iphone_low_playlist", "iphone_high_playlist"],
      "bundle_steps": true,
    },
    "result": true,
  })
  
  assembly.AddStep("stored_playlist", map[string]interface{}{
    "robot": "/s3/store",
    "use": "master_playlist",
    "credentials": "YOUR_AWS_CREDENTIALS",
    "url_prefix": "https://demos.transloadit.com/",
  })
  
  assembly.AddStep("stored_original", map[string]interface{}{
    "robot": "/s3/store",
    "use": ":original",
    "credentials": "YOUR_AWS_CREDENTIALS",
    "url_prefix": "https://demos.transloadit.com/",
  })
  
  // Add files to upload
  assembly.AddFile("surf.mp4"))
  
  // 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: ")
  fmt.Printf("  - %s\n", info.Results[":original"][0].SSLURL)
  fmt.Printf("  - %s\n", info.Results["iphone_high_segments"][0].SSLURL)
  fmt.Printf("  - %s\n", info.Results["stored_iphone_high_segments"][0].SSLURL)
  fmt.Printf("  - %s\n", info.Results["iphone_high_playlist"][0].SSLURL)
  fmt.Printf("  - %s\n", info.Results["iphone_low_segments"][0].SSLURL)
  fmt.Printf("  - %s\n", info.Results["stored_iphone_low_segments"][0].SSLURL)
  fmt.Printf("  - %s\n", info.Results["iphone_low_playlist"][0].SSLURL)
  fmt.Printf("  - %s\n", info.Results["master_playlist"][0].SSLURL)
  fmt.Printf("  - %s\n", info.Results["stored_playlist"][0].SSLURL)
  fmt.Printf("  - %s\n", info.Results["stored_original"][0].SSLURL)
}
// implementation 'com.transloadit.sdk:transloadit:1.0.0

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) {
    // Initialize the Transloadit client
    Transloadit transloadit = new Transloadit("YOUR_TRANSLOADIT_KEY", "MY_TRANSLOADIT_SECRET");
    
    Assembly assembly = transloadit.newAssembly();
    
    // Set Encoding Instructions
    Map<String, Object> _originalStepOptions = new HashMap();
    assembly.addStep(":original", "/upload/handle", _originalStepOptions);
    
    Map<String, Object> iphone_high_segmentsStepOptions = new HashMap();
    iphone_high_segmentsStepOptions.put("use", ":original");
    iphone_high_segmentsStepOptions.put("preset", "iphone-high");
    iphone_high_segmentsStepOptions.put("segment", true);
    iphone_high_segmentsStepOptions.put("segment_duration", 10);
    iphone_high_segmentsStepOptions.put("ffmpeg_stack", "v6.0.0");
    iphone_high_segmentsStepOptions.put("width", 800);
    iphone_high_segmentsStepOptions.put("height", 600);
    iphone_high_segmentsStepOptions.put("turbo", true);
    assembly.addStep("iphone_high_segments", "/video/encode", iphone_high_segmentsStepOptions);
    
    Map<String, Object> stored_iphone_high_segmentsStepOptions = new HashMap();
    stored_iphone_high_segmentsStepOptions.put("use", "iphone_high_segments");
    stored_iphone_high_segmentsStepOptions.put("credentials", "YOUR_AWS_CREDENTIALS");
    stored_iphone_high_segmentsStepOptions.put("url_prefix", "https://demos.transloadit.com/");
    assembly.addStep("stored_iphone_high_segments", "/s3/store", stored_iphone_high_segmentsStepOptions);
    
    Map<String, Object> iphone_high_playlistStepOptions = new HashMap();
    iphone_high_playlistStepOptions.put("use", {
        "steps": "stored_iphone_high_segments",
        "bundle_steps": true,
      });
    iphone_high_playlistStepOptions.put("result", true);
    iphone_high_playlistStepOptions.put("resolution", "800x600");
    iphone_high_playlistStepOptions.put("bandwidth", "auto");
    assembly.addStep("iphone_high_playlist", "/media/playlist", iphone_high_playlistStepOptions);
    
    Map<String, Object> iphone_low_segmentsStepOptions = new HashMap();
    iphone_low_segmentsStepOptions.put("use", ":original");
    iphone_low_segmentsStepOptions.put("preset", "iphone-low");
    iphone_low_segmentsStepOptions.put("ffmpeg_stack", "v6.0.0");
    iphone_low_segmentsStepOptions.put("segment", true);
    iphone_low_segmentsStepOptions.put("result", true);
    iphone_low_segmentsStepOptions.put("segment_duration", 10);
    iphone_low_segmentsStepOptions.put("turbo", true);
    assembly.addStep("iphone_low_segments", "/video/encode", iphone_low_segmentsStepOptions);
    
    Map<String, Object> stored_iphone_low_segmentsStepOptions = new HashMap();
    stored_iphone_low_segmentsStepOptions.put("use", "iphone_low_segments");
    stored_iphone_low_segmentsStepOptions.put("credentials", "YOUR_AWS_CREDENTIALS");
    stored_iphone_low_segmentsStepOptions.put("url_prefix", "https://demos.transloadit.com/");
    assembly.addStep("stored_iphone_low_segments", "/s3/store", stored_iphone_low_segmentsStepOptions);
    
    Map<String, Object> iphone_low_playlistStepOptions = new HashMap();
    iphone_low_playlistStepOptions.put("use", {
        "steps": "stored_iphone_low_segments",
        "bundle_steps": true,
      });
    iphone_low_playlistStepOptions.put("result", true);
    iphone_low_playlistStepOptions.put("resolution", "800x600");
    iphone_low_playlistStepOptions.put("bandwidth", "auto");
    assembly.addStep("iphone_low_playlist", "/media/playlist", iphone_low_playlistStepOptions);
    
    Map<String, Object> master_playlistStepOptions = new HashMap();
    master_playlistStepOptions.put("use", {
        "steps": new String[] { "iphone_low_playlist", "iphone_high_playlist" },
        "bundle_steps": true,
      });
    master_playlistStepOptions.put("result", true);
    assembly.addStep("master_playlist", "/media/playlist", master_playlistStepOptions);
    
    Map<String, Object> stored_playlistStepOptions = new HashMap();
    stored_playlistStepOptions.put("use", "master_playlist");
    stored_playlistStepOptions.put("credentials", "YOUR_AWS_CREDENTIALS");
    stored_playlistStepOptions.put("url_prefix", "https://demos.transloadit.com/");
    assembly.addStep("stored_playlist", "/s3/store", stored_playlistStepOptions);
    
    Map<String, Object> stored_originalStepOptions = new HashMap();
    stored_originalStepOptions.put("use", ":original");
    stored_originalStepOptions.put("credentials", "YOUR_AWS_CREDENTIALS");
    stored_originalStepOptions.put("url_prefix", "https://demos.transloadit.com/");
    assembly.addStep("stored_original", "/s3/store", stored_originalStepOptions);
    
    // Add files to upload
    assembly.addFile(new File("surf.mp4"));
    
    // 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

Transloadit is a service for companies with developers. As a developer, there are many ways you can put us to good use.
  • 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.

Try it in your account

Copy these instructions to a Template of your own
(you'll be able to make changes before actually saving)

Need help? Talk to a human