Created
June 24, 2014 06:17
-
-
Save namor/389077a8087a4c03f487 to your computer and use it in GitHub Desktop.
Transloadit Template - Thumbnail any media type (file / image / video)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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