Block 1 - Main Sticky — Overview + Setup
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
Description Paste any training video URL in the form — this n8n workflow automatically extracts AI generated key summaries, highlights, and tags using WayinVideo, then save...
n8n-nodes-base.stickynote, n8n-nodes-base.httprequest, n8n-nodes-base.wait, n8n-nodes-base.if, n8n-nodes-base.googlesheets, n8n-nodes-base.formtrigger
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by isaWOW.
Original n8n.io sourcePaste any training video URL in the form — this n8n workflow automatically extracts AI-generated key summaries, highlights, and tags using WayinVideo, then saves everything directly into a shared Google Sheet knowledge base. No manual note-taking, no video scrubbing, no copy-paste. Just submit and done.
Built for HR teams, L&D managers, content teams, and agencies who want to turn training videos into searchable, structured knowledge — on autopilot.
This automation handles your complete video-to-knowledge-base pipeline:
Form-triggered — Team member submits any YouTube training video URL + department name via a simple web form and the workflow starts instantly
AI summary generation — WayinVideo AI automatically extracts the key summary, highlights, and topic tags from the video
Smart polling loop — Waits and retries every 30 seconds until AI processing is fully complete
Auto-save to Google Sheets — Saves video title, key summary, highlights, tags, department, and original URL as a new row in your shared knowledge base sheet
Zero manual work — No editing, no copy-paste, no summarising. Just submit the URL and the knowledge base builds itself
Tools You'll Need:
Estimated Setup Time: 10–15 minutes
WayinVideo is the AI engine that extracts summaries and highlights from your training videos.
YOUR_WAYINVIDEO_API_KEY with your actual token in the Authorization header> ⚠️ The API key appears in two places — Submit node and Fetch node. Replace both or the workflow will fail.
YOUR_GOOGLE_SHEET_URL with your actual Google Sheets URLHow to find your Google Sheet URL:
https://docs.google.com/spreadsheets/d/YOUR_SHEET_ID/edit)Required columns in your Google Sheet:
Your sheet must have exactly these column headers (copy-paste to avoid typos):
| Topic/Department | Video URL | Video Title | Key Summary | Highlights | Tags |
|---|
Step 1 — Web Form Trigger A team member opens the form, pastes a YouTube training video URL, and selects their Topic or Department. Clicking submit triggers the entire workflow instantly.
Step 2 — Submit Video to WayinVideo API
The workflow sends a POST request to the WayinVideo Summaries API (/api/v2/summaries) with the video URL. The API returns a Job ID which is used to track processing status.
Step 3 — Wait 30 Seconds The workflow pauses for 30 seconds to give WayinVideo time to start processing. This prevents hitting the API too early with an empty or incomplete response.
Step 4 — Poll for Summary Result
Using the Job ID from Step 2, the workflow calls:
GET /api/v2/summaries/results/{job_id}
to check if the AI summary is complete.
Step 5 — Highlights Ready? (Smart Retry Loop) The IF node checks whether the highlights array in the API response is non-empty:
> This smart retry loop runs automatically every 30 seconds until processing is complete. No manual retries needed.
Step 6 — Save to Google Sheet Once highlights are confirmed, the workflow appends a new row to your Google Sheet with:
✅ Zero manual work — AI handles all summarising, highlight extraction, and tagging
✅ Smart polling loop — Auto-retries every 30s, no timeout issues, no manual re-runs
✅ Structured knowledge base — Every video becomes a searchable, organised row in Google Sheets
✅ Team-ready form — Share one URL with your whole team, no n8n access needed
✅ Department tagging — Filter and sort your knowledge base by team or topic
✅ AI-generated tags — Every entry is auto-tagged for easy search and categorisation
✅ Highlights as numbered list — Key moments saved in a clean, readable format
Add a Date Added column:
Map {{ $now }} to a new "Date Added" column in the Google Sheets node to automatically log when each entry was created.
Send a Slack or email notification: Add a Slack or Gmail node after the Google Sheets node to notify your team that a new training video summary has been saved.
Increase wait time for longer videos:
Change the amount in the "3. Wait — 30 Seconds" node from 30 to 60 or 90 for longer videos that take more time to process.
Add more videos in bulk: Modify the form to accept multiple URLs and add a Split node to process each video in sequence automatically.
Export knowledge base to PDF weekly: Add a scheduled trigger to pull your Google Sheet data and generate a weekly PDF training digest using a PDF generation node.
Need help setting this up or want a custom version built for your team or agency?
📧 Email: [email protected] 🌐 Website: https://isawow.com
> Pro Tip: Pin this workflow's Google Sheet link to your team Slack channel or Notion page so everyone can search the knowledge base instantly after any training session.
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 | Build an employee training video knowledge base using the WayinVideo summaries API |
|---|---|
| Complexity | intermediate |
| Nodes | 12 |
| Categories | Document Extraction, AI Summarization |
| Author | isaWOW |
| Published | 30 Mar 2026 |
Use the JSON export at /data/workflows/14454/14454.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.
Description Paste any training video URL in the form — this n8n workflow automatically extracts AI generated key summaries, highlights, and tags using WayinVideo, then save...
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 Document Extraction, AI Summarization use case.