YouTube 動画の説明文を自動更新し、テキストを挿入する
中級
これはMarketing分野の自動化ワークフローで、9個のノードを含みます。主にSet, Code, YouTube, ManualTrigger, SplitInBatchesなどのノードを使用。 YouTube動画の説明文を自動更新してテキストを挿入
前提条件
- •特別な前提条件なし、インポートしてすぐに使用可能
カテゴリー
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"name": "Automatically Update YouTube Video Descriptions with Inserted Text",
"tags": [],
"nodes": [
{
"id": "19cafddc-6199-4418-8213-9743c34c9176",
"name": "すべての動画を取得",
"type": "n8n-nodes-base.youTube",
"position": [
480,
380
],
"parameters": {
"limit": 3,
"filters": {},
"options": {
"order": "date"
},
"resource": "video"
},
"typeVersion": 1
},
{
"id": "63a6a8e6-994f-46ab-a731-609549fec99f",
"name": "動画の説明を更新",
"type": "n8n-nodes-base.youTube",
"position": [
1320,
460
],
"parameters": {
"title": "={{ $('Get Specific Video').item.json.snippet.title }}",
"videoId": "={{ $('Get Specific Video').item.json.id}}",
"resource": "video",
"operation": "update",
"categoryId": "={{ $('Get Specific Video').item.json.snippet.categoryId }}",
"regionCode": "US",
"updateFields": {
"tags": "={{ $('Get Specific Video').item.json.snippet.tags.join() }}",
"description": "={{ $json.updatedDescription }}"
}
},
"typeVersion": 1
},
{
"id": "ce147272-f6c3-4cfb-954b-9a77c63a6232",
"name": "ワークフローテスト実行時",
"type": "n8n-nodes-base.manualTrigger",
"position": [
120,
380
],
"parameters": {},
"typeVersion": 1
},
{
"id": "9ba206b2-1161-41a3-8581-d60dae665096",
"name": "付箋",
"type": "n8n-nodes-base.stickyNote",
"position": [
100,
120
],
"parameters": {
"color": 5,
"width": 580,
"height": 180,
"content": "## Insert Text into YouTube Video Descriptions\n**Automatically insert a row of text between two specified rows** in all your YouTube video descriptions. \n\nThis workflow is ideal for YouTubers who need to update multiple video descriptions at once. Easily add a new link or text between existing lines, ensuring consistency across all your video descriptions without manual edits."
},
"typeVersion": 1
},
{
"id": "e05f5b9c-c160-45d7-b67a-62d68acc0829",
"name": "付箋1",
"type": "n8n-nodes-base.stickyNote",
"position": [
100,
560
],
"parameters": {
"color": 4,
"width": 340,
"height": 260,
"content": "## Configure text string to insert 👆 \nDefine the text string (row) that will be added to your YouTube video descriptions.\n\n### Variables\n- **rowBefore** → The new row will be inserted *after* this line.\n- **rowToInsert** -→ The text or link you want to add.\n- **rowAfter**→ The new row will be inserted *before* this line.\n\n"
},
"typeVersion": 1
},
{
"id": "51a3fd15-8767-4cc0-98a8-fe98ec90db70",
"name": "挿入文字列を設定",
"type": "n8n-nodes-base.set",
"position": [
300,
380
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "a05b56b1-6f18-4359-aa4b-127399877301",
"name": "rowBefore",
"type": "string",
"value": "=https://firstlink.com"
},
{
"id": "95ac4a95-cdf4-4d7a-b9a3-78d54c879115",
"name": "rowToInsert",
"type": "string",
"value": "https://mynewlinktoinsert.com"
},
{
"id": "ded86a1f-f0a5-42b8-9176-9be4038f6290",
"name": "rowAfter",
"type": "string",
"value": "https://secondlink.com"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "590b8bb3-6eb4-4bb8-af4c-c2d95221f045",
"name": "動画をループ処理",
"type": "n8n-nodes-base.splitInBatches",
"position": [
700,
380
],
"parameters": {
"options": {
"reset": false
}
},
"typeVersion": 3
},
{
"id": "a80ac941-0a99-4eab-8a6c-effef1e136fa",
"name": "特定動画を取得",
"type": "n8n-nodes-base.youTube",
"position": [
900,
460
],
"parameters": {
"options": {},
"videoId": "={{ $json.id.videoId }}",
"resource": "video",
"operation": "get"
},
"typeVersion": 1
},
{
"id": "2c4519e2-1af9-42d7-818c-8165365587fb",
"name": "行挿入後の新規動画説明を作成",
"type": "n8n-nodes-base.code",
"position": [
1100,
460
],
"parameters": {
"jsCode": "// Access the input data (YouTube description)\nconst description = $('Get Specific Video').first().json.snippet.description;\n//console.log(inputData)\n\nconst variables = $('Set String to Insert').first().json\n// Define the rows to search for and the row to insert\nconst rowBefore = variables.rowBefore;\nconst rowAfter = variables.rowAfter;\nconst rowToInsert = variables.rowToInsert;\n\n// Split the description into an array of rows\nconst rows = description.split(\"\\n\");\nconsole.log(rows)\n// Find the index of the rowBefore and rowAfter\nconst indexBefore = rows.findIndex(row => row.trim() === rowBefore);\nconst indexAfter = rows.findIndex(row => row.trim() === rowAfter);\n\n// Check if both rows are found and rowBefore comes before rowAfter\nif (indexBefore !== -1 && indexAfter !== -1 && indexBefore < indexAfter) {\n // Insert the new row between rowBefore and rowAfter\n rows.splice(indexBefore + 1, 0, rowToInsert);\n}\n\n// Join the rows back into a single string\nconst updatedDescription = rows.join(\"\\n\");\n\n// Return the updated description in the correct n8n output structure\nreturn [\n {\n json: {\n updatedDescription: updatedDescription\n }\n }\n];"
},
"typeVersion": 2
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "50fd0bcb-7441-45eb-ab58-ca2a7de78516",
"connections": {
"19cafddc-6199-4418-8213-9743c34c9176": {
"main": [
[
{
"node": "590b8bb3-6eb4-4bb8-af4c-c2d95221f045",
"type": "main",
"index": 0
}
]
]
},
"590b8bb3-6eb4-4bb8-af4c-c2d95221f045": {
"main": [
[],
[
{
"node": "a80ac941-0a99-4eab-8a6c-effef1e136fa",
"type": "main",
"index": 0
}
]
]
},
"a80ac941-0a99-4eab-8a6c-effef1e136fa": {
"main": [
[
{
"node": "2c4519e2-1af9-42d7-818c-8165365587fb",
"type": "main",
"index": 0
}
]
]
},
"51a3fd15-8767-4cc0-98a8-fe98ec90db70": {
"main": [
[
{
"node": "19cafddc-6199-4418-8213-9743c34c9176",
"type": "main",
"index": 0
}
]
]
},
"63a6a8e6-994f-46ab-a731-609549fec99f": {
"main": [
[
{
"node": "590b8bb3-6eb4-4bb8-af4c-c2d95221f045",
"type": "main",
"index": 0
}
]
]
},
"ce147272-f6c3-4cfb-954b-9a77c63a6232": {
"main": [
[
{
"node": "51a3fd15-8767-4cc0-98a8-fe98ec90db70",
"type": "main",
"index": 0
}
]
]
},
"2c4519e2-1af9-42d7-818c-8165365587fb": {
"main": [
[
{
"node": "63a6a8e6-994f-46ab-a731-609549fec99f",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - マーケティング
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
Overpassリードジェネレーションシステム
OpenStreetMap データを使ってビジネスリードを生成して Google Sheets に保存
If
Set
Code
+
If
Set
Code
27 ノードAkram Kadri
営業
YouTube オートメーション
YouTube ビデオの自動スケジュール設定と AI メタデータ生成 🎬
If
Set
Code
+
If
Set
Code
33 ノードJPres
人工知能
Meta広告ライブラリをスクレイピングし、Geminiで動画広告を分析し、データをGoogle Sheetsに保存
GeminiでMeta広告ライブラリの動画広告を分析し、結果をGoogle Sheetsに保存する
Set
Code
Sort
+
Set
Code
Sort
24 ノードDaniel Setzermann
人工知能
ウイルスのなタイトル/サムネイル生成
感染拡散型YouTubeタイトルとサム네イル作成の自動化(FLUX.1 + Apify)
If
Set
Code
+
If
Set
Code
41 ノードNasser
人工知能
私のワークフロー5
AIメールパーソナライゼーションを使用した自動LinkedInリード生成(未完了)
If
Set
Code
+
If
Set
Code
37 ノードMatthieu
営業
Squarespace コードインジェクションを GitHub にバックアップ
Squarespace コードインジェクションを GitHub へバックアップ
If
Set
Code
+
If
Set
Code
17 ノードbangank36
エンジニアリング
ワークフロー情報
難易度
中級
ノード数9
カテゴリー1
ノードタイプ6
作成者
Akram Kadri
@akramkadrin8n Automation Freelancer ------------------------ Contact me at: akram@digispruce.com
外部リンク
n8n.ioで表示 →
このワークフローを共有