mirror of
https://github.com/jellyfin/jellyfin-plugin-bookshelf.git
synced 2024-11-23 05:39:51 +00:00
a4cfe0009a
* Move file name parsing logic to a separate class * Add the Comic Vine API key to the configuration page * Add models for the Comic Vine API * Update the Comic Vine providers * Add test fixtures and some empty tests for the Comic Vine provider. * Update issue search and complete GetSearchResults tests * Complete GetMetadata tests for the Comic Vine provider * Add test for the Comic Vine image provider * Add Comic Vine information to the readme * Fix typo in Comic Vine provider * Fix some CodeQL warnings * Fix some more CodeQL issues and add more tests * Change displayed image in Comic Vine search results * Update regex number match * Update fixture files inclusion
2.7 KiB
2.7 KiB
Jellyfin Bookshelf Plugin
Part of the Jellyfin Project
About
The Jellyfin Bookshelf plugin enables the collection of eBooks & AudioBooks, with the latter being able to be played through Jellyfin.
Supported eBook file types
- epub
- mobi
- cbz
- cbr
Supported audio book file types
Please take in mind that this is not a complete list and represents some of the most commonly used formats.
- mp3
- m4a
- m4b
- flac
Offline Metadata providers
This plugin supports the following offline Metadata providers. These will check the local files for metadata.
- Open Packaging Format (OPF)
- Calibre OPF
- ComicInfo
- ComicBookInfo
The following limitations apply:
- .cbr Comics tagged with ComicRacks ComicInfo format are partially supported. Any metadata within the comic book itself will be ignored while external metadata within a ComicInfo.xml file can be read.
- The Advanced Comic Book Format is not supported.
- The CoMet format is not supported.
Online Metadata providers
These Metadata providers will check online services for metadata.
- Google Books
- Comic Vine
To use the Comic Vine metadata provider, you will need to set an API key on the plugin's configuration page.
Build & Installation Process
-
Clone this repository
-
Ensure you have .NET Core SDK setup and installed
-
Build the plugin with following command:
dotnet publish --configuration Release --output bin
- Place the resulting
Jellyfin.Plugin.Bookshelf.dll
file in a folder calledplugins/
inside your Jellyfin installation / data directory.