SpotifyのトラックをMP3に変換し、Google Driveフォームで共有

中級

これはFile Management分野の自動化ワークフローで、13個のノードを含みます。主にWait, FormTrigger, GoogleDrive, HttpRequestなどのノードを使用。 SpotifyのトラックをMP3に変換してGoogle Driveフォームで共有する

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

カテゴリー

ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "meta": {
    "instanceId": "60c025075753afcab9f803964b4caaca9402f435deb4efafbb8e3b93b54d8752",
    "templateCredsSetupCompleted": true
  },
  "nodes": [
    {
      "id": "c2aaf114-004f-4890-8628-842884f24d01",
      "name": "フォーム送信時",
      "type": "n8n-nodes-base.formTrigger",
      "position": [
        0,
        0
      ],
      "webhookId": "a1068829-54c0-457c-9e4e-57f72653c9e1",
      "parameters": {
        "options": {},
        "formTitle": "Spotify To Mp3",
        "formFields": {
          "values": [
            {
              "fieldLabel": "url"
            }
          ]
        }
      },
      "typeVersion": 2.2
    },
    {
      "id": "9980b312-847b-4802-ae16-f40da67dd287",
      "name": "待機",
      "type": "n8n-nodes-base.wait",
      "position": [
        600,
        -140
      ],
      "webhookId": "c6fadb96-472b-45b4-ab72-de9a067acc17",
      "parameters": {},
      "typeVersion": 1.1
    },
    {
      "id": "f611935e-4893-4cb7-bda3-8cd9b21d9ffa",
      "name": "Spotify Rapid Api",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        260,
        0
      ],
      "parameters": {
        "url": "https://spotify-downloader-mp3.p.rapidapi.com/spotify-downloader.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": "spotify-downloader-mp3.p.rapidapi.com"
            },
            {
              "name": "x-rapidapi-key",
              "value": "your key"
            }
          ]
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "3cafc718-1352-4cc3-b0ee-af607fe88602",
      "name": "ダウンローダー",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        1020,
        -80
      ],
      "parameters": {
        "url": "={{ $json.download_url }}",
        "options": {}
      },
      "typeVersion": 4.2
    },
    {
      "id": "a9fa6952-377a-49c5-b09f-cb0e35fced78",
      "name": "MP3を Google Driveにアップロード",
      "type": "n8n-nodes-base.googleDrive",
      "position": [
        1540,
        -300
      ],
      "parameters": {
        "driveId": {
          "__rl": true,
          "mode": "list",
          "value": "My Drive"
        },
        "options": {},
        "folderId": {
          "__rl": true,
          "mode": "list",
          "value": "root",
          "cachedResultName": "/ (Root folder)"
        },
        "authentication": "serviceAccount"
      },
      "credentials": {
        "googleApi": {
          "id": "qUtlCnYpk7bXXaYp",
          "name": "Google Sheets account 3"
        }
      },
      "typeVersion": 3
    },
    {
      "id": "3994a8b4-d6c7-41b0-a2ed-60f50e08f947",
      "name": "権限更新",
      "type": "n8n-nodes-base.googleDrive",
      "position": [
        2000,
        -280
      ],
      "parameters": {
        "fileId": {
          "__rl": true,
          "mode": "id",
          "value": ""
        },
        "options": {},
        "operation": "share",
        "permissionsUi": {
          "permissionsValues": {
            "role": "writer",
            "type": "anyone"
          }
        },
        "authentication": "serviceAccount"
      },
      "credentials": {
        "googleApi": {
          "id": "qUtlCnYpk7bXXaYp",
          "name": "Google Sheets account 3"
        }
      },
      "typeVersion": 3
    },
    {
      "id": "143ddac5-033b-4438-8590-310dc47916ee",
      "name": "付箋",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1200,
        -480
      ],
      "parameters": {
        "width": 880,
        "height": 1340,
        "content": "# 🎵 Spotify to MP3 → Google Drive\nThis n8n workflow automates the process of converting a Spotify track URL to an MP3 file, downloading it, uploading it to Google Drive, and making it publicly shareable.\n\n---\n\n## 🧩 Flow Overview\n\nForm Submission → Spotify RapidAPI → Wait → Downloader → Upload to Google Drive → Update Permission\n\n---\n\n## 🔍 Node Descriptions\n\n1. **On form submission (`formTrigger`)**  \n   Accepts a Spotify track URL from the user through a form interface.\n\n2. **Spotify Rapid Api (`httpRequest`)**  \n   Sends the provided Spotify URL to RapidAPI to generate a downloadable MP3 file link.\n\n3. **Wait (`wait`)**  \n   Adds a short pause in the workflow to ensure the MP3 is ready for download.\n\n4. **Downloader (`httpRequest`)**  \n   Uses the `download_url` from RapidAPI to download the MP3 file.\n\n5. **Upload Mp3 To Google Drive (`googleDrive`)**  \n   Uploads the MP3 file to your Google Drive using a service account.\n\n6. **Update Permission (`googleDrive`)**  \n   Makes the uploaded MP3 file public by setting its sharing permissions to \"anyone can write\" (can be changed to \"read\").\n\n---\n\n## ✅ Benefits\n\n- Automatically converts Spotify URLs to MP3 files.\n- Eliminates manual download and upload steps.\n- Files are uploaded directly to your Google Drive.\n- Generated MP3s are instantly shareable.\n- Can be customized or reused for other media platforms or storage services.\n\n---\n\n## 🛠️ Problems Solved\n\n- No need for manual conversion tools or sites.\n- No need to manually download and organize MP3s.\n- Removes the friction of sharing MP3s with others.\n- Reduces human error and saves time.\n"
      },
      "typeVersion": 1
    },
    {
      "id": "8f98a48f-8a93-49ae-a2ac-f9d47e19c6f4",
      "name": "付箋1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -120,
        -180
      ],
      "parameters": {
        "width": 300,
        "height": 320,
        "content": "## 1. On form submission (`formTrigger`)\n- Purpose: Collects the Spotify URL from a user through a form.\n- Details: A simple web form is presented with one field labeled `url`."
      },
      "typeVersion": 1
    },
    {
      "id": "bf986036-50b2-44f2-90f6-6447309b85e7",
      "name": "付箋2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        200,
        -360
      ],
      "parameters": {
        "width": 280,
        "height": 500,
        "content": "## 2. Spotify Rapid Api (`httpRequest`)\n- Purpose: Sends the Spotify URL to a RapidAPI endpoint to generate a downloadable MP3.\n- Method: POST\n- Headers:\n  - `x-rapidapi-host`: spotify-downloader-mp3.p.rapidapi.com\n  - `x-rapidapi-key`: your-api-key\n- Body: Sends the form URL as a `multipart/form-data` parameter."
      },
      "typeVersion": 1
    },
    {
      "id": "27b15fcc-0534-461f-94bc-d94d40432b1f",
      "name": "付箋3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        520,
        -340
      ],
      "parameters": {
        "width": 280,
        "height": 320,
        "content": "## 3. Wait (`wait`)\n- Purpose: Adds a delay before attempting to download the MP3.\n- Why: Ensures that the API has had enough time to process and generate the file.\n- Note: You can configure wait duration as needed or remove it if unnecessary.\n"
      },
      "typeVersion": 1
    },
    {
      "id": "1304d8d5-5316-4705-86a4-accd546cd31f",
      "name": "付箋4",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        920,
        -300
      ],
      "parameters": {
        "width": 320,
        "height": 340,
        "content": "## 4. Downloader (`httpRequest`)\n- Purpose: Downloads the MP3 file using the `download_url` returned from the previous node.\n- Method: GET\n- URL: Dynamically populated from `={{ $json.download_url }}`\n"
      },
      "typeVersion": 1
    },
    {
      "id": "c8837817-b03f-4235-a6fa-3742a3e80f41",
      "name": "付箋5",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1420,
        -520
      ],
      "parameters": {
        "width": 360,
        "height": 400,
        "content": "## 5. Upload Mp3 To Google Drive (`googleDrive`)\n- Purpose: Uploads the downloaded MP3 file to a specific Google Drive folder.\n- Authentication: Uses a service account.\n- Folder: Uploads to root or specified folder of the linked Drive.\n\n"
      },
      "typeVersion": 1
    },
    {
      "id": "3f989fbd-1929-4b37-9f85-5bd4c443720a",
      "name": "付箋6",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1900,
        -540
      ],
      "parameters": {
        "width": 320,
        "height": 440,
        "content": "## 6. Update Permission (`googleDrive`)\n- Purpose: Makes the uploaded file publicly accessible.\n- Role: `writer` (you can change this to `reader` for safety).\n- Type: `anyone` (no login required to access the file).\n- Benefit: Instantly shareable download link after upload."
      },
      "typeVersion": 1
    }
  ],
  "pinData": {},
  "connections": {
    "9980b312-847b-4802-ae16-f40da67dd287": {
      "main": [
        [
          {
            "node": "3cafc718-1352-4cc3-b0ee-af607fe88602",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "3cafc718-1352-4cc3-b0ee-af607fe88602": {
      "main": [
        [
          {
            "node": "a9fa6952-377a-49c5-b09f-cb0e35fced78",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "f611935e-4893-4cb7-bda3-8cd9b21d9ffa": {
      "main": [
        [
          {
            "node": "9980b312-847b-4802-ae16-f40da67dd287",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "c2aaf114-004f-4890-8628-842884f24d01": {
      "main": [
        [
          {
            "node": "f611935e-4893-4cb7-bda3-8cd9b21d9ffa",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "a9fa6952-377a-49c5-b09f-cb0e35fced78": {
      "main": [
        [
          {
            "node": "3994a8b4-d6c7-41b0-a2ed-60f50e08f947",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
よくある質問

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

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

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

中級 - ファイル管理

有料ですか?

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

関連ワークフロー

Bilibili動画ダウンローダー(Google Driveアップロード・アイメール通知対応)
Bilibili 動画ダウンローダー(Google Drive アップロードとメール通知に対応)
If
Wait
Email Send
+
If
Wait
Email Send
19 ノードSk developer
ファイル管理
Facebook動画をGoogleドライブにダウンロードし、自動のに表に記録する
Facebookの動画をGoogleドライブにダウンロードし、テーブルの自動記録にダウンロードログを記録
If
Wait
Form Trigger
+
If
Wait
Form Trigger
19 ノードSk developer
ファイル管理
RapidAPI統合を通じてSlideshareプレゼンテーションをGoogleドライブにダウンロード
RapidAPI統合でSlideshareのプレゼンテーションをGoogleデリカレントダウンロード
If
Wait
Form Trigger
+
If
Wait
Form Trigger
17 ノードSk developer
ファイル管理
Threadsの動画をダウンロードし、結果をGoogleスプレッドシートに記録
Threadsの動画をダウンロードして結果をGoogleスプレッドシートに記録
If
Wait
Form Trigger
+
If
Wait
Form Trigger
19 ノードSk developer
ファイル管理
RapidAPI統合による任意のプラットフォームの動画をGoogleドライブにダウンロード
RapidAPI統合を通じて、任意のプラットフォームの動画をGoogleドライブにダウンロード
If
Wait
Form Trigger
+
If
Wait
Form Trigger
17 ノードSk developer
ファイル管理
無料 water マークの付いたTikTok動画をGoogle Driveにバッチでダウンロードし、追跡
タックトックの有水印ビデオをGoogle Driveへバッチダウンロードし追跡
Wait
Google Drive
Http Request
+
Wait
Google Drive
Http Request
21 ノードSk developer
ファイル管理
ワークフロー情報
難易度
中級
ノード数13
カテゴリー1
ノードタイプ5
難易度説明

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

外部リンク
n8n.ioで表示

このワークフローを共有

カテゴリー

カテゴリー: 34