How to Export YouTube Notes to Obsidian Using VideoToWisdom: A Complete Guide
If you’re a fan of using Obsidian for note-taking, you know how powerful it can be to collect, organize, and review your notes. Now imagine having insightful notes from your favorite YouTube videos automatically saved in your Obsidian vault. With VideoToWisdom, Make.com, and Obsidian’s Webhooks plugin, this setup is entirely possible! Here’s your complete guide on exporting YouTube notes to Obsidian with VideoToWisdom.
Prerequisites
Before diving into the step-by-step process, ensure you have the following tools set up:
- An Obsidian vault with the Webhooks plugin installed
- A VideoToWisdom account (free plan available)
- A Make.com account (also free)
Step 1: Create Youtube Notes with Videotowisdom
To start, you’ll need a VideoToWisdom account. Here’s how to create insightful notes from YouTube videos with just a few steps:
- Sign Up: Create a free account on VideoToWisdom.com (if you haven’t already).
- Start a New Chat:
- Go to “Chat” and click New Chat in the left navigation bar.
- Paste the URL of the YouTube video you’d like to take notes on.
- Using Existing Prompts: Click the Prompt button and select a prompt, such as
create_study_notes
. - Creating a Custom Prompt:
- If existing prompts don’t meet your needs, you can create a custom prompt.
- Go to Prompts in the left navigation bar, click New Prompt, enter a name, description, and prompt instructions, then click Save.
Once saved, your custom prompt will appear in the prompt selection list.
Step 2: Manually save Notes to Obsidian
If you prefer a more manual process, you can easily copy notes from VideoToWisdom and paste them directly into Obsidian:
- Copy the Notes: After generating notes in VideoToWisdom, click the copy icon on the AI response.
- Paste into Obsidian: The notes are copied in Markdown format, making it easy to paste them directly into an Obsidian note.
Step 3: Automatically save Notes from Videos in Your Playlist to Obsidian
For a fully automated workflow, you can set up an integration using Make.com to fetch notes from your YouTube playlist and save them to Obsidian.
3.1 Set up Youtube Integration in Make.Com
- Search for YouTube and select Watch Playlist Videos.
- Connect your Google account when prompted.
- Select the playlist you want to monitor.
- Set the maximum number of results
- Choose the frequency for checking updates.
3.2 Export Notes from Video to Wisdom API Using HTTP Module
- URL: https://api.videotowisdom.com/v1/synthesis
- Method: POST
- Headers: Include your API key from VideoToWisdom as X-API-Key.
- Body Type: JSON (application/json)
- Request Content:
{ "url": "https://youtu.be/{{1.videoId}}", "prompt_name": "create_study_notes" }
3.3 Install and Configure the Obsidian Webhooks Plugin
- In Obsidian, go to Settings, then Community Plugins and search for “Webhooks.”
- Install and enable the plugin.
- Go to the plugin’s settings and click Generate Obsidian Sign-In Token.
- Copy the generated token and paste the token in plugin settings.
- Note the Webhook URL generated; you’ll use this in Make.com.
3.4 Add a Webhook Module to Send Data to Obsidian
- Method: POST
- URL: Enter the Webhook URL generated by Obsidian, adding ?path=path/to/obsidian/file to specify the file path in your vault.
- Example:
<webhook_url>?path=obsidian/Resources/VideoToWisdom/{{2.pageTitle}}.md
- Headers: Set Content-Type to JSON (application/json)
- Body (JSON):
---
Category: videos created: {{var.scenario.executionStartedAt}}
---
[{{1.title}}](https://youtu.be/{{1.videoId}})
<iframe width="560" height="315" src="https://www.youtube.com/embed/{{1.videoId}}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
## Insights {{3.data.result.content}}
Step 4: Test and Activate Your Workflow
- Run the Scenario Once: Click Run Once to test the workflow and confirm that everything is functioning correctly.
- Check Your Obsidian Vault: Ensure that the notes are appearing as expected.
- Enable Scheduling:
- Click the clock icon in Make.com.
- Set the scenario’s frequency, such as every hour, to automatically check for new videos.
4. Final configuration will look like this.
How the Workflow Works
- Make.com periodically checks the selected YouTube playlist for new videos.
- When a new video is detected, Make.com triggers VideoToWisdom’s API to generate notes.
- These notes are then sent to your Obsidian vault via the Webhooks plugin, creating a new note file with all video details and insights.
Customization Options
- You can adjust the obsidian note template in the JSON body of the HTTP module.
- Modify the
pageTitle
in the Tools Set Variable module to customize file names.
Conclusion
With this guide, you’ve set up a powerful workflow to automatically export insightful notes from YouTube videos directly into Obsidian. Using VideoToWisdom, Make.com, and Obsidian’s Webhooks plugin, you now have a seamless way to capture and organize valuable insights from videos into your personal knowledge base. Enjoy a hands-free process that keeps your learning organized and ready for review-all within Obsidian!
Originally published at https://www.videotowisdom.com.