Files
nexus/wiki/entities/Jellyfin.md
2026-04-14 16:02:50 +08:00

41 lines
1019 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "Jellyfin"
type: entity
tags: [jellyfin, media-server, nas, synology]
sources: [yong-docker-an-zhuang-jellyfin]
last_updated: 2026-04-14
---
## Definition
Jellyfin是开源媒体服务器支持电影/剧集管理、转码和播放兼容Plex/Emby生态。
## 核心特性
- 开源自托管媒体服务器
- 支持硬件转码Intel QuickSync、NVIDIA GPU、AMD VAAPI
- 元数据自动刮削
- 多平台客户端支持
## Docker部署配置
```yaml
services:
jellyfin:
image: nyanmisaka/jellyfin:latest
user: "1026:100"
ports:
- 8096:8096/tcp
- 7359:7359/udp
volumes:
- /volume1/docker/jellyfin/config:/config
- /volume1/docker/jellyfin/cache:/cache
- /volume2/movie:/media
- "/volume1/TV shows:/media2"
devices:
- /dev/dri:/dev/dri
environment:
- JELLYFIN_PublishedServerUrl=http://jellyfin.ishenwei.online
```
## Connections
- [[Synology NAS]] ← 宿主 ← [[Jellyfin]]
- [[Docker]] ← 部署方式 ← [[Jellyfin]]