Hey, I’m using Transloadit via Integromat (a no-code automation service similar to Zapier).
I’m using the /video/thumbs template, and the Integromat module is POSTing the video .mp4 URL as a field called ‘url’ when the assembly runs.
My question: How do I modify my code to retrieve that file??
Here’s a screenshot of the Transloadit module in Integromat
And here’s my Transloadit code:
{
“steps”: {
“:original”: {
“robot”: “/upload/handle”
},
“ipad_encoded”: {
“use”: “:original”,
“robot”: “/video/encode”,
“ffmpeg_stack”: “v4.3.1”,
“height”: 480,
“preset”: “ipad-high”,
“turbo”: true,
“width”: 640
},
“thumbnailed”: {
“use”: “ipad_encoded”,
“robot”: “/video/thumbs”,
“count”: 10,
“ffmpeg_stack”: “v4.3.1”
},
“large_resized”: {
“use”: “thumbnailed”,
“robot”: “/image/resize”,
“result”: true,
“height”: 120,
“imagemagick_stack”: “v2.0.7”,
“width”: 120
},
“medium_resized”: {
“use”: “thumbnailed”,
“robot”: “/image/resize”,
“result”: true,
“height”: 75,
“imagemagick_stack”: “v2.0.7”,
“width”: 75
},
“small_resized”: {
“use”: “thumbnailed”,
“robot”: “/image/resize”,
“result”: true,
“height”: 30,
“imagemagick_stack”: “v2.0.7”,
“width”: 30
},
“exported”: {
“use”: [
“ipad_encoded”,
“thumbnailed”,
“small_resized”,
“medium_resized”,
“large_resized”,
“:original”
],
“robot”: “/s3/store”,
“credentials”: “YOUR_AWS_CREDENTIALS”
}
}
}