Created
March 2, 2025 17:35
-
-
Save magnus919/e9cc92f3503c8dd43fbcecc689b29224 to your computer and use it in GitHub Desktop.
Obsidian Web Clipper configuration for capturing YouTube content. Assumes "Interpreter" is set up, and also use of "Media Notes" plugin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"schemaVersion": "0.1.0", | |
"name": "YouTube", | |
"behavior": "create", | |
"noteContentFormat": "# My Notes\n- <% tp.file.cursor() %>\n\n# AI Notes\n{{\"Ignoring common YouTuber promotional boilerplate for sponsors, newsletters, etc. Focus specifically on content specific to the video itself. Offer a summary of video-specific supplementary material provided in the video notes. If it's a lot, feel free to use Markdown formatting and bullet points to make it look nice.\"}}\n\n# Author Content\n\n{{content}}", | |
"properties": [ | |
{ | |
"name": "title", | |
"value": "{{schema:name}}", | |
"type": "text" | |
}, | |
{ | |
"name": "author", | |
"value": "{{schema:author|wikilink}}", | |
"type": "multitext" | |
}, | |
{ | |
"name": "published", | |
"value": "{{schema:uploadDate|date:YYYY-MM-DD}}", | |
"type": "date" | |
}, | |
{ | |
"name": "source", | |
"value": "{{url}}", | |
"type": "text" | |
}, | |
{ | |
"name": "media_link", | |
"value": "{{url}}", | |
"type": "text" | |
}, | |
{ | |
"name": "image", | |
"value": "{{schema:thumbnailUrl|slice:0}}", | |
"type": "text" | |
}, | |
{ | |
"name": "created", | |
"value": "{{date}}", | |
"type": "date" | |
}, | |
{ | |
"name": "description", | |
"value": "{{\\\"Create a Twitter-length description of the content based on what you can derive from the video title, plus any content notes that seem to be specific to the video content. Ignore any generic boilerplate content that promotes sponsors, newsletters, or any other material that seems unrelated to the video topic.\\\"}}", | |
"type": "text" | |
}, | |
{ | |
"name": "tags", | |
"value": "videos, YouTube, {{\\\"create a comma-separated list of topic tags for this video content based on what you can derive from the video title and descriptive notes. Ignore boilerplate self-promotion material or mention of video sponsors. Use Obsidian-compatible tags which have no embedded spaces. You can use hyphens in lieu of spaces where needed.\\\"}}", | |
"type": "multitext" | |
}, | |
{ | |
"name": "related", | |
"value": "", | |
"type": "text" | |
} | |
], | |
"triggers": [ | |
"https://www.youtube.com/watch?v=" | |
], | |
"noteNameFormat": "{{schema:author}} – {{schema:name}}", | |
"path": "_0 - Inbox/Clippings" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment