Spotify-Titel in MP3 umwandeln und über Google Drive Forms teilen
Fortgeschritten
Dies ist ein File Management-Bereich Automatisierungsworkflow mit 13 Nodes. Hauptsächlich werden Wait, FormTrigger, GoogleDrive, HttpRequest und andere Nodes verwendet. Verwandeln Sie Spotify-Tracks in MP3 und teilen Sie sie über Google Drive-Formulare
Voraussetzungen
- •Google Drive API-Anmeldedaten
- •Möglicherweise sind Ziel-API-Anmeldedaten erforderlich
Verwendete Nodes (13)
Kategorie
Workflow-Vorschau
Visualisierung der Node-Verbindungen, mit Zoom und Pan
Workflow exportieren
Kopieren Sie die folgende JSON-Konfiguration und importieren Sie sie in n8n
{
"meta": {
"instanceId": "60c025075753afcab9f803964b4caaca9402f435deb4efafbb8e3b93b54d8752",
"templateCredsSetupCompleted": true
},
"nodes": [
{
"id": "c2aaf114-004f-4890-8628-842884f24d01",
"name": "Bei Formularübermittlung",
"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": "Warten",
"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": "MP3 hochladen zu 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": "Berechtigungen aktualisieren",
"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": "Notiz",
"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": "Notiz1",
"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": "Notiz2",
"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": "Notiz3",
"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": "Notiz4",
"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": "Notiz5",
"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": "Notiz6",
"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
}
]
]
}
}
}Häufig gestellte Fragen
Wie verwende ich diesen Workflow?
Kopieren Sie den obigen JSON-Code, erstellen Sie einen neuen Workflow in Ihrer n8n-Instanz und wählen Sie "Aus JSON importieren". Fügen Sie die Konfiguration ein und passen Sie die Anmeldedaten nach Bedarf an.
Für welche Szenarien ist dieser Workflow geeignet?
Fortgeschritten - Dateiverwaltung
Ist es kostenpflichtig?
Dieser Workflow ist völlig kostenlos. Beachten Sie jedoch, dass Drittanbieterdienste (wie OpenAI API), die im Workflow verwendet werden, möglicherweise kostenpflichtig sind.
Verwandte Workflows
Bilibili-Video-Downloader mit Google-Drive-Upload und E-Mail-Benachrichtigungen
Bilibili Video Downloader mit Google Drive-Upload und E-Mail-Benachrichtigungen
If
Wait
Email Send
+
If
Wait
Email Send
19 NodesSk developer
Dateiverwaltung
Facebook-Videos herunterladen zu Google Drive und automatisch in eine Tabelle eintragen
Facebook-Videos auf Google Drive herunterladen und automatisch Download-Logs in einer Tabelle protokollieren
If
Wait
Form Trigger
+
If
Wait
Form Trigger
19 NodesSk developer
Dateiverwaltung
Slideshare-Präsentationen über RapidAPI-Integration herunterladen zu Google Drive
Slideshare-Präsentationen über RapidAPI-Integration auf Google Drive herunterladen
If
Wait
Form Trigger
+
If
Wait
Form Trigger
17 NodesSk developer
Dateiverwaltung
Threads-Videos herunterladen und Ergebnisse in Google Tabellen eintragen
Threads-Videos herunterladen und Ergebnisse in Google Sheets protokollieren
If
Wait
Form Trigger
+
If
Wait
Form Trigger
19 NodesSk developer
Dateiverwaltung
Videos von beliebigen Plattformen über RapidAPI-Integration herunterladen zu Google Drive
Videos von beliebigen Plattformen über RapidAPI-Integration auf Google Drive herunterladen
If
Wait
Form Trigger
+
If
Wait
Form Trigger
17 NodesSk developer
Dateiverwaltung
Batch-Download von wasserfreien TikTok-Videos zu Google Drive und Tracking
Batch-Download von wasserfreien TikTok-Videos zu Google Drive mit Nachverfolgung
Wait
Google Drive
Http Request
+
Wait
Google Drive
Http Request
21 NodesSk developer
Dateiverwaltung
Workflow-Informationen
Schwierigkeitsgrad
Fortgeschritten
Anzahl der Nodes13
Kategorie1
Node-Typen5
Autor
Sk developer
@skdeveloperExterne Links
Auf n8n.io ansehen →
Diesen Workflow teilen