Block 1 - Sticky Note - Overview1
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
Video Processing Pipeline with Thumbnail Generation and CDN Distribution Summary Automated video processing system that monitors S3 for new uploads, generates thumbnails and preview clips, extracts...
n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.merge, n8n-nodes-base.code, n8n-nodes-base.if, n8n-nodes-base.set, n8n-nodes-base.httprequest, n8n-nodes-base.aggregate
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Tomoki.
Original n8n.io source# Video Processing Pipeline with Thumbnail Generation and CDN Distribution
Automated video processing system that monitors S3 for new uploads, generates thumbnails and preview clips, extracts metadata, transcodes to multiple formats, and distributes to CDN with webhook notifications.
A comprehensive video processing workflow that receives S3 events or manual triggers, validates video files, extracts metadata via FFprobe, generates thumbnails at key frames, creates animated GIF previews, transcodes to multiple resolutions, invalidates CDN cache, and sends completion notifications.
[S3 Event Webhook] [Manual Webhook]
| |
+--------+----------+
|
v
[Merge Triggers]
|
v
[Extract S3 Info] (Code)
|
v
[Check Is Video] (If)
/ \
Yes No
| |
v v
[Get Video Metadata] [Invalid Response]
(FFprobe) |
| |
v |
[Parse Video Metadata] |
(Code) |
/|\ |
/ | \ |
v v v |
[Thumbs][GIF][Transcode] |
\ | / |
\ | / |
v v |
[Aggregate Results] |
| |
v |
[Invalidate CDN Cache] |
| |
v |
[Generate Signed URLs] |
/ \ |
/ \ |
v v |
[Log Sheet] [Slack] |
\ / |
\ / |
v |
[Merge Output Paths] |
| |
+---------+-------+
|
v
[Merge All Paths]
|
v
[Respond to Webhook]
#video-processing for notifications| Extension | MIME Type |
|---|---|
| .mp4 | video/mp4 |
| .mov | video/quicktime |
| .avi | video/x-msvideo |
| .mkv | video/x-matroska |
| .webm | video/webm |
| .m4v | video/x-m4v |
| Size | Dimensions | Suffix |
|---|---|---|
| Large | 1280x720 | _large |
| Medium | 640x360 | _medium |
| Small | 320x180 | _small |
Thumbnails generated at: 10%, 30%, 50%, 70%, 90% of video duration
| Preset | Resolution | Bitrate | Codec |
|---|---|---|---|
| 1080p | 1920x1080 | 5000k | H.264 |
| 720p | 1280x720 | 2500k | H.264 |
| 480p | 854x480 | 1000k | H.264 |
{
"job_id": "job_1705312000_abc123",
"status": "completed",
"original": {
"filename": "video.mp4",
"resolution": "1920x1080",
"duration": "00:05:30"
},
"thumbnails": {
"large": "https://cdn/thumbnails/job_id/thumb_0_large.jpg",
"medium": "https://cdn/thumbnails/job_id/thumb_0_medium.jpg",
"small": "https://cdn/thumbnails/job_id/thumb_0_small.jpg"
},
"preview_gif": "https://cdn/previews/job_id/preview.gif",
"transcoded": {
"1080p": "https://cdn/transcoded/job_id/video_1080p.mp4",
"720p": "https://cdn/transcoded/job_id/video_720p.mp4",
"480p": "https://cdn/transcoded/job_id/video_480p.mp4"
}
}
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Automate S3 video transcoding, thumbnail generation & CDN distribution |
|---|---|
| Complexity | advanced |
| Nodes | 24 |
| Categories | Content Creation, Multimodal AI |
| Author | Tomoki |
| Published | 16 Dec 2025 |
Use the JSON export at /data/workflows/11853/11853.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Video Processing Pipeline with Thumbnail Generation and CDN Distribution Summary Automated video processing system that monitors S3 for new uploads, generates thumbnails and preview clips, extracts...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Content Creation, Multimodal AI use case.