All Projects → marcjulianschwarz → obsidian-podcast-note

marcjulianschwarz / obsidian-podcast-note

Licence: MIT License
A plugin for the note taking app Obsidian that lets you add podcast meta data to your notes.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to obsidian-podcast-note

obsidian-contextual-typography
No description or website provided.
Stars: ✭ 45 (+87.5%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-kanban
Create markdown-backed Kanban boards in Obsidian.
Stars: ✭ 974 (+3958.33%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-core-search-assistant-plugin
An Obsidian plugin to enhance built-in search: keyboard interface, card preview, bigger preview
Stars: ✭ 59 (+145.83%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-pangu
为 Obsidian 笔记加上「盘古之白」,排版强迫症者的福音。 | A small plugin aims to add space between Chinese Characters and English Alphabet, and it is a boon for typographically compulsive people.
Stars: ✭ 40 (+66.67%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-charts
Charts - Obsidian Plugin | Create editable, interactive and animated Charts in Obsidian via Chart.js
Stars: ✭ 177 (+637.5%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-metatemplates
Take advantage of YAML front-matter in generating notes from templates (for obsidian.md)
Stars: ✭ 68 (+183.33%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-style-settings
A dynamic user interface for adjusting theme, plugin, and snippet CSS variables within Obsidian
Stars: ✭ 205 (+754.17%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-link-archive
Link Archive plugin for Obsidian
Stars: ✭ 94 (+291.67%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-smart-typography
Converts quotes to curly quotes, dashes to em dashes, and periods to ellipses
Stars: ✭ 81 (+237.5%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-text-format
Format seleted text in Obsdidian.md
Stars: ✭ 49 (+104.17%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-search-on-internet
Add context menu items in Obsidian to search the internet.
Stars: ✭ 79 (+229.17%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-advanced-appearance
Change Obsidian colors, fonts and other cosmetic settings
Stars: ✭ 35 (+45.83%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-query2table
Represent files returned by a query as a table of their YAML frontmatter (for obsidian.md)
Stars: ✭ 24 (+0%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-readwise
Sync Readwise highlights into your obsidian vault
Stars: ✭ 79 (+229.17%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-spaced-repetition
Fight the forgetting curve by reviewing flashcards & entire notes on Obsidian.md
Stars: ✭ 667 (+2679.17%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-embedded-note-titles
No description or website provided.
Stars: ✭ 50 (+108.33%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-icon-swapper
Allows swapping out Obsidian's icons
Stars: ✭ 30 (+25%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-convert-url-to-iframe
Plugin for Obsidian.md to convert a selected URL to an iframe.
Stars: ✭ 132 (+450%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-url-into-selection
Paste URLs into selected text "notion style"
Stars: ✭ 129 (+437.5%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md
obsidian-hider
Hide Obsidian UI elements such as tooltips, status, titlebar and more
Stars: ✭ 106 (+341.67%)
Mutual labels:  obsidian, obsidian-plugin, obsidian-md

Podcast Note

Podcast Note is a great way to write notes on podcasts. With a single URL you will get the title, image and description of your podcast. Using a custom template you can style the note to your likings. More settings and features will be explained further down.

How to use it

You can add new podcast notes by opening the command pallete (cmd + p) and searching for "Podcast Note" commands:

Add Podcast Note

A prompt will open where you can enter the URL for the podcast you want to take notes on. Of course you can also specify a keyboard shortcut to trigger the prompt.

Add Podcast Notes from selection

This command will only be visible in editor mode. Make sure you have text selected which contains markdown links to podcast episodes. Running the command will create new podcast notes for every url in the selected text. It will also automatically link these notes.

Supported Podcast services

So far these podcast services are supported:

  • Apple Podcast
  • Spotify Podcast
  • Google Podcast
  • Pocket Casts
  • Airr
  • Overcast
  • Castro
  • Castbox
  • YouTube

Demo

Example Podcast Note:

Podcast Note example

Settings

1. Template

Here you can specify how the metadata for your podcast notes looks like. Use these three placeholders:

  • {{Title}} -> title of your podcast
  • {{ImageURL}} -> image url of your podcast
  • {{Description}} -> short podcast description
  • {{ShowNotes}} -> show notes (only for PocketCasts and Castro)
  • {{EpisodeDate}} -> date when podcast has been published (only for PocketCasts)
  • {{PodcastURL}} -> url to podcast
  • {{Date}} -> date (format: Day-Month-Year)
  • {{Timestamp}} -> current timestamp

Example template:

---
tags: [Podcast]
date: {{Date}}
---
# {{Title}} 
![]({{ImageURL}})
## Description: 
> {{Description}}
-> [Podcast Link]({{PodcastURL}})

## Notes:

will create this note:

Podcast Note example editor

2. Filename template

Specify whether the podcast note will be inserted at your cursor or whether a new note will be added. You can also use a template for the filename. Placeholders:

  • {{Title}} -> title of your podcast
  • {{Timestamp}} -> timestamp (like zettelkasten id)
  • {{Date}} -> date (format: Day-Month-Year)

3. Folder

Set the folder where new Podcast notes will be saved. The path is relative to your vault. For example folder/podcast_folder will become path/to/vault/folder/podcastfolder.

4. Insert podcast note at cursor

Specify whether you want to create a new note or whether you want the metadata to be inserted at your cursor.

Questions

If you have any questions, feedback or feature requests, let me know and write a mail at marc-julian.de or create a new issue on GitHub

Do you like the plugin?

Buy Me A Coffee

Future versions will include:

See issues for Podcast Note.

Versions

The numbers in "[]" are the issue numbers associated with the fix or feature.

1.0.0:

  • Initital release.

1.1.1:

  • [#7, #8] Bug fixes (custom folder was not working as expected, multiple occurrences of same placeholder didnt work)
  • [#2, #5] New command: Add Podcast Notes from selection
    • fetches markdown links from selection
    • creates podcast note
    • replaces markdown link with link to podcast note

1.1.2:

  • [#12] Add Podcast Notes from selection now working with pure links
  • Podcast Note is now working on Obsidian mobile

1.2.0:

  • [#15] Notes on YouTube videos is now possible
  • [#14] Support for show notes (PocketCasts and Castro)

1.3.0:

  • [#18] Fix ImageURL bug for mobile devices
  • [#17] Add option to use markdown file as template
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].