Convertir pistas de Spotify a MP3 y compartir a través de formularios de Google Drive

Intermedio

Este es unFile Managementflujo de automatización del dominio deautomatización que contiene 13 nodos.Utiliza principalmente nodos como Wait, FormTrigger, GoogleDrive, HttpRequest. Convertir pistas de Spotify a MP3 y compartir mediante formularios de Google Drive

Requisitos previos
  • Credenciales de API de Google Drive
  • Pueden requerirse credenciales de autenticación para la API de destino
Vista previa del flujo de trabajo
Visualización de las conexiones entre nodos, con soporte para zoom y panorámica
Exportar flujo de trabajo
Copie la siguiente configuración JSON en n8n para importar y usar este flujo de trabajo
{
  "meta": {
    "instanceId": "60c025075753afcab9f803964b4caaca9402f435deb4efafbb8e3b93b54d8752",
    "templateCredsSetupCompleted": true
  },
  "nodes": [
    {
      "id": "c2aaf114-004f-4890-8628-842884f24d01",
      "name": "Al enviar el formulario",
      "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": "Esperar",
      "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": "Downloader",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        1020,
        -80
      ],
      "parameters": {
        "url": "={{ $json.download_url }}",
        "options": {}
      },
      "typeVersion": 4.2
    },
    {
      "id": "a9fa6952-377a-49c5-b09f-cb0e35fced78",
      "name": "Subir MP3 a 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": "Actualizar permisos",
      "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": "Nota adhesiva",
      "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": "Nota adhesiva 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": "Nota adhesiva 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": "Nota adhesiva 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": "Nota adhesiva 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": "Nota adhesiva 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": "Nota adhesiva 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
          }
        ]
      ]
    }
  }
}
Preguntas frecuentes

¿Cómo usar este flujo de trabajo?

Copie el código de configuración JSON de arriba, cree un nuevo flujo de trabajo en su instancia de n8n y seleccione "Importar desde JSON", pegue la configuración y luego modifique la configuración de credenciales según sea necesario.

¿En qué escenarios es adecuado este flujo de trabajo?

Intermedio - Gestión de archivos

¿Es de pago?

Este flujo de trabajo es completamente gratuito, puede importarlo y usarlo directamente. Sin embargo, tenga en cuenta que los servicios de terceros utilizados en el flujo de trabajo (como la API de OpenAI) pueden requerir un pago por su cuenta.

Flujos de trabajo relacionados recomendados

Descargador de videos de Bilibili con carga en Google Drive y notificaciones por correo
Descargador de videos de Bilibili, con carga en Google Drive y notificaciones por correo
If
Wait
Email Send
+
If
Wait
Email Send
19 NodosSk developer
Gestión de archivos
Descargar videos de Facebook a Google Drive y registrar automáticamente en una hoja de cálculo
Descargar videos de Facebook a Google Drive y registrar automáticamente el historial de descargas en una hoja de cálculo
If
Wait
Form Trigger
+
If
Wait
Form Trigger
19 NodosSk developer
Gestión de archivos
Descargar presentaciones de Slideshare a Google Drive a través de la integración de RapidAPI
Descargar presentaciones de Slideshare a Google Drive a través de la integración de RapidAPI
If
Wait
Form Trigger
+
If
Wait
Form Trigger
17 NodosSk developer
Gestión de archivos
Descargar videos de Threads y registrar los resultados en Google Sheets
Descargar videos de Threads y registrar los resultados en Google Sheets
If
Wait
Form Trigger
+
If
Wait
Form Trigger
19 NodosSk developer
Gestión de archivos
Descargar videos de cualquier plataforma a Google Drive a través de la integración de RapidAPI
Descargar videos de cualquier plataforma a Google Drive a través de la integración de RapidAPI
If
Wait
Form Trigger
+
If
Wait
Form Trigger
17 NodosSk developer
Gestión de archivos
Descarga masiva de videos de TikTok sin marca de agua a Google Drive y seguimiento
Descarga masiva de videos de TikTok sin marca de agua a Google Drive y seguimiento
Wait
Google Drive
Http Request
+
Wait
Google Drive
Http Request
21 NodosSk developer
Gestión de archivos
Información del flujo de trabajo
Nivel de dificultad
Intermedio
Número de nodos13
Categoría1
Tipos de nodos5
Descripción de la dificultad

Adecuado para usuarios con experiencia intermedia, flujos de trabajo de complejidad media con 6-15 nodos

Enlaces externos
Ver en n8n.io

Compartir este flujo de trabajo

Categorías

Categorías: 34