记录自用emby 4.8.11 时过程
系统:Debian 飞牛NAS
部署方式为Docker,破解程序通用
docker emby
docker-compose.yaml
services:
emby:
image: emby/embyserver
container_name: embyserver
restart: unless-stopped
network_mode: bridge
ports:
- 8096:8096
environment:
- UID=1000
- GID=1001
- TZ=Asia/Shanghai
volumes:
- ./config:/config
- /vol1/1000/Media/library:/Library # 自定义路径
healthcheck:
test: ["CMD", "ls", "/Library"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
破解
下载并解压破解补丁
wget --no-check-certificate https://cangshui.net/-down/-mysh/emby/emby4.8.11.0/emby-happy.tar
tar -xf emby-happy.tar
emby-happy解压路径自定义
docker cp /emby-happy/Emby.Web.dll embyserver:/app/emby/system/Emby.Web.dll
docker cp /emby-happy/MediaBrowser.Model.dll embyserver:/app/emby/system/MediaBrowser.Model.dll
docker cp /emby-happy/Emby.Server.Implementations.dll embyserver:/app/emby/system/Emby.Server.Implementations.dll
docker cp /emby-happy/embypremiere.js embyserver:/app/emby/system/dashboard-ui/embypremiere/embypremiere.js
docker cp /emby-happy/connectionmanager.js embyserver:/app/emby/system/dashboard-ui/modules/emby-apiclient/connectionmanager.js
#这五条命令里的“embyserver”请改成你自己的容器名称
重启
docker restart embyserver
插件
神医助手:https://github.com/sjtuross/StrmAssistant
网易云搜刮插件:https://github.com/xixka/Emby.Music-China-Provider
弹幕
修改文件 /system/dashboard-ui/index.html
(Docker版,其他类似),在</body>
前添加如下标签
<script src="https://cdn.jsdelivr.net/gh/RyoLee/emby-danmaku@gh-pages/ede.user.js" defer></script>
另一个方案
美化
docker exec EmbyServer /bin/sh -c 'cd /system/dashboard-ui && wget -O - https://raw.githubusercontent.com/Nolovenodie/emby-crx/master/script.sh | sh'