« Back to demos index

Encode a video, extract 8 thumbnails and store everything in your S3 bucket

The demo below encodes a video, extracts thumbnails from it and stores both the encoded video and the thumbnails in your s3 bucket. Templates are encrypted on our server, so you can safely provide your bucket credentials. » See full documentation

"steps": {
  "flash_encoding": {
    "use": ":original",
    "robot": "/video/encode",
    "preset": "flash",
    "width": 640,
    "height": 480
  },
  "extracted_thumbs": {
    "use": "flash_encoding",
    "robot": "/video/thumbs"
  },
  "store": {
    "robot": "/s3/store",
    "use": ["flash_encoding", "extracted_thumbs"],
    "key": "YOUR_AWS_KEY",
    "secret": "YOUR_AWS_SECRET",
    "bucket": "YOUR_S3_BUCKET"
  }
}
$(function() {
  $('form').transloadit({
    wait: true,
    autoSubmit: true
  });
});

The form

For demos we allow a maximum of 30MB.

This form is html5-multiupload enabled. If your browser supports it, you can select multiple files and execute the template with them.