« Back to demos index

Resize the thumbnails to 75x75 pixels after extraction

The /video/thumbs robot is also capable of resizing the extracted thumbnails on the fly. In the demo below it resizes them to 75x75 pixels using the "pad" resize strategy by default. » 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",
    "width": 75,
    "height": 75
  }
}
$(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.