비디오에 자막 생성
중급
이것은Content Creation, Multimodal AI분야의자동화 워크플로우로, 13개의 노드를 포함합니다.주로 Gmail, Merge, Webhook, HttpRequest, ExecuteCommand 등의 노드를 사용하며. OpenAI Whisper와 LibreTranslate를 사용하여 비디오 자막을 생성 및 번역
사전 요구사항
- •Google 계정 및 Gmail API 인증 정보
- •HTTP Webhook 엔드포인트(n8n이 자동으로 생성)
- •대상 API의 인증 정보가 필요할 수 있음
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "w2qeYCgIcuMglLEB",
"meta": {
"instanceId": "058026fc00ddd0f398afec59419d60070007f9155d42ea1b5598fa1878c9da96",
"templateCredsSetupCompleted": true
},
"name": "Generate Subtitles for Videos",
"tags": [],
"nodes": [
{
"id": "7fa3143f-a837-4711-a72e-ee8b85e56757",
"name": "Webhook 트리거",
"type": "n8n-nodes-base.webhook",
"position": [
-1504,
112
],
"webhookId": "a5f7f098-25f6-40ea-b139-c1fb1ef25b74",
"parameters": {
"path": "generate-subtitles",
"options": {
"responseData": {
"responseBody": "Processing started"
}
},
"httpMethod": "POST"
},
"typeVersion": 1
},
{
"id": "23f12e94-e98c-4787-be58-763624e59537",
"name": "비디오 다운로드",
"type": "n8n-nodes-base.httpRequest",
"position": [
-1200,
112
],
"parameters": {
"url": "={{$json[\"body\"][\"video_url\"]}}",
"options": {},
"responseFormat": "file"
},
"typeVersion": 2
},
{
"id": "d0f75494-fa2c-46f1-9ff2-2e17f8a88d0b",
"name": "오디오 추출 (FFmpeg)",
"type": "n8n-nodes-base.executeCommand",
"position": [
-896,
112
],
"parameters": {
"command": "ffmpeg -i /data/video.mp4 -q:a 0 -map a /data/audio.wav"
},
"typeVersion": 1
},
{
"id": "8d462da7-7935-4c5d-9528-2f4a41d2b79b",
"name": "Whisper 실행 (로컬)",
"type": "n8n-nodes-base.executeCommand",
"position": [
-608,
112
],
"parameters": {
"command": "whisper /data/audio.wav --model base --output_format srt --output_dir /data/"
},
"typeVersion": 1
},
{
"id": "85ffc4ca-8f9d-485b-ab99-83b6774781b0",
"name": "SRT 파일 읽기",
"type": "n8n-nodes-base.readBinaryFile",
"position": [
-304,
112
],
"parameters": {
"filePath": "/data/audio.srt"
},
"typeVersion": 1
},
{
"id": "c982d95f-b63b-4dc0-abc5-0bfdb6fbced9",
"name": "자막 번역 (LibreTranslate)",
"type": "n8n-nodes-base.httpRequest",
"position": [
224,
560
],
"parameters": {
"url": "https://libretranslate.com/translate",
"options": {},
"authentication": "genericCredentialType",
"jsonParameters": true
},
"typeVersion": 2
},
{
"id": "aa3eee42-8559-4f05-891c-9169b32f58cf",
"name": "번역된 SRT 파일 작성",
"type": "n8n-nodes-base.writeBinaryFile",
"position": [
448,
560
],
"parameters": {
"options": {},
"fileName": "audio_translated.srt"
},
"typeVersion": 1
},
{
"id": "fb95e5aa-dd78-4249-b0d1-775dc259a870",
"name": "경로 병합",
"type": "n8n-nodes-base.merge",
"position": [
112,
128
],
"parameters": {
"mode": "passThrough"
},
"typeVersion": 1
},
{
"id": "dae85000-c87f-4607-b80c-5c9c70276ce1",
"name": "메시지 보내기",
"type": "n8n-nodes-base.gmail",
"position": [
768,
128
],
"webhookId": "0dc39fa6-fac8-480d-a4cc-a1074edac0c2",
"parameters": {
"sendTo": "your-email@gmail.com",
"message": "Attached are the subtitles (original and translated, if requested).",
"options": {},
"subject": "Video Subtitles Generated"
},
"credentials": {
"gmailOAuth2": {
"id": "f2AXAChfee6nsCv9",
"name": "Gmail account"
}
},
"typeVersion": 2.1
},
{
"id": "22d8ef5e-e319-4f76-8366-7b23bc600f43",
"name": "스티커 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1536,
-176
],
"parameters": {
"color": 3,
"width": 480,
"height": 480,
"content": "## Input\n- Receives a video URL via webhook.\n- Acts as the workflow’s entry point.\n- Downloads the video from the provided URL.\n- Prepares it for audio extraction."
},
"typeVersion": 1
},
{
"id": "5bf9004c-5e09-4cc2-af0f-63f9a2df15f7",
"name": "스티커 노트1",
"type": "n8n-nodes-base.stickyNote",
"position": [
-960,
-176
],
"parameters": {
"color": 4,
"width": 848,
"height": 480,
"content": "## Audio Extraction & Transcribing\n- Uses FFmpeg to separate audio from the video file.\n- Run Whisper (Local)\n- Uses OpenAI Whisper (running locally) to transcribe the extracted audio into text/subtitles.\n- Read SRT File\n- Reads the generated subtitle file (.srt)\n- Prepares the subtitle data for optional translation."
},
"typeVersion": 1
},
{
"id": "2627a7bc-a0f7-4d03-b849-878abe63eb6a",
"name": "스티커 노트2",
"type": "n8n-nodes-base.stickyNote",
"position": [
144,
336
],
"parameters": {
"color": 5,
"width": 480,
"height": 400,
"content": "## Translation\n- Combines transcription and translation paths.\n- Ensures that subtitles (original or translated) are passed downstream.\n- Translate Subtitles (LibreTranslate)\n- Sends the .srt file text to LibreTranslate for language translation.\n- Write Translated SRT\n- Outputs a new .srt file containing translated subtitles."
},
"typeVersion": 1
},
{
"id": "fc33c12c-d054-4afe-bbf3-2f8a36c2f9df",
"name": "스티커 노트3",
"type": "n8n-nodes-base.stickyNote",
"position": [
-2432,
-160
],
"parameters": {
"width": 608,
"height": 912,
"content": "# Subtitle Generator & Translator N8N Template Instructions\n\nThis workflow automatically processes a video URL received via a webhook, generates highly accurate subtitles using **OpenAI Whisper**, and optionally translates them before delivering the final `.srt` file.\n\n---\n\n## 🔴 Prerequisites\n\n- **Self-Hosted N8N** \n This workflow requires a self-hosted N8N instance, as it uses the **Execute Command** node.\n\n- **FFmpeg** \n The **Extract Audio (FFmpeg)** node requires the `ffmpeg` command-line tool to be installed and accessible via your N8N server's shell path.\n\n- **OpenAI Whisper** \n The **Run Whisper (Local)** node requires the `whisper` command-line tool (Python package) to be installed and accessible via your N8N server's shell path.\n\n- **Translation Service** \n You will need a credential for the **LibreTranslate** node "
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "66d89da8-0755-4e8b-bf81-d1ae3fad5507",
"connections": {
"fb95e5aa-dd78-4249-b0d1-775dc259a870": {
"main": [
[
{
"node": "dae85000-c87f-4607-b80c-5c9c70276ce1",
"type": "main",
"index": 0
}
]
]
},
"85ffc4ca-8f9d-485b-ab99-83b6774781b0": {
"main": [
[
{
"node": "fb95e5aa-dd78-4249-b0d1-775dc259a870",
"type": "main",
"index": 0
}
]
]
},
"23f12e94-e98c-4787-be58-763624e59537": {
"main": [
[
{
"node": "d0f75494-fa2c-46f1-9ff2-2e17f8a88d0b",
"type": "main",
"index": 0
}
]
]
},
"7fa3143f-a837-4711-a72e-ee8b85e56757": {
"main": [
[
{
"node": "23f12e94-e98c-4787-be58-763624e59537",
"type": "main",
"index": 0
}
]
]
},
"8d462da7-7935-4c5d-9528-2f4a41d2b79b": {
"main": [
[
{
"node": "85ffc4ca-8f9d-485b-ab99-83b6774781b0",
"type": "main",
"index": 0
}
]
]
},
"aa3eee42-8559-4f05-891c-9169b32f58cf": {
"main": [
[
{
"node": "fb95e5aa-dd78-4249-b0d1-775dc259a870",
"type": "main",
"index": 1
}
]
]
},
"d0f75494-fa2c-46f1-9ff2-2e17f8a88d0b": {
"main": [
[
{
"node": "8d462da7-7935-4c5d-9528-2f4a41d2b79b",
"type": "main",
"index": 0
}
]
]
},
"c982d95f-b63b-4dc0-abc5-0bfdb6fbced9": {
"main": [
[
{
"node": "aa3eee42-8559-4f05-891c-9169b32f58cf",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 콘텐츠 제작, 멀티모달 AI
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
AI 기반 동영상 제작 및 Instagram, TikTok, YouTube 업로드
클라우드 드라이브 기반 AI 기반 비디오 제작 및 Instagram, TikTok, YouTube 업로드
If
Set
Code
+
If
Set
Code
53 노드DevCode Journey
콘텐츠 제작
회의록 및 액션 아이템 트래커
AI 기반 회의록: GPT-4, 작업 할당 및 다중 채널 배포 활용
If
Set
Code
+
If
Set
Code
38 노드Jitesh Dugar
콘텐츠 제작
트렌드 스프레드시트에서 SEO 콘텐츠를 스토리지(SharePoint/Drive/Dropbox)로 생성
GPT-4o, FAL AI 및 다중 저장소 지원을 사용하여 트렌드에서 SEO 콘텐츠 자동 생성
If
Set
Code
+
If
Set
Code
47 노드plemeo
콘텐츠 제작
인플루언서 마케팅 캠페인 관리 시스템 자동화
Instagram/YouTube API를 활용한 인플루언서 평가 및 캠페인 관리 자동화
If
Code
Gmail
+
If
Code
Gmail
24 노드Jitesh Dugar
콘텐츠 제작
비디오 업로드 자동화 → 자동 섬네일 → Google 드라이브
FFmpeg 및 Google Drive를 사용한 비디오 업로드 및 썸네일 생성 자동화
If
Webhook
Google Drive
+
If
Webhook
Google Drive
9 노드WeblineIndia
콘텐츠 제작
fraud 방지 잠재 고객 캡처 및 성장 시스템
AI 평점, 테이블 추적, 다중 채널 알림을 통해防欺诈 잠재 고객을捕获하고 키우습니다.
If
Set
Code
+
If
Set
Code
28 노드Jitesh Dugar
콘텐츠 제작
워크플로우 정보
난이도
중급
노드 수13
카테고리2
노드 유형8
저자
Paul Abraham
@hellopaulSoftware Engineer & Automation Consultant with over 3+ years in experience helping teams streamline workflows with n8n, APIs, and AI-driven solutions.
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유