mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-12-05 09:12:22 +08:00
Processed apps directory via GitHub Actions
Some checks are pending
Process Apps and Commit Changes / process (push) Waiting to run
Some checks are pending
Process Apps and Commit Changes / process (push) Waiting to run
This commit is contained in:
parent
4fce2bc370
commit
4fac253c16
15
appstore/mdc-ng/0.56.4/.env
Normal file
15
appstore/mdc-ng/0.56.4/.env
Normal file
@ -0,0 +1,15 @@
|
||||
# 数据持久化路径 [必填]
|
||||
MDC_NG_ROOT_PATH=/home/mdc-ng
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=9208
|
||||
|
||||
# 自定义挂载目录 1
|
||||
CUSTOM_MOUNT_DIRECTORY_1=
|
||||
|
||||
# 自定义挂载目录 2
|
||||
CUSTOM_MOUNT_DIRECTORY_2=
|
||||
|
||||
# 自定义挂载目录 3
|
||||
CUSTOM_MOUNT_DIRECTORY_3=
|
||||
|
38
appstore/mdc-ng/0.56.4/data.yml
Normal file
38
appstore/mdc-ng/0.56.4/data.yml
Normal file
@ -0,0 +1,38 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "/home/mdc-ng"
|
||||
edit: true
|
||||
envKey: MDC_NG_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 9208
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: CUSTOM_MOUNT_DIRECTORY_1
|
||||
labelEn: Custom mount directory 1
|
||||
labelZh: 自定义挂载目录 1
|
||||
required: false
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: CUSTOM_MOUNT_DIRECTORY_2
|
||||
labelEn: Custom mount directory 2
|
||||
labelZh: 自定义挂载目录 2
|
||||
required: false
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: CUSTOM_MOUNT_DIRECTORY_3
|
||||
labelEn: Custom mount directory 3
|
||||
labelZh: 自定义挂载目录 3
|
||||
required: false
|
||||
type: text
|
23
appstore/mdc-ng/0.56.4/docker-compose.yml
Normal file
23
appstore/mdc-ng/0.56.4/docker-compose.yml
Normal file
@ -0,0 +1,23 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
mdc-ng:
|
||||
container_name: mdc-ng
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: mdcng/mdc:0.56.4
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:9208
|
||||
restart: always
|
||||
volumes:
|
||||
- ${MDC_NG_ROOT_PATH}/config:/config
|
||||
- ${MDC_NG_ROOT_PATH}/media:/media
|
||||
- ${CUSTOM_MOUNT_DIRECTORY_1:-./default_mount_1}:${CUSTOM_MOUNT_DIRECTORY_1:-/default_mount_1}
|
||||
- ${CUSTOM_MOUNT_DIRECTORY_2:-./default_mount_2}:${CUSTOM_MOUNT_DIRECTORY_2:-/default_mount_2}
|
||||
- ${CUSTOM_MOUNT_DIRECTORY_3:-./default_mount_3}:${CUSTOM_MOUNT_DIRECTORY_3:-/default_mount_3}
|
2
appstore/mdc-ng/0.56.4/envs/default.env
Normal file
2
appstore/mdc-ng/0.56.4/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
2
appstore/mdc-ng/0.56.4/envs/global.env
Normal file
2
appstore/mdc-ng/0.56.4/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
17
appstore/mdc-ng/0.56.4/scripts/init.sh
Normal file
17
appstore/mdc-ng/0.56.4/scripts/init.sh
Normal file
@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
10
appstore/mdc-ng/0.56.4/scripts/uninstall.sh
Normal file
10
appstore/mdc-ng/0.56.4/scripts/uninstall.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
17
appstore/mdc-ng/0.56.4/scripts/upgrade.sh
Normal file
17
appstore/mdc-ng/0.56.4/scripts/upgrade.sh
Normal file
@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
57
appstore/mdc-ng/README.md
Normal file
57
appstore/mdc-ng/README.md
Normal file
@ -0,0 +1,57 @@
|
||||
# MDC-NG
|
||||
|
||||
成人电影数据采集工具
|
||||
|
||||
![MDC-NG](https://file.lifebus.top/imgs/mdc_ng_cover.png)
|
||||
|
||||
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
|
||||
|
||||
## 应用简介
|
||||
|
||||
### 视频刮削整理
|
||||
|
||||
支持硬链接、软链接、复制、移动、原地整理等多种整理方式
|
||||
|
||||
+ 识别影片ID
|
||||
+ 抓取元数据
|
||||
+ 创建目标目录
|
||||
+ 下载、处理图片
|
||||
+ 整理视频以及自带的字幕文件到目标目录
|
||||
+ 生成nfo文件
|
||||
|
||||
### 目录监控
|
||||
|
||||
> 监控开启后不会刮削目录内的存量视频,只会对新文件的创建做出响应
|
||||
|
||||
当你的媒体目录是本地盘时,优先使用性能模式来获得最佳体验。其他情况或遇到目录监控不工作,请改成兼容模式
|
||||
|
||||
提供两种监控模式针对不同场景:
|
||||
|
||||
#### 性能模式
|
||||
|
||||
监听系统级文件变更事件,即时响应,性能最好。但不支持网盘、NAS等挂载到本地的目录
|
||||
|
||||
#### 兼容模式
|
||||
|
||||
定时检查文件更新,性能一般,响应有一定延迟。优点是不依赖系统事件,兼容性强
|
||||
|
||||
### 演员刮削
|
||||
|
||||
+ 目前支持emby服务端刮削
|
||||
+ 刮削信息源:维基百科
|
||||
+ 刮削图片源:graphis,gfriends;其中graphis源的图片质量优秀并且有背景图,作为首选
|
||||
+ graphis网站有演员早期到最近时期的照片,目前默认刮削早期照片(比较青春..),后续版本更新会添加为可选项
|
||||
+ gfriends是社区维护的演员头像数据库,质量参差不齐,但覆盖范围宽,能够作为graphis很好的补充。该数据在后端初始化时会进行缓存,重启服务会检查数据更新。后续会添加定时检查功能
|
||||
|
||||
## 应用特性
|
||||
|
||||
+ WebUI交互界面
|
||||
+ 高性能、高质量刮削器,多刮削源同步抓取元数据,支持多种整理方式。目前已经支持近20个高质量刮削源,新源适配陆续添加中
|
||||
+ 支持多目录监控,检测到新文件自动刮削入库
|
||||
+ 手动存量整理
|
||||
+ 联动Emby演员信息、图片刮削
|
||||
+ 图片自动添加标签、多引擎文本翻译、内置演员数据库、sehuatang标题数据库等等
|
||||
|
||||
---
|
||||
|
||||
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
|
15
appstore/mdc-ng/data.yml
Normal file
15
appstore/mdc-ng/data.yml
Normal file
@ -0,0 +1,15 @@
|
||||
additionalProperties:
|
||||
key: mdc-ng
|
||||
name: MDC-NG
|
||||
tags:
|
||||
- WebSite
|
||||
- Tool
|
||||
- Local
|
||||
shortDescZh: 成人电影数据采集工具
|
||||
shortDescEn: Yet another Movie Data Capture tool
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://github.com/mdc-ng/mdc-ng/
|
||||
github: https://github.com/mdc-ng/mdc-ng/
|
||||
document: https://github.com/mdc-ng/mdc-ng/
|
BIN
appstore/mdc-ng/logo.png
Normal file
BIN
appstore/mdc-ng/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
15
dockge/mdc-ng/.env
Normal file
15
dockge/mdc-ng/.env
Normal file
@ -0,0 +1,15 @@
|
||||
# 数据持久化路径 [必填]
|
||||
MDC_NG_ROOT_PATH=/home/mdc-ng
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=9208
|
||||
|
||||
# 自定义挂载目录 1
|
||||
CUSTOM_MOUNT_DIRECTORY_1=
|
||||
|
||||
# 自定义挂载目录 2
|
||||
CUSTOM_MOUNT_DIRECTORY_2=
|
||||
|
||||
# 自定义挂载目录 3
|
||||
CUSTOM_MOUNT_DIRECTORY_3=
|
||||
|
23
dockge/mdc-ng/docker-compose.yml
Normal file
23
dockge/mdc-ng/docker-compose.yml
Normal file
@ -0,0 +1,23 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
mdc-ng:
|
||||
container_name: mdc-ng
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: mdcng/mdc:0.56.4
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:9208
|
||||
restart: always
|
||||
volumes:
|
||||
- ${MDC_NG_ROOT_PATH}/config:/config
|
||||
- ${MDC_NG_ROOT_PATH}/media:/media
|
||||
- ${CUSTOM_MOUNT_DIRECTORY_1:-./default_mount_1}:${CUSTOM_MOUNT_DIRECTORY_1:-/default_mount_1}
|
||||
- ${CUSTOM_MOUNT_DIRECTORY_2:-./default_mount_2}:${CUSTOM_MOUNT_DIRECTORY_2:-/default_mount_2}
|
||||
- ${CUSTOM_MOUNT_DIRECTORY_3:-./default_mount_3}:${CUSTOM_MOUNT_DIRECTORY_3:-/default_mount_3}
|
2
dockge/mdc-ng/envs/default.env
Normal file
2
dockge/mdc-ng/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
2
dockge/mdc-ng/envs/global.env
Normal file
2
dockge/mdc-ng/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
Loading…
Reference in New Issue
Block a user