菜单导航

探索发现
N8N自动化工作流案例-RSS博客+本地视频自动上传云端
探索发现

N8N自动化工作流案例-RSS博客+本地视频自动上传云端

NoseNose
2023-07-10

一、RSS发送mataroa博客

在这个示例中,我使用定时器来作为工作流的开始,并按定时周期自动执行,首先是采集RSS信息【可以是自己的发布渠道,也可以是别人的】再将这些数据进行筛选合并,如果你想要输入1和2所有的信息选合并即可。

deepl是用来翻译外文rss源的,需要设置认证信息,如果不需要则可以删除

配置mataroa博客我在上篇文章已经讲过,可以根据官方或我的示例进行配置

传入谷歌电子表格是为了记录更新信息,最后的步骤是tg和http发送通知,如何配置可查看官方或我上篇提到的示例

脚本:可以一键复制粘贴到n8n

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
{
"name": "自动化博客",
"nodes": [
{
"parameters": {},
"id": "a497b002-7c0b-47c5-9ce9-5aee11b9c195",
"name": "RSS Read",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [
820,
720
]
},
{
"parameters": {},
"id": "fd6a1f07-76a2-42f2-bc6c-e55ab7887ac8",
"name": "RSS Read1",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [
820,
560
]
},
{
"parameters": {},
"id": "e8684658-b810-446d-95ea-15e1757ba4de",
"name": "RSS Read3",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [
820,
260
]
},
{
"parameters": {},
"id": "f80c9c5d-f5a9-4328-a4f3-613ce626b544",
"name": "筛选或合并",
"type": "n8n-nodes-base.merge",
"typeVersion": 2.1,
"position": [
1060,
460
]
},
{
"parameters": {
"operation": "toFile",
"options": {}
},
"id": "4f7a1000-7ab6-4ccd-8400-f300dbb6673c",
"name": "Spreadsheet File",
"type": "n8n-nodes-base.spreadsheetFile",
"typeVersion": 1,
"position": [
1240,
700
]
},
{
"parameters": {},
"id": "e29b011b-5718-4ab2-b579-7a6f233f1f47",
"name": "RSS信息",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [
820,
400
]
},
{
"parameters": {
"method": "POST",
"url": "https://mataroa.blog/api/posts/",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "按官方添加token"
}
]
},
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "title",
"value": "={{ $json.title }}"
},
{
"name": "body",
"value": "={{ $json['content:encoded'] }}"
},
{
"name": "date",
"value": "={{ $json.isoDate }}"
}
]
},
"options": {}
},
"id": "243538fd-7042-45cd-ae3d-1533c4ce988b",
"name": "发送mataroa博客",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
1240,
500
],
"credentials": {
"httpBasicAuth": {
"id": "EMNd7V1818achbV1",
"name": "Unnamed credential"
},
"httpHeaderAuth": {
"id": "4KwXXHCoEZ06w9Mr",
"name": "Header Auth account"
}
}
},
{
"parameters": {
"options": {}
},
"id": "4d0927e1-3c97-4b37-8a3d-4d3e1abadaec",
"name": "Google云盘",
"type": "n8n-nodes-base.googleDrive",
"typeVersion": 2,
"position": [
1400,
700
]
},
{
"parameters": {
"operation": "sendChatAction"
},
"id": "d3fb8e18-ea1f-495f-b8aa-3e260619b95c",
"name": "Telegram频道",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1,
"position": [
1540,
480
]
},
{
"parameters": {
"operation": "sendChatAction"
},
"id": "98d71b13-a5b1-4df2-aa67-fc61488ab43d",
"name": "Telegram频道1",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1,
"position": [
1560,
700
]
},
{
"parameters": {
"rule": {
"interval": [
{
"field": "hours"
}
]
}
},
"id": "30c0f24f-aca0-47ec-9a10-d66c7308d24b",
"name": "定时运行器",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.1,
"position": [
620,
440
]
},
{
"parameters": {
"options": {}
},
"id": "ca61e156-c0ee-4e07-9c04-11e1ec3df026",
"name": "企业微信配置inotify或其它通知件",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
1520,
280
]
},
{
"parameters": {
"additionalFields": {}
},
"id": "1b3b4b31-25b5-4737-a2bd-96c9a8e69179",
"name": "DeepL翻译",
"type": "n8n-nodes-base.deepL",
"typeVersion": 1,
"position": [
1240,
240
],
"disabled": true
}
],
"pinData": {},
"connections": {
"RSS Read": {
"main": [
[
{
"node": "筛选或合并",
"type": "main",
"index": 1
}
]
]
},
"RSS Read1": {
"main": [
[
{
"node": "筛选或合并",
"type": "main",
"index": 1
}
]
]
},
"RSS Read3": {
"main": [
[
{
"node": "筛选或合并",
"type": "main",
"index": 0
}
]
]
},
"筛选或合并": {
"main": [
[
{
"node": "发送mataroa博客",
"type": "main",
"index": 0
},
{
"node": "Spreadsheet File",
"type": "main",
"index": 0
},
{
"node": "企业微信配置inotify或其它通知件",
"type": "main",
"index": 0
},
{
"node": "DeepL翻译",
"type": "main",
"index": 0
}
]
]
},
"Spreadsheet File": {
"main": [
[
{
"node": "Google云盘",
"type": "main",
"index": 0
}
]
]
},
"RSS信息": {
"main": [
[
{
"node": "筛选或合并",
"type": "main",
"index": 0
}
]
]
},
"发送mataroa博客": {
"main": [
[
{
"node": "Telegram频道",
"type": "main",
"index": 0
}
]
]
},
"Google云盘": {
"main": [
[
{
"node": "Telegram频道1",
"type": "main",
"index": 0
}
]
]
},
"定时运行器": {
"main": [
[
{
"node": "RSS Read",
"type": "main",
"index": 0
},
{
"node": "RSS Read1",
"type": "main",
"index": 0
},
{
"node": "RSS信息",
"type": "main",
"index": 0
},
{
"node": "RSS Read3",
"type": "main",
"index": 0
}
]
]
},
"DeepL翻译": {
"main": [
[]
]
}
},
"active": false,
"settings": {},
"versionId": "91348b9b-34d5-44e9-b173-e49edd9ab1d2",
"id": "jSfmzrv9xVSHrwvN",
"meta": {
"instanceId": "cbaa89b05f7e8025300393a3b50bd22c3458c622bdb06477dd42614411c85114"
},
"tags": []
}

二、监控本地视频完成自动上传

这个配置也非常简单,不过它适用于下载N8N客户端到本地后执行

由监控本地文件夹内文件更新或更改而触发,间隔件则是为避免有错误的文件传入

上传分为one drive、google云盘及如果你有需要上传到youtube的流程,最后流出时间给通知

脚本:可一键复制到n8n

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "My workflow",
"nodes": [
{
"parameters": {
"triggerOn": "folder",
"events": [
"add"
],
"options": {}
},
"id": "a36ec382-9405-4e5c-b514-b22bdf88e0c8",
"name": "Local File Trigger",
"type": "n8n-nodes-base.localFileTrigger",
"typeVersion": 1,
"position": [
340,
320
]
},
{
"parameters": {
"options": {}
},
"id": "b35b730a-0974-4ddb-878e-1da1185153d5",
"name": "Google Drive",
"type": "n8n-nodes-base.googleDrive",
"typeVersion": 2,
"position": [
800,
520
]
},
{
"parameters": {
"resource": "video",
"operation": "upload",
"options": {}
},
"id": "b625676d-ca31-434a-9ba8-d692abaecb48",
"name": "YouTube",
"type": "n8n-nodes-base.youTube",
"typeVersion": 1,
"position": [
800,
360
]
},
{
"parameters": {},
"id": "05f3aa45-3671-4c96-aa21-7af64f924b45",
"name": "Microsoft OneDrive",
"type": "n8n-nodes-base.microsoftOneDrive",
"typeVersion": 1,
"position": [
800,
160
]
},
{
"parameters": {
"options": {}
},
"id": "2b99aba4-d855-4b6f-867b-c49a8a4f3e52",
"name": "通知",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
1100,
320
]
},
{
"parameters": {},
"id": "d0378c49-e1f7-4973-8f2e-0b49518724b3",
"name": "间隔时间",
"type": "n8n-nodes-base.wait",
"typeVersion": 1,
"position": [
560,
320
],
"webhookId": "34bc8897-f789-4796-a932-2b5bd0d3ec9a"
}
],
"pinData": {},
"connections": {
"Local File Trigger": {
"main": [
[
{
"node": "间隔时间",
"type": "main",
"index": 0
}
]
]
},
"Google Drive": {
"main": [
[
{
"node": "通知",
"type": "main",
"index": 0
}
]
]
},
"Microsoft OneDrive": {
"main": [
[
{
"node": "通知",
"type": "main",
"index": 0
}
]
]
},
"YouTube": {
"main": [
[
{
"node": "通知",
"type": "main",
"index": 0
}
]
]
},
"间隔时间": {
"main": [
[
{
"node": "Google Drive",
"type": "main",
"index": 0
},
{
"node": "YouTube",
"type": "main",
"index": 0
},
{
"node": "Microsoft OneDrive",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {},
"versionId": "",
"meta": {
"instanceId": "cbaa89b05f7e8025300393a3b50bd22c3458c622bdb06477dd42614411c85114"
},
"tags": []
}

版权声明

本文为「Nose」原创内容或编译整理;除特别说明外,文中图片并非个人手绘,可能来源于网络、AI 生成、截图等,后期使用 PhotoMator / Procreate 进行处理,仅用于学习与交流。如涉及版权或来源标注不全,请联系处理。未经授权,禁止用于商业用途,禁止抹除水印。转载请注明出处与链接并保留本声明。

...

评论 (0)

评论功能加载中...
Nose

Nose

暂无个性签名

推荐阅读

Memory-不负时光摄影相册程序
探索发现

Memory-不负时光摄影相册程序

Noise | 2025-08-10

简介

一个瀑布流摄影图库,也是专为摄影师做的独立网络相册程序,它是基于[Moment](https://github.com/Robert-Stackflow/M

139
AI Movie Clip - 基于python的智能视频剪辑系统
探索发现

AI Movie Clip - 基于python的智能视频剪辑系统

Noise | 2025-08-10

一个基于人工智能的自动视频剪辑系统,能够自动分析视频内容并根据用户需求生成编辑后的视频。该项目为视频剪辑mcp提供了一个新的研究方向,它使用python脚本来分

75
CrossPaste-跨设备的粘贴神器,在任意设备间复制粘贴
探索发现

CrossPaste-跨设备的粘贴神器,在任意设备间复制粘贴

Noise | 2025-07-26

此前已介绍过多个粘贴软件了,如PasteBar等,它们各有所长,但有没有适合不同设备之间使用的呢,有的,CrossPaste就很好满足了跨设备同时复制粘贴的问题

特性

  • 🔄 实时共享:设备之间实时共享粘贴板内容,操作自然流畅。
  • 🖥️ 跨平台统一体验:Mac、Win
94

标签