-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoutube-clipper.json
53 lines (53 loc) · 1.37 KB
/
youtube-clipper.json
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
{
"schemaVersion": "0.1.0",
"name": "YouTube",
"behavior": "create",
"noteContentFormat": "## Video\n\n![{{title}}]({{schema:@VideoObject:embedUrl|replace:\"embed/\":\"watch?v=\"}})\n\n## Description\n\n{{schema:@VideoObject:description}}\n\n## Notes\n\n",
"properties": [
{
"name": "title",
"value": "{{schema:@VideoObject:name}}",
"type": "text"
},
{
"name": "createdAt",
"value": "{{time|date:\\\"YYYY-MM-DDTHH:mm:ssZ\\\"}}",
"type": "datetime"
},
{
"name": "lastReviewAt",
"value": "",
"type": "date"
},
{
"name": "source",
"value": "{{schema:@VideoObject:embedUrl|replace:\\\"embed/\\\":\\\"watch?v=\\\"}}",
"type": "text"
},
{
"name": "author",
"value": "{{schema:@VideoObject:author}}",
"type": "multitext"
},
{
"name": "publishedAt",
"value": "{{schema:@VideoObject:uploadDate|date:\\\"YYYY-MM-DD\\\"}}",
"type": "date"
},
{
"name": "thumbnailUrl",
"value": "{{schema:@VideoObject:thumbnailUrl|first}}",
"type": "text"
},
{
"name": "duration",
"value": "{{schema:@VideoObject:duration|replace:\\\"PT\\\",\\\"\\\",\\\"S\\\",\\\"\\\"}}",
"type": "text"
}
],
"triggers": [
"https://www.youtube.com/watch"
],
"noteNameFormat": "{{date|date:YYYY-MM-DD}} {{time|date:HH:mm}} - VIDEO {{schema:@VideoObject:author}} - {{schema:@VideoObject:name|safe_name|trim}}",
"path": "Lab/Inbox"
}