Google Driveに保存しGmailで配送してPinterestの動画をMP4に変換

中級

これはContent Creation分野の自動化ワークフローで、15個のノードを含みます。主にWait, EmailSend, FormTrigger, GoogleDrive, HttpRequestなどのノードを使用。 Google Driveで保存しメール送信でPinterest動画をMP4に変換する

前提条件
  • Google Drive API認証情報
  • ターゲットAPIの認証情報が必要な場合あり

カテゴリー

ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "meta": {
    "instanceId": "60c025075753afcab9f803964b4caaca9402f435deb4efafbb8e3b93b54d8752",
    "templateCredsSetupCompleted": true
  },
  "nodes": [
    {
      "id": "c1c7f52b-77b3-4936-9579-7601eb9593b0",
      "name": "n8n フォームトリガー",
      "type": "n8n-nodes-base.formTrigger",
      "position": [
        -1340,
        -100
      ],
      "webhookId": "5192b179-44d9-4ca6-9bb7-0111d481ee16",
      "parameters": {
        "options": {},
        "formTitle": "Pinterest To Mp4",
        "formFields": {
          "values": [
            {
              "fieldLabel": "url"
            },
            {
              "fieldLabel": "email"
            }
          ]
        },
        "formDescription": "Pinterest To Mp4 Downloader"
      },
      "typeVersion": 2.2
    },
    {
      "id": "1ee08de5-158e-406e-a446-65607c3c1c6a",
      "name": "HTTP リクエスト",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        -1060,
        -100
      ],
      "parameters": {
        "url": "https://pinterest-video-downloader6.p.rapidapi.com/index.php",
        "method": "POST",
        "options": {},
        "sendBody": true,
        "contentType": "multipart-form-data",
        "sendHeaders": true,
        "bodyParameters": {
          "parameters": [
            {
              "name": "url",
              "value": "={{ $json.url }}"
            }
          ]
        },
        "headerParameters": {
          "parameters": [
            {
              "name": "x-rapidapi-host",
              "value": "pinterest-video-downloader6.p.rapidapi.com"
            },
            {
              "name": "x-rapidapi-key",
              "value": "YOUR_API_KEY"
            }
          ]
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "c34dac58-017d-47fc-9d71-90e15182110e",
      "name": "待機",
      "type": "n8n-nodes-base.wait",
      "position": [
        -800,
        -100
      ],
      "webhookId": "bc4a8c78-542f-48e6-8174-78fb36ffb0aa",
      "parameters": {},
      "typeVersion": 1.1
    },
    {
      "id": "208e117f-2b69-40b8-8386-ce0bb656e7df",
      "name": "メール送信",
      "type": "n8n-nodes-base.emailSend",
      "position": [
        360,
        -100
      ],
      "parameters": {
        "text": "Your download link: {{ $json.webViewLink }}",
        "options": {},
        "subject": "🎵 Your Pinterest MP4 is ready!",
        "toEmail": "={{ $json.email }}",
        "fromEmail": "your@email.com"
      },
      "credentials": {
        "smtp": {
          "id": "H0f4Gja9ECFRA34L",
          "name": "SMTP account 2"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "099f6774-e487-4af0-8342-1e29a3afc04f",
      "name": "付箋1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1420,
        -300
      ],
      "parameters": {
        "height": 360,
        "content": "**n8n Form Trigger**  \n   This node captures user input from a web form, specifically the Pinterest video URL and the user's email address, to initiate the workflow.\n"
      },
      "typeVersion": 1
    },
    {
      "id": "e14ff1d2-bcb1-41c5-9468-d24f5d6bff00",
      "name": "付箋2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1140,
        -300
      ],
      "parameters": {
        "height": 360,
        "content": " **HTTP Request**  \n   It sends the submitted Pinterest To URL to an rapid API which processes the video and converts it into an MP4 format."
      },
      "typeVersion": 1
    },
    {
      "id": "20990e96-c260-454f-b0fa-df3db10473c1",
      "name": "付箋3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -860,
        -300
      ],
      "parameters": {
        "height": 360,
        "content": "**Wait**  \n   This node introduces a pause in the workflow, ensuring the external API has enough time to complete the MP4 conversion before the workflow continues."
      },
      "typeVersion": 1
    },
    {
      "id": "2a86a142-8406-4838-be19-221045b1493f",
      "name": "付箋4",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -560,
        -300
      ],
      "parameters": {
        "width": 220,
        "height": 360,
        "content": "HTTP Downloader  \n   After waiting, this node fetches the resulting MP4 file or its metadata from the API, confirming the file is ready for the next steps."
      },
      "typeVersion": 1
    },
    {
      "id": "ebe64242-7e7b-4326-8071-3eda8a2a76e7",
      "name": "HTTP ダウンローダー",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        -500,
        -100
      ],
      "parameters": {
        "url": "={{ $json.medias[0].url }}",
        "options": {
          "timeout": 10000000,
          "redirect": {
            "redirect": {
              "maxRedirects": 10
            }
          },
          "response": {
            "response": {
              "neverError": true,
              "fullResponse": true
            }
          },
          "lowercaseHeaders": false
        },
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "user-agent",
              "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
            },
            {
              "name": "accept",
              "value": "*/*"
            }
          ]
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "0b392d74-7a70-40b7-9a4f-d9db3c3d93a1",
      "name": "付箋5",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -300,
        -300
      ],
      "parameters": {
        "height": 360,
        "content": " **Upload To Google Drive**  \n   Uploads the retrieved MP4 file to Google Drive, providing cloud storage and easy file management."
      },
      "typeVersion": 1
    },
    {
      "id": "96c2211c-5625-477f-9b1a-538f89ce8d7a",
      "name": "付箋6",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        0,
        -300
      ],
      "parameters": {
        "height": 360,
        "content": "*Set permissions Google Drive  (Share)**  \n   Modifies the file’s permissions in Google Drive to allow anyone with the link to access or download the MP4 file."
      },
      "typeVersion": 1
    },
    {
      "id": "73104f9d-9eca-4a65-9594-31d0f83ef487",
      "name": "付箋7",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        300,
        -300
      ],
      "parameters": {
        "height": 360,
        "content": "**Send Email**  \n   Sends an automated email to the user with the link to download their converted MP4 file, completing the user experience."
      },
      "typeVersion": 1
    },
    {
      "id": "dd3b29d8-8273-43ad-94b9-f3c65540bdce",
      "name": "Google Driveへのアップロード",
      "type": "n8n-nodes-base.googleDrive",
      "position": [
        -220,
        -100
      ],
      "parameters": {
        "name": "=",
        "driveId": {
          "__rl": true,
          "mode": "list",
          "value": "My Drive"
        },
        "options": {},
        "folderId": "root",
        "authentication": "serviceAccount"
      },
      "credentials": {
        "googleApi": {
          "id": "qUtlCnYpk7bXXaYp",
          "name": "Google Sheets account 3"
        }
      },
      "typeVersion": 3
    },
    {
      "id": "a33d47b6-1a2d-4edf-a426-6c56db6dd679",
      "name": "Google Driveの権限設定",
      "type": "n8n-nodes-base.googleDrive",
      "position": [
        80,
        -100
      ],
      "parameters": {
        "fileId": "={{ $json.resource.id }}",
        "options": {},
        "operation": "share",
        "permissionsUi": {
          "permissionsValues": {
            "role": "reader",
            "type": "anyone"
          }
        },
        "authentication": "serviceAccount"
      },
      "credentials": {
        "googleApi": {
          "id": "qUtlCnYpk7bXXaYp",
          "name": "Google Sheets account 3"
        }
      },
      "typeVersion": 3
    },
    {
      "id": "6be1168b-2dc9-4b7b-8935-2aed83dcebc5",
      "name": "付箋",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -2140,
        -480
      ],
      "parameters": {
        "width": 560,
        "height": 1480,
        "content": "### 📥 Pinterest Video to MP4 Downloader with Email Delivery | RapidAPI Integration  \n\nThis **n8n workflow** automates downloading Pinterest videos as MP4 files using the [Pinterest Video Downloader API](https://rapidapi.com/skdeveloper/api/pinterest-video-downloader6), uploads them to Google Drive, sets public access permissions, and emails the sharable download link to the user.  \n\n---\n\n## 📝 **Node-by-Node Explanation (Single-Line)**  \n\n1️⃣ **n8n Form Trigger** → Captures the Pinterest video URL and user email from a web form to start the workflow.  \n2️⃣ **HTTP Request** → Sends the submitted URL to **[Pinterest Video Downloader API](https://rapidapi.com/skdeveloper/api/pinterest-video-downloader6)** to process and fetch downloadable MP4 links.  \n3️⃣ **Wait** → Pauses the workflow, allowing the API enough time to complete the MP4 conversion.  \n4️⃣ **HTTP Downloader** → Downloads the generated MP4 video from the API response.  \n5️⃣ **Upload To Google Drive** → Uploads the downloaded MP4 file to Google Drive for cloud storage.  \n6️⃣ **Set Permissions Google Drive** → Sets file permissions to allow public access via sharable link.  \n7️⃣ **Send Email** → Sends an automated email with the Google Drive download link to the user’s provided email address.  \n\n---\n\n## 💡 **Use Case**  \n\n- Enables **social media managers, content creators, and marketers** to instantly convert Pinterest videos to MP4 and receive a sharable link via email without manual downloading or file sharing.  \n\n---\n\n## ✅ **Benefits**  \n\n- **Fast video conversion**, **Cloud-based storage**, **Public sharing link**, and **Automated email delivery** – all powered by **RapidAPI Pinterest Video Downloader**.  \n"
      },
      "typeVersion": 1
    }
  ],
  "pinData": {},
  "connections": {
    "c34dac58-017d-47fc-9d71-90e15182110e": {
      "main": [
        [
          {
            "node": "ebe64242-7e7b-4326-8071-3eda8a2a76e7",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "208e117f-2b69-40b8-8386-ce0bb656e7df": {
      "main": [
        []
      ]
    },
    "1ee08de5-158e-406e-a446-65607c3c1c6a": {
      "main": [
        [
          {
            "node": "c34dac58-017d-47fc-9d71-90e15182110e",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "ebe64242-7e7b-4326-8071-3eda8a2a76e7": {
      "main": [
        [
          {
            "node": "dd3b29d8-8273-43ad-94b9-f3c65540bdce",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "c1c7f52b-77b3-4936-9579-7601eb9593b0": {
      "main": [
        [
          {
            "node": "1ee08de5-158e-406e-a446-65607c3c1c6a",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "dd3b29d8-8273-43ad-94b9-f3c65540bdce": {
      "main": [
        [
          {
            "node": "a33d47b6-1a2d-4edf-a426-6c56db6dd679",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "a33d47b6-1a2d-4edf-a426-6c56db6dd679": {
      "main": [
        [
          {
            "node": "208e117f-2b69-40b8-8386-ce0bb656e7df",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
よくある質問

このワークフローの使い方は?

上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。

このワークフローはどんな場面に適していますか?

中級 - コンテンツ作成

有料ですか?

このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。

関連ワークフロー

IMDBビデオ自動ダウンローダー(Google Driveアップロード&メール通知付き)
IMDB動画自動ダウンロードツール(Google Driveアップロード+メールアラート付き)
If
Wait
Email Send
+
If
Wait
Email Send
19 ノードSk developer
コンテンツ作成
RapidAPIを使用してLinkedIn動画をMP4に変換し、Google DriveとSheetsに保存
RapidAPIを使用してLinkedIn動画をMP4に変換し、Google DriveとSheetsに保存
If
Wait
Form Trigger
+
If
Wait
Form Trigger
16 ノードSk developer
コンテンツ作成
Bilibili動画ダウンローダー(Google Driveアップロード・アイメール通知対応)
Bilibili 動画ダウンローダー(Google Drive アップロードとメール通知に対応)
If
Wait
Email Send
+
If
Wait
Email Send
19 ノードSk developer
ファイル管理
OpenAI GPT-4でTikTok動画の文字起こしを抽出してGoogle Docsへ翻訳
OpenAIのGPT-4を使用してTikTok動画の文字起こしをGoogle Docsに翻訳
Wait
Google Docs
Form Trigger
+
Wait
Google Docs
Form Trigger
11 ノードSk developer
コンテンツ作成
Sora GPT、Google Drive、Sheetsを使ってAI画像を生成して保存
Sora GPT、Google Drive、Sheets を使用して AI 画像を生成して保存
Code
Form Trigger
Google Drive
+
Code
Form Trigger
Google Drive
11 ノードSk developer
コンテンツ作成
SpotifyのトラックをMP3に変換し、Google Driveフォームで共有
SpotifyのトラックをMP3に変換してGoogle Driveフォームで共有する
Wait
Form Trigger
Google Drive
+
Wait
Form Trigger
Google Drive
13 ノードSk developer
ファイル管理
ワークフロー情報
難易度
中級
ノード数15
カテゴリー1
ノードタイプ6
難易度説明

経験者向け、6-15ノードの中程度の複雑さのワークフロー

外部リンク
n8n.ioで表示

このワークフローを共有

カテゴリー

カテゴリー: 34