mirror of
https://github.com/okxlin/appstore.git
synced 2025-09-14 13:56:55 +08:00
feat:调整emby-amilys
This commit is contained in:
parent
4bf0a528a4
commit
eec3241a9c
7
apps/emby-amilys/4.9.0.20/.env.sample
Normal file
7
apps/emby-amilys/4.9.0.20/.env.sample
Normal file
@ -0,0 +1,7 @@
|
||||
CONTAINER_NAME="emby-amilys"
|
||||
DATA_PATH="./data/config"
|
||||
MOUNT_PATH2="./data/mnt2"
|
||||
MOUNT_PATH="./data/mnt1"
|
||||
PANEL_APP_PORT_HTTP="40258"
|
||||
PANEL_APP_PORT_HTTPS="40259"
|
||||
TIME_ZONE="Asia/Shanghai"
|
46
apps/emby-amilys/4.9.0.20/data.yml
Normal file
46
apps/emby-amilys/4.9.0.20/data.yml
Normal file
@ -0,0 +1,46 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 40258
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: HTTP Port
|
||||
labelZh: HTTP 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 40259
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTPS
|
||||
labelEn: HTTPS Port
|
||||
labelZh: HTTPS 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ./data/config
|
||||
edit: true
|
||||
envKey: DATA_PATH
|
||||
labelEn: Data folder path
|
||||
labelZh: 数据文件夹路径
|
||||
required: true
|
||||
type: text
|
||||
- default: ./data/mnt1
|
||||
edit: true
|
||||
envKey: MOUNT_PATH
|
||||
labelEn: Mount folder path
|
||||
labelZh: 挂载文件夹路径
|
||||
required: true
|
||||
type: text
|
||||
- default: ./data/mnt2
|
||||
edit: true
|
||||
envKey: MOUNT_PATH2
|
||||
labelEn: Mount folder path 2
|
||||
labelZh: 挂载文件夹路径2
|
||||
required: true
|
||||
type: text
|
||||
- default: Asia/Shanghai
|
||||
edit: true
|
||||
envKey: TIME_ZONE
|
||||
labelEn: Time zone
|
||||
labelZh: 时区
|
||||
required: true
|
||||
type: text
|
30
apps/emby-amilys/4.9.0.20/docker-compose.yml
Normal file
30
apps/emby-amilys/4.9.0.20/docker-compose.yml
Normal file
@ -0,0 +1,30 @@
|
||||
services:
|
||||
emby-amilys:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:8096"
|
||||
- "${PANEL_APP_PORT_HTTPS}:8920"
|
||||
volumes:
|
||||
- "${DATA_PATH}:/config"
|
||||
- "${MOUNT_PATH}:/mnt/share1"
|
||||
- "${MOUNT_PATH2}:/mnt/share2"
|
||||
environment:
|
||||
- UID=1000
|
||||
- GID=1000
|
||||
- GIDLIST=1000,0
|
||||
- TZ=${TIME_ZONE}
|
||||
# - NVIDIA_VISIBLE_DEVICES=all # 映射NVIDIA显卡
|
||||
# - NVIDIA_DRIVER_CAPABILITIES=all # 映射NVIDIA显卡
|
||||
#runtime: nvidia # Expose NVIDIA GPUs
|
||||
devices:
|
||||
- /dev/dri:/dev/dri # VAAPI/NVDEC/NVENC render nodes
|
||||
#- /dev/vchiq:/dev/vchiq # MMAL/OMX on Raspberry Pi
|
||||
image: amilys/embyserver:4.9.0.20
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
@ -1,25 +1,23 @@
|
||||
### 自供更新
|
||||
## 使用说明
|
||||
|
||||
时间 2024/06/01
|
||||
beta v4.9.0.22
|
||||
latest v4.8.8.0
|
||||
|
||||
> 如果需要显卡加速,安装的时候,请选择编辑`compose`文件,然后编辑显卡加速相关的配置。
|
||||
|
||||
***
|
||||
已添加功能:
|
||||
## 1. emby-erx Emby 增强/美化 插件
|
||||
|
||||
 作者:[https://github.com/Nolovenodie/emby-crx](https://github.com/Nolovenodie/emby-crx)
|
||||
- 作者:[https://github.com/Nolovenodie/emby-crx](https://github.com/Nolovenodie/emby-crx)
|
||||
开启请在/config/config/ext.sh 添加媒体库ID 再重启容器和Ctrl+F5刷新网页
|
||||
|
||||
## 2. dd-danmaku Emby 弹幕库插件
|
||||
|
||||
 作者:[https://github.com/RyoLee/dd-danmaku](https://github.com/RyoLee/dd-danmaku)
|
||||
- 作者:[https://github.com/RyoLee/dd-danmaku](https://github.com/RyoLee/dd-danmaku)
|
||||
开启/关闭 请在/config/config/ext.sh 中设置
|
||||
|
||||
## 3. emby调用外部播放器
|
||||
|
||||
 作者:[https://github.com/bpking1/embyExternalUrl](https://github.com/bpking1/embyExternalUrl) 开启/关闭 请在/config/config/ext.sh 中设置
|
||||
- 作者:[https://github.com/bpking1/embyExternalUrl](https://github.com/bpking1/embyExternalUrl) 开启/关闭 请在/config/config/ext.sh 中设置
|
||||
|
||||
安卓与电视客户端:[http://res.ssr0.cn:8000/?/Emby/](http://res.ssr0.cn:8000/?/Emby/)
|
||||
|
||||
@ -62,19 +60,3 @@ sed -i '/\ extmod/s/\[.*\]/'$extmod'/g' /system/dashboard-ui/ext.js
|
||||
|
||||
exit 0
|
||||
```
|
||||
|
||||
## 食用方法:
|
||||
|
||||
- 1.群晖docker注册表中搜索选择镜像版本
|
||||
- 2.勾选(Privileged)高权限启动容器!!!(不用更改环境变量)
|
||||
- 3.映射目录`/docker/emby`映射到`/config`
|
||||
- 4.Emby设置-\>Emby Premiere:输入`疯狂星期四V我50`点下保存
|
||||
- 5.`刷新浏览器`网页开始食用
|
||||
- 6.电视直播:添加直播源后,再手动刷新一下指南数据
|
||||
- 7.群晖ssh清理过时镜像`docker image prune`
|
||||
|
||||
## 同版本更新方法
|
||||
- 1.群晖Docker中停止emby容器
|
||||
- 2.Docker注册表中搜索选择镜像版本更新
|
||||
- 3.群晖Docker -\> 容器 -\> 操作-\> 重置 emby容器
|
||||
- 4.启动emby容器,刷新浏览器
|
@ -1,14 +1,14 @@
|
||||
name: Emby Amilys版
|
||||
name: Amilys Emby Server
|
||||
tags:
|
||||
- 多媒体
|
||||
title: 一个免费的个人媒体服务器(开心版)
|
||||
description: 一个免费的个人媒体服务器
|
||||
title: 一个免费的个人媒体服务器 (开心版)
|
||||
description: 一个免费的个人媒体服务器 (开心版)
|
||||
additionalProperties:
|
||||
key: embyamilys
|
||||
name: Emby Amilys版
|
||||
key: emby-amilys
|
||||
name: Amilys Emby Server
|
||||
tags:
|
||||
- Media
|
||||
shortDescZh: 一个免费的个人媒体服务器
|
||||
shortDescZh: 一个免费的个人媒体服务器 (开心版)
|
||||
shortDescEn: A free personal media server
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
|
@ -1,5 +1,7 @@
|
||||
CONTAINER_NAME="emby-amilys"
|
||||
DATA_PATH="./data/config"
|
||||
MOUNT_PATH="./data/mnt"
|
||||
PANEL_APP_PORT_HTTP="8098"
|
||||
PANEL_APP_PORT_HTTPS="8922"
|
||||
MOUNT_PATH2="./data/mnt2"
|
||||
MOUNT_PATH="./data/mnt1"
|
||||
PANEL_APP_PORT_HTTP="40258"
|
||||
PANEL_APP_PORT_HTTPS="40259"
|
||||
TIME_ZONE="Asia/Shanghai"
|
||||
|
@ -1,18 +1,18 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 8098
|
||||
- default: 40258
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: HTTP Port
|
||||
labelZh: HTTP端口
|
||||
labelZh: HTTP 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 8922
|
||||
- default: 40259
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTPS
|
||||
labelEn: HTTPS Port
|
||||
labelZh: HTTPS端口
|
||||
labelZh: HTTPS 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
@ -23,10 +23,24 @@ additionalProperties:
|
||||
labelZh: 数据文件夹路径
|
||||
required: true
|
||||
type: text
|
||||
- default: ./data/mnt
|
||||
- default: ./data/mnt1
|
||||
edit: true
|
||||
envKey: MOUNT_PATH
|
||||
labelEn: Mount folder path
|
||||
labelZh: 挂载文件夹路径
|
||||
required: true
|
||||
type: text
|
||||
- default: ./data/mnt2
|
||||
edit: true
|
||||
envKey: MOUNT_PATH2
|
||||
labelEn: Mount folder path 2
|
||||
labelZh: 挂载文件夹路径2
|
||||
required: true
|
||||
type: text
|
||||
- default: Asia/Shanghai
|
||||
edit: true
|
||||
envKey: TIME_ZONE
|
||||
labelEn: Time zone
|
||||
labelZh: 时区
|
||||
required: true
|
||||
type: text
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
emby:
|
||||
emby-amilys:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
@ -9,12 +9,13 @@ services:
|
||||
- "${PANEL_APP_PORT_HTTPS}:8920"
|
||||
volumes:
|
||||
- "${DATA_PATH}:/config"
|
||||
- "${MOUNT_PATH}:/mnt/media"
|
||||
- "${MOUNT_PATH}:/mnt/share1"
|
||||
- "${MOUNT_PATH2}:/mnt/share2"
|
||||
environment:
|
||||
- UID=1000
|
||||
- GID=1000
|
||||
- GIDLIST=1000,0
|
||||
- TZ=Asia/Shanghai
|
||||
- TZ=${TIME_ZONE}
|
||||
# - NVIDIA_VISIBLE_DEVICES=all # 映射NVIDIA显卡
|
||||
# - NVIDIA_DRIVER_CAPABILITIES=all # 映射NVIDIA显卡
|
||||
#runtime: nvidia # Expose NVIDIA GPUs
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 4.8 KiB |
Loading…
Reference in New Issue
Block a user