76 lines
1.9 KiB
Markdown
76 lines
1.9 KiB
Markdown
# Jellypod
|
|
|
|
A Jellyfin plugin that adds podcast support to your media server.
|
|
|
|
## Quick Install
|
|
|
|
Add this repository URL in Jellyfin (Dashboard → Plugins → Repositories):
|
|
|
|
```
|
|
https://gitea.tourolle.paris/dtourolle/jellypod/raw/branch/master/manifest.json
|
|
```
|
|
|
|
## Features
|
|
|
|
- Browse and subscribe to podcasts
|
|
- Automatic episode downloads
|
|
- Integration with Jellyfin's library system
|
|
|
|
## Screenshots
|
|
|
|
### Podcast Library
|
|

|
|
|
|
### Plugin Settings
|
|

|
|
|
|
## Installation
|
|
|
|
### From Plugin Repository (Recommended)
|
|
|
|
1. In Jellyfin, go to **Dashboard** → **Plugins** → **Repositories**
|
|
2. Click the **+** button to add a new repository
|
|
3. Enter:
|
|
- **Repository Name**: `Jellypod`
|
|
- **Repository URL**: `https://gitea.tourolle.paris/dtourolle/jellypod/raw/branch/master/manifest.json`
|
|
4. Click **Save**
|
|
5. Go to **Catalog** tab and find **Jellypod**
|
|
6. Click **Install** and restart Jellyfin
|
|
|
|
### Manual Installation
|
|
|
|
1. Download the latest release from [Releases](https://gitea.tourolle.paris/dtourolle/jellypod/releases)
|
|
2. Extract the contents to your Jellyfin plugins directory:
|
|
- **Linux**: `~/.local/share/jellyfin/plugins/Jellypod/`
|
|
- **Windows**: `%LOCALAPPDATA%\jellyfin\plugins\Jellypod\`
|
|
- **Docker**: `/config/plugins/Jellypod/`
|
|
3. Restart Jellyfin
|
|
|
|
### Building from Source
|
|
|
|
#### Requirements
|
|
|
|
- [.NET SDK 8.0](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
|
|
|
|
#### Build
|
|
|
|
```bash
|
|
dotnet build
|
|
```
|
|
|
|
The plugin DLL will be in `Jellyfin.Plugin.Jellypod/bin/Debug/net8.0/`.
|
|
|
|
## Development
|
|
|
|
This plugin is based on the [Jellyfin Plugin Template](https://github.com/jellyfin/jellyfin-plugin-template).
|
|
|
|
See the `.vscode` folder for VS Code debugging configuration.
|
|
|
|
## License
|
|
|
|
This project is licensed under the GPLv3 - see the [LICENSE](LICENSE) file for details.
|
|
|
|
## Links
|
|
|
|
- **Repository**: https://gitea.tourolle.paris/dtourolle/jellypod
|