新增wiki命令文件

This commit is contained in:
2026-04-14 16:02:50 +08:00
parent 65803c911d
commit c6e3d3c5db
485 changed files with 12578 additions and 396 deletions

40
wiki/entities/Jellyfin.md Normal file
View File

@@ -0,0 +1,40 @@
---
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]]