YouTube Videos with AI Summaries on Discord

Automatically share new YouTube videos with AI-generated summaries directly to your Discord server, keeping your community informed and engaged without manual effort. This n8n workflow uses a YouTube Video Trigger to detect new uploads, then retrieves and downloads the video's captions via httpRequest nodes. The Caption File Conversion node extracts the text, which is then sent to OpenAI's ChatGPT (AI:openAi) for a concise summary. Finally, the Discord node posts the video link and its AI summary to a designated channel. This is ideal for content creators, community managers, or educators who want to quickly disseminate new video content and provide digestible overviews, saving significant time on content preparation and cross-platform sharing while enhancing audience engagement.
8 nodesmanual trigger158 views0 copiesSocial Media
YouTubeDiscordOpenAI

Workflow JSON

{"id": "LF8gz3iz74u45a5i", "meta": {"instanceId": "889f0d7d968f3b02a88433e2529a399907d2ca89e329934b608193beaa2301f8"}, "name": "YouTube Videos with AI Summaries on Discord", "tags": [], "nodes": [{"id": "48c87027-7eea-40b9-a73c-4e002b748783", "name": "YouTube Video Trigger", "type": "n8n-nodes-base.rssFeedReadTrigger", "position": [560, 220], "parameters": {"feedUrl": "https://www.youtube.com/feeds/videos.xml?channel_id=UC08Fah8EIryeOZRkjBRohcQ", "pollTimes": {"item": [{"mode": "everyMinute"}]}}, "typeVersion": 1}, {"id": "56166228-b365-4043-b48c-098b4de71f6f", "name": "Retrieve Caption Data", "type": "n8n-nodes-base.httpRequest", "position": [780, 220], "parameters": {"url": "https://www.googleapis.com/youtube/v3/captions", "options": {}, "sendQuery": true, "authentication": "predefinedCredentialType", "queryParameters": {"parameters": [{"name": "videoId", "value": "={{ $json.id.match(/(?:[^:]*:){2}\\s*(.*)/)[1] }}"}, {"name": "part", "value": "snippet"}]}, "nodeCredentialType": "youTubeOAuth2Api"}, "credentials": {"youTubeOAuth2Api": {"id": "", "name": "[Your youTubeOAuth2Api]"}}, "typeVersion": 4.2}, {"id": "c029ac6f-3071-4045-83f6-2dede0c1f358", "name": "Download Captions", "type": "n8n-nodes-base.httpRequest", "position": [1220, 220], "parameters": {"url": "=https://www.googleapis.com/youtube/v3/captions/{{ $json.caption.id }}", "options": {}, "authentication": "predefinedCredentialType", "nodeCredentialType": "youTubeOAuth2Api"}, "credentials": {"youTubeOAuth2Api": {"id": "", "name": "[Your youTubeOAuth2Api]"}}, "typeVersion": 4.2}, {"id": "8b45dc14-f10f-4b50-8ca6-a9d0ccfee4dc", "name": "Caption File Conversion", "type": "n8n-nodes-base.extractFromFile", "position": [1440, 220], "parameters": {"options": {}, "operation": "text", "destinationKey": "content"}, "typeVersion": 1}, {"id": "6527adb4-9087-40eb-b63a-8c4cdf5d0a40", "name": "Caption Summary with ChatGPT", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [1660, 220], "parameters": {"modelId": {"__rl": true, "mode": "list", "value": "gpt-3.5-turbo", "cachedResultName": "GPT-3.5-TURBO"}, "options": {}, "messages": {"values": [{"content": "=Summarise this transcript into three bullet points to sum up what the video is about and why someone should watch it: {{ $json[\"content\"] }}"}]}}, "credentials": {"openAiApi": {"id": "", "name": "[Your openAiApi]"}}, "typeVersion": 1.3}, {"id": "2c83f230-bc37-4efb-9ee9-842bcefa0ef4", "name": "Post to Discord", "type": "n8n-nodes-base.discord", "position": [2000, 220], "parameters": {"content": "=\ud83c\udf1f New Video Alert! \ud83c\udf1f\n\n**{{ $('YouTube Video Trigger').item.json[\"title\"] }}**\n\n*What\u2019s it about?*\n\n{{ $json[\"message\"][\"content\"] }}\n\n[Watch NOW]({{ $('YouTube Video Trigger').item.json[\"link\"] }}) and remember to share your thoughts!", "options": {}, "authentication": "webhook"}, "credentials": {"discordWebhookApi": {"id": "", "name": "[Your discordWebhookApi]"}}, "typeVersion": 2}, {"id": "8408887e-1d89-402c-b350-93d5f96f4dea", "name": "Find English Captions", "type": "n8n-nodes-base.set", "position": [1000, 220], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "eaf7dcb5-91cf-4405-917b-38845f0ef78d", "name": "caption", "type": "object", "value": "={{ $jmespath( $json.items, \"[?snippet.language == 'en'] | [0]\" ) }}"}]}}, "typeVersion": 3.3}, {"id": "71cc0977-1695-4797-9df2-b0a98e41d3de", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [500, -20], "parameters": {"width": 448.11859838274916, "height": 417.2722371967648, "content": "### Summarise Your YouTube Videos with AI for Discord\n\n\ud83d\udcfd\ufe0f [Watch the Video Tutorial](https://mrc.fm/ai2d)\n\n* Add your [YouTube channel ID](https://www.youtube.com/account_advanced) to the URL in the first node: `https://www.youtube.com/feeds/videos.xml?channel_id=YOUR_CHANNEL_ID`.\n\n* Ensure authorization with the YouTube channel that you want to download captions from."}, "typeVersion": 1}], "active": false, "pinData": {}, "settings": {"executionOrder": "v1"}, "versionId": "e8fc6758-02ef-4b65-8ab5-474bd8e3862a", "connections": {"Download Captions": {"main": [[{"node": "Caption File Conversion", "type": "main", "index": 0}]]}, "Find English Captions": {"main": [[{"node": "Download Captions", "type": "main", "index": 0}]]}, "Retrieve Caption Data": {"main": [[{"node": "Find English Captions", "type": "main", "index": 0}]]}, "YouTube Video Trigger": {"main": [[{"node": "Retrieve Caption Data", "type": "main", "index": 0}]]}, "Caption File Conversion": {"main": [[{"node": "Caption Summary with ChatGPT", "type": "main", "index": 0}]]}, "Caption Summary with ChatGPT": {"main": [[{"node": "Post to Discord", "type": "main", "index": 0}]]}}}

How to Import This Workflow

  1. 1Copy the workflow JSON above using the Copy Workflow JSON button.
  2. 2Open your n8n instance and go to Workflows.
  3. 3Click Import from JSON and paste the copied workflow.

Don't have an n8n instance? Start your free trial at n8nautomation.cloud

Related Templates

Business WhatsApp AI RAG Chatbot

Automate your business's WhatsApp customer service with an intelligent AI chatbot that leverages your Google Drive documents for accurate, context-aware responses. This powerful workflow connects incoming WhatsApp messages, triggered by a webhook, to an OpenAI-powered AI Agent, which then queries a Qdrant Vector Store populated with information from your Google Drive files. When a customer sends a message, the workflow first verifies the webhook, then routes the message to the AI Agent. The AI Agent uses an OpenAI Chat Model and a Window Buffer Memory to maintain conversation context, retrieving relevant data from your Google Drive documents via the Qdrant Vector Store, which is kept up-to-date by the Refresh collection and Create collection HTTP requests. Google Drive's Get folder and Download Files nodes extract your business's knowledge base, which is then processed by the Embeddings OpenAI, Default Data Loader, and Token Splitter nodes before being stored in Qdrant. This setup allows businesses to provide instant, personalized support 24/7, reducing response times, freeing up staff from repetitive inquiries, and ensuring consistent, accurate information delivery directly through WhatsApp. It's ideal for sales teams answering product questions, support departments resolving common issues, or marketing teams providing information about services, significantly enhancing customer satisfaction and operational efficiency.

24 nodes

Discord AI bot

Automate the intelligent routing of incoming user requests from a webhook to the appropriate Discord department with this powerful workflow. This n8n workflow leverages OpenAI's advanced natural language processing to analyze user input, then directs the request to either the User Success Dept, IT Dept, or Helpdesk Discord channel based on the identified category. Imagine a customer submitting a query through a web form; this workflow instantly understands their need and posts it in the relevant team's Discord channel, eliminating manual triage and ensuring faster response times. This solution is ideal for businesses and support teams looking to streamline their customer service operations, reduce response delays, and improve internal communication by automatically categorizing and distributing inquiries, saving significant time and effort in managing support tickets.

9 nodes

Telegram AI-bot

Build an intelligent Telegram AI-bot that responds to user messages, generates images, and provides dynamic greetings. This workflow connects Telegram as the primary communication channel with OpenAI for advanced AI capabilities, including text generation for chat responses and image creation. Users can interact with the bot to ask questions, receive personalized greetings, or request images, making it ideal for customer support, community engagement, or creative content generation. By automating AI-powered interactions directly within Telegram, this solution significantly reduces manual effort in responding to common queries, generating visual content, and maintaining an active, engaging presence, ultimately saving time and resources for businesses and individuals alike.

16 nodes

Ready to automate with n8n?

Get affordable managed n8n hosting with 24/7 support.