mirror of
https://github.com/gethomepage/homepage.git
synced 2026-02-08 08:50:52 +08:00
Some checks are pending
Tests / vitest (4) (push) Waiting to run
Docker CI / Linting Checks (push) Waiting to run
Docker CI / Docker Build & Push (push) Blocked by required conditions
Tests / vitest (1) (push) Waiting to run
Tests / vitest (2) (push) Waiting to run
Tests / vitest (3) (push) Waiting to run
Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
30 lines
1.2 KiB
Markdown
30 lines
1.2 KiB
Markdown
---
|
|
title: Jellyfin
|
|
description: Jellyfin Widget Configuration
|
|
---
|
|
|
|
Learn more about [Jellyfin](https://github.com/jellyfin/jellyfin).
|
|
|
|
You can create an API key from inside the Jellyfin Administration Dashboard under `Advanced > API Keys`.
|
|
|
|
As of v0.6.11 the widget supports fields `["movies", "series", "episodes", "songs"]`. These blocks are disabled by default but can be enabled with the `enableBlocks` option, and the "Now Playing" feature (enabled by default) can be disabled with the `enableNowPlaying` option.
|
|
|
|
| Jellyfin Version | Homepage Widget Version |
|
|
| ---------------- | ----------------------- |
|
|
| < 10.12 | 1 (default) |
|
|
| >= 10.12 | 2 |
|
|
|
|
```yaml
|
|
widget:
|
|
type: jellyfin
|
|
url: http://jellyfin.host.or.ip:port
|
|
key: apikeyapikeyapikeyapikeyapikey
|
|
version: 2 # optional, default is 1
|
|
enableBlocks: true # optional, defaults to false
|
|
enableNowPlaying: true # optional, defaults to true
|
|
enableUser: true # optional, defaults to false
|
|
enableMediaControl: false # optional, defaults to true
|
|
showEpisodeNumber: true # optional, defaults to false
|
|
expandOneStreamToTwoRows: false # optional, defaults to true
|
|
```
|