mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-05-30 07:26:48 +00:00
97 lines
3.9 KiB
Markdown
97 lines
3.9 KiB
Markdown
|
||
# MoviePilot
|
||
|
||
简体中文 | [English](README_EN.md)
|
||
|
||

|
||

|
||

|
||

|
||

|
||

|
||

|
||

|
||
|
||
|
||
基于 [NAStool](https://github.com/NAStool/nas-tools) 部分代码重新设计,聚焦自动化核心需求,减少问题同时更易于扩展和维护。
|
||
|
||
# 仅用于学习交流使用,请勿在任何国内平台宣传该项目!
|
||
|
||
发布频道:https://t.me/moviepilot_channel
|
||
|
||
|
||
## 主要特性
|
||
|
||
- 前后端分离,基于FastApi + Vue3。
|
||
- 聚焦核心需求,简化功能和设置,部分设置项可直接使用默认值。
|
||
- 重新设计了用户界面,更加美观易用。
|
||
|
||
|
||
## 安装使用
|
||
|
||
官方Wiki:https://wiki.movie-pilot.org
|
||
|
||
|
||
## 本地 CLI
|
||
|
||
一键安装运行脚本:
|
||
|
||
```shell
|
||
curl -fsSL https://raw.githubusercontent.com/jxxghp/MoviePilot/v2/scripts/bootstrap-local.sh | bash
|
||
```
|
||
|
||
使用 `moviepilot` 命令管理MoviePilot,完整 CLI 文档:[`docs/cli.md`](docs/cli.md)
|
||
|
||
|
||
## 为 AI Agent 添加 Skills
|
||
```shell
|
||
npx skills add https://github.com/jxxghp/MoviePilot
|
||
```
|
||
|
||
## 参与开发
|
||
|
||
API文档:https://api.movie-pilot.org
|
||
|
||
MCP工具API文档:详见 [docs/mcp-api.md](docs/mcp-api.md)
|
||
|
||
开发环境准备与本地源码运行说明:[`docs/development-setup.md`](docs/development-setup.md)
|
||
|
||
本地开发启用 Rust 加速扩展,需先安装 Rust toolchain 并确保 `cargo` 可用;未安装时项目会自动使用 Python 实现:
|
||
|
||
```shell
|
||
cargo --version
|
||
python -m pip install "maturin>=1.9,<2"
|
||
python -m maturin develop --release --manifest-path rust/moviepilot_rust/Cargo.toml
|
||
python -c "from app.utils import rust_accel; print(rust_accel.is_available())"
|
||
```
|
||
|
||
如果输出 `True`,说明当前开发环境已经加载 `moviepilot_rust`。重新修改 Rust 代码后再次执行 `python -m maturin develop --release --manifest-path rust/moviepilot_rust/Cargo.toml` 即可更新本地扩展。
|
||
|
||
需要本地评估 Rust 加速效果时,可运行:
|
||
|
||
```shell
|
||
python scripts/benchmark_rust_accel.py --loops 20 --repeat 5
|
||
```
|
||
|
||
插件开发说明:<https://wiki.movie-pilot.org/zh/plugindev>
|
||
|
||
## 相关项目
|
||
|
||
- [MoviePilot-Frontend](https://github.com/jxxghp/MoviePilot-Frontend)
|
||
- [MoviePilot-Resources](https://github.com/jxxghp/MoviePilot-Resources)
|
||
- [MoviePilot-Plugins](https://github.com/jxxghp/MoviePilot-Plugins)
|
||
- [MoviePilot-Server](https://github.com/jxxghp/MoviePilot-Server)
|
||
- [MoviePilot-Wiki](https://github.com/jxxghp/MoviePilot-Wiki)
|
||
|
||
## 免责申明
|
||
|
||
- 本软件仅供学习交流使用,任何人不得将本软件用于商业用途,任何人不得将本软件用于违法犯罪活动,软件对用户行为不知情,一切责任由使用者承担。
|
||
- 本软件代码开源,基于开源代码进行修改,人为去除相关限制导致软件被分发、传播并造成责任事件的,需由代码修改发布者承担全部责任,不建议对用户认证机制进行规避或修改并公开发布。
|
||
- 本项目不接受捐赠,没有在任何地方发布捐赠信息页面,软件本身不收费也不提供任何收费相关服务,请仔细辨别避免误导。
|
||
|
||
## 贡献者
|
||
|
||
<a href="https://github.com/jxxghp/MoviePilot/graphs/contributors">
|
||
<img src="https://contrib.rocks/image?repo=jxxghp/MoviePilot" />
|
||
</a>
|