플레이리스트 관리자
중급
이것은Other분야의자동화 워크플로우로, 11개의 노드를 포함합니다.주로 Spotify, GoogleDocs, HttpRequest, GoogleSheets, ManualTrigger 등의 노드를 사용하며. Google Docs를 사용하여 가수에게 가사 문서와 Spotify 플레이리스트 만들기
사전 요구사항
- •대상 API의 인증 정보가 필요할 수 있음
- •Google Sheets API 인증 정보
- •OpenAI API Key
사용된 노드 (11)
카테고리
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "ThUxnc7za8J4uyXG",
"meta": {
"instanceId": "c1cc2e18d32a91e26eb78bbc6373615a06451476e56efe94394fc82c93d00305",
"templateCredsSetupCompleted": true
},
"name": "Setlist_Manager",
"tags": [],
"nodes": [
{
"id": "15388ff0-3350-44ba-b254-f4960aa4650f",
"name": "메모",
"type": "n8n-nodes-base.stickyNote",
"position": [
-360,
-360
],
"parameters": {
"width": 680,
"height": 340,
"content": "## Setlist Manager\nThis workflow takes a Google spreadsheet called 'Setlist_Manager' with 'Artist' and 'SongTitle' entries and get's Lyrics for each song and creates a playlist for that set of songs.\n\n1. Create Spotify Playlist (naming it 'Setlist - [date of today]')\n2. Create the Google doc that will store the lyrics found. (naming it 'Setlist - [date of today]')\n3. Get the rows of songs from 'Setlist_Manager'.\n4. Use AI to verify the Artist name and song title.\n5. Get the lyrics to the song.\n6. Append the Google Doc with the lyrics.\n7. Search for the song in Spotify.\n8. Add that song to the Spotify Playlist.\n9. Go to band practice and be prepared! =)\n"
},
"typeVersion": 1
},
{
"id": "18133032-9a20-4478-b9f4-c7f9ef801cdb",
"name": "클릭 시 ‘Test workflow’",
"type": "n8n-nodes-base.manualTrigger",
"position": [
-360,
40
],
"parameters": {},
"typeVersion": 1
},
{
"id": "0e891760-d994-4ccf-8f1d-2f74282c624e",
"name": "get data",
"type": "n8n-nodes-base.googleSheets",
"position": [
300,
40
],
"parameters": {
"options": {},
"sheetName": {
"__rl": true,
"mode": "list",
"value": "gid=0",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1c8HGDizhcFSHwJKK7nuMNkRZgbdrphBmofQanD9a-js/edit#gid=0",
"cachedResultName": "Sheet1"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1c8HGDizhcFSHwJKK7nuMNkRZgbdrphBmofQanD9a-js",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1c8HGDizhcFSHwJKK7nuMNkRZgbdrphBmofQanD9a-js/edit?usp=drivesdk",
"cachedResultName": "Setlist_Manager"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "cIZ7JPC7EQMwjcTx",
"name": "Google Sheets account"
}
},
"typeVersion": 4.6
},
{
"id": "f27df2b3-e77a-4fc2-9583-6bad3ce465de",
"name": "정보 추출기",
"type": "@n8n/n8n-nodes-langchain.informationExtractor",
"position": [
520,
40
],
"parameters": {
"text": "=You will be given an artist name and a song title. You'll need to verify the spelling and accuracy of the information. \n\nartist: {{ $json.Artist }}\nsongTitle: {{ $json.SongTitle }}",
"options": {
"systemPromptTemplate": "You are an expert extraction algorithm.\nOnly extract relevant information from the text.\nIf you do not know the value of an attribute asked to extract, you may omit the attribute's value."
},
"attributes": {
"attributes": [
{
"name": "Artist",
"required": true,
"description": "The artist that wrote the song"
},
{
"name": "SongTitle",
"required": true,
"description": "The name of the song"
}
]
}
},
"typeVersion": 1
},
{
"id": "87b875af-e006-44c7-bd27-f3184d6c08ca",
"name": "OpenAI 채팅 모델",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"position": [
540,
240
],
"parameters": {
"model": {
"__rl": true,
"mode": "list",
"value": "gpt-4o-mini"
},
"options": {}
},
"credentials": {
"openAiApi": {
"id": "DZaBabO9u605tAtZ",
"name": "OpenAi account"
}
},
"typeVersion": 1.2
},
{
"id": "8fc4de2e-9dd5-4c98-8e5e-bc629507516f",
"name": "Get Lyrics",
"type": "n8n-nodes-base.httpRequest",
"onError": "continueRegularOutput",
"position": [
880,
40
],
"parameters": {
"url": "=https://api.lyrics.ovh/v1/{{ $json.output.Artist }}/{{ $json.output.SongTitle }}",
"options": {}
},
"typeVersion": 4.2
},
{
"id": "acb21e3e-fc53-43e9-ad4c-a05a4b1aada2",
"name": "Populate Doc",
"type": "n8n-nodes-base.googleDocs",
"position": [
1080,
40
],
"parameters": {
"actionsUi": {
"actionFields": [
{
"text": "={{ $('Information Extractor').item.json.output.SongTitle }} - {{ $('Information Extractor').item.json.output.Artist }}\n\n{{ $('Get Lyrics').item.json.lyrics }}",
"action": "insert"
},
{
"action": "insert",
"object": "pageBreak"
}
]
},
"operation": "update",
"documentURL": "={{ $('Create Doc').item.json.id }}"
},
"credentials": {
"googleDocsOAuth2Api": {
"id": "wX7B8ilooIkPObCR",
"name": "Google Docs account"
}
},
"typeVersion": 2
},
{
"id": "9232c124-b4a2-4445-93b4-3a07eba9c2bc",
"name": "Search for Song",
"type": "n8n-nodes-base.spotify",
"position": [
1280,
40
],
"parameters": {
"limit": 1,
"query": "={{ $('get data').item.json.Artist }} by {{ $('get data').item.json.SongTitle }}",
"filters": {},
"resource": "track",
"operation": "search"
},
"credentials": {
"spotifyOAuth2Api": {
"id": "FzlmdcWCB79KvNbl",
"name": "Spotify account"
}
},
"typeVersion": 1
},
{
"id": "25c6b03b-a8c5-4fb4-9be4-acaba7a666a0",
"name": "Add Song to Playlist",
"type": "n8n-nodes-base.spotify",
"position": [
1480,
40
],
"parameters": {
"id": "={{ $('Create Playlist').item.json.uri }}",
"trackID": "={{ $('Search for Song').item.json.uri }}",
"resource": "playlist",
"additionalFields": {
"position": 0
}
},
"credentials": {
"spotifyOAuth2Api": {
"id": "FzlmdcWCB79KvNbl",
"name": "Spotify account"
}
},
"typeVersion": 1
},
{
"id": "9ddf9bfe-4df3-40c2-87e2-3106a1042944",
"name": "Create Playlist",
"type": "n8n-nodes-base.spotify",
"position": [
-140,
40
],
"parameters": {
"name": "=Setlist - {{ $now.format('yyyy-MM-dd') }}",
"resource": "playlist",
"operation": "create",
"additionalFields": {}
},
"credentials": {
"spotifyOAuth2Api": {
"id": "FzlmdcWCB79KvNbl",
"name": "Spotify account"
}
},
"typeVersion": 1
},
{
"id": "9dca5c93-7d87-4425-a2fe-b1a7629d169c",
"name": "Create Doc",
"type": "n8n-nodes-base.googleDocs",
"position": [
80,
40
],
"parameters": {
"title": "=Setlist - {{ $now.format('yyyy-MM-dd') }}",
"folderId": "1opzuazFfpdBRLzRas8bViF6TmO4VCW8V"
},
"credentials": {
"googleDocsOAuth2Api": {
"id": "wX7B8ilooIkPObCR",
"name": "Google Docs account"
}
},
"typeVersion": 2
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "a0166877-d2f2-499a-9d8c-c8d0f80d7ce8",
"connections": {
"0e891760-d994-4ccf-8f1d-2f74282c624e": {
"main": [
[
{
"node": "Information Extractor",
"type": "main",
"index": 0
}
]
]
},
"9dca5c93-7d87-4425-a2fe-b1a7629d169c": {
"main": [
[
{
"node": "0e891760-d994-4ccf-8f1d-2f74282c624e",
"type": "main",
"index": 0
}
]
]
},
"8fc4de2e-9dd5-4c98-8e5e-bc629507516f": {
"main": [
[
{
"node": "acb21e3e-fc53-43e9-ad4c-a05a4b1aada2",
"type": "main",
"index": 0
}
]
]
},
"acb21e3e-fc53-43e9-ad4c-a05a4b1aada2": {
"main": [
[
{
"node": "9232c124-b4a2-4445-93b4-3a07eba9c2bc",
"type": "main",
"index": 0
}
]
]
},
"9ddf9bfe-4df3-40c2-87e2-3106a1042944": {
"main": [
[
{
"node": "9dca5c93-7d87-4425-a2fe-b1a7629d169c",
"type": "main",
"index": 0
}
]
]
},
"9232c124-b4a2-4445-93b4-3a07eba9c2bc": {
"main": [
[
{
"node": "25c6b03b-a8c5-4fb4-9be4-acaba7a666a0",
"type": "main",
"index": 0
}
]
]
},
"OpenAI Chat Model": {
"ai_languageModel": [
[
{
"node": "Information Extractor",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"25c6b03b-a8c5-4fb4-9be4-acaba7a666a0": {
"main": [
[]
]
},
"Information Extractor": {
"main": [
[
{
"node": "8fc4de2e-9dd5-4c98-8e5e-bc629507516f",
"type": "main",
"index": 0
}
]
]
},
"When clicking ‘Test workflow’": {
"main": [
[
{
"node": "9ddf9bfe-4df3-40c2-87e2-3106a1042944",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 기타
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
시각화 참조 라이브러리에서 n8n 노드를 탐색
可视化 참조 라이브러리에서 n8n 노드를 탐색
If
Ftp
Set
+
If
Ftp
Set
113 노드I versus AI
기타
AI 부동산 중개인: 종단간 운영 자동화 (웹, 데이터, 음성)
AI 부동산 중개인: 종단간 운영 자동화 (웹, 데이터, 음성)
If
Set
Code
+
If
Set
Code
45 노드Sam Yassine
영업
시험 문제 생성
Google 문서와 Gemini AI 기반 시험 문제 및 답변 자동 생성
Code
Google Docs
Http Request
+
Code
Google Docs
Http Request
37 노드Davide
기타
AI 기반 웹 스크래핑: Jina, Google Sheets 및 OpenAI 간편 솔루션
AI 기반 웹 스크래핑: Jina, Google Sheets 및 OpenAI 간편 솔루션
Split Out
Http Request
Google Sheets
+
Split Out
Http Request
Google Sheets
7 노드Derek Cheung
인공지능
도메인 기반 - Perplexity, LinkedIn, 웹사이트, Hunter, Airtop을 활용한 B2B 연구 회사
AI 잠재고객 연구원: 회사명과 도메인만으로 ISCP 통합
Set
Wait
Merge
+
Set
Wait
Merge
36 노드LukaszB
영업
Braze에서 기존 이메일 템플릿 업데이트
AI를 사용한 Instagram, Facebook, LinkedIn 및 X용 소셜 미디어 콘텐츠 자동화
Set
Gmail
Merge
+
Set
Gmail
Merge
73 노드LukaszB
디자인