No description
Find a file
2022-05-12 21:30:17 +02:00
src games, english anime titles, specials and OVAs 2022-05-12 17:18:12 +02:00
.editorconfig Initial commit 2022-05-04 14:43:20 +02:00
.eslintignore Initial commit 2022-05-04 14:43:20 +02:00
.eslintrc Initial commit 2022-05-04 14:43:20 +02:00
.gitignore Initial commit 2022-05-04 14:43:20 +02:00
.npmrc Initial commit 2022-05-04 14:43:20 +02:00
esbuild.config.mjs scaffolding 2022-05-04 17:45:42 +02:00
LICENSE.md Rename LICENSE to LICENSE.md 2022-05-11 23:46:51 +02:00
manifest.json scaffolding 2022-05-04 17:45:42 +02:00
package-lock.json scaffolding 2022-05-04 17:45:42 +02:00
package.json scaffolding 2022-05-04 17:45:42 +02:00
README.md Update README.md 2022-05-12 21:30:17 +02:00
styles.css search by id 2022-05-11 23:41:55 +02:00
tsconfig.json Initial commit 2022-05-04 14:43:20 +02:00
version-bump.mjs Initial commit 2022-05-04 14:43:20 +02:00
versions.json Initial commit 2022-05-04 14:43:20 +02:00

Obsidian Media DB Plugin

This plugin can query multiple APIs for movies, series, anime and games, and creates notes containing their information.

Features

Search by Title

Search by the Name of the movie, series, anime or game.

Search by ID

Allows you to search by an ID that varies from API to API. Concrete info can be found in the description of the individual APIs.

Currently supported APIs:

  • Jikan, an API that uses My Anime List
    • supported formats
      • series
      • movies
      • specials
      • OVAs
    • authentication
      • no authentication needed
    • SFW filter support
      • yes
    • Search by ID
      • the ID you need is the ID of the anime on My Anime List
      • you can find this ID in the URL
        • e.g. for "Beyond the Boundary" the URL looks like this https://myanimelist.net/anime/18153/Kyoukai_no_Kanata so the ID is 18153
    • notes
      • the api is very slow sometimes, this is normal
      • the titles have to be with the titles that they have on My Anime List, which are in most cases the japanese titles
        • e.g. instead of "Demon Slayer" you have to search "Kimetsu no Yaiba"
      • the API is rate limited to
        • 60 requests per minute
        • 3 requests per second
  • OMDb
    • supported formats
      • series
      • movies
      • games
    • authentication
      • an API key is needed
      • you can get one for free here
    • SFW filter support
      • no, but I haven't encountered ant NSFW content in testing
    • Search by ID
      • the ID you need is the ID of the movie or show on IMDb
      • you can find this ID in the URL
        • e.g. for "Rogue One" the URL looks like this https://www.imdb.com/title/tt3748528/ so the ID is tt3748528
    • notes
      • the api is rate limited to 1000 requests a day

Currently supported media types

  • movies (including specials)
  • series (including OVAs)
  • games

Contributions

Thank you for wanting to contribute to this project.

Contributions are always welcome. If you have an idea, feel free to open a feature request under the issue tab or even create a pull request.