Skip to content

Instantly share code, notes, and snippets.

@namor
Created June 24, 2014 06:17
Show Gist options
  • Save namor/389077a8087a4c03f487 to your computer and use it in GitHub Desktop.
Save namor/389077a8087a4c03f487 to your computer and use it in GitHub Desktop.
Transloadit Template - Thumbnail any media type (file / image / video)
{
"steps": {
"import": {
"robot": "/s3/import"
},
"videos": {
"use": "import",
"robot": "/file/filter",
"accepts": [
[
"${file.mime}",
"regex",
"video"
]
],
"error_on_decline": false
},
"audios": {
"use": "import",
"robot": "/file/filter",
"accepts": [
[
"${file.mime}",
"regex",
"audio"
]
],
"error_on_decline": false
},
"images": {
"use": "import",
"robot": "/file/filter",
"accepts": [
[
"${file.mime}",
"regex",
"image"
]
],
"error_on_decline": false
},
"thumbnail_video": {
"robot": "/video/thumbs",
"use": "videos",
"count": 1,
"offsets": [
2
],
"format": "png",
"resize_strategy": "fit"
},
"thumbnail_audio": {
"use": "audios",
"robot": "/audio/artwork"
},
"thumbnail_image": {
"use": [
"images",
"thumbnail_audio",
"thumbnail_video"
],
"robot": "/image/resize",
"width": 200,
"height": 200,
"resize_strategy": "fit",
"strip": true,
"format": "png",
"zoom": false
},
"store_thumbnail": {
"robot": "/s3/store",
"use": "thumbnail_image"
}
}
}
@kvz
Copy link

kvz commented Jun 24, 2014

Adding to this, you might also want to add document thumbs. e.g. animated gifs of pdfs: https://transloadit.com/docs/conversion-robots#document-thumbs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment