经 AI Skill Hub 精选评估,MoneyPrinterTurbo Agent工作流 获评「强烈推荐」。在 GitHub 上收获超过 57.3k 颗 Star,这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.2 分,适合有一定技术背景的用户使用。
MoneyPrinterTurbo Agent工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
MoneyPrinterTurbo Agent工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install moneyprinterturbo
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install moneyprinterturbo
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/harry0703/MoneyPrinterTurbo
cd MoneyPrinterTurbo
pip install -e .
# 验证安装
python -c "import moneyprinterturbo; print('安装成功')"
# 命令行使用
moneyprinterturbo --help
# 基本用法
moneyprinterturbo input_file -o output_file
# Python 代码中调用
import moneyprinterturbo
# 示例
result = moneyprinterturbo.process("input")
print(result)
# moneyprinterturbo 配置文件示例(config.yml) app: name: "moneyprinterturbo" debug: false log_level: "INFO" # 运行时指定配置文件 moneyprinterturbo --config config.yml # 或通过环境变量配置 export MONEYPRINTERTURBO_API_KEY="your-key" export MONEYPRINTERTURBO_OUTPUT_DIR="./output"
<p align="center"> <a href="https://github.com/harry0703/MoneyPrinterTurbo/stargazers"><img src="https://img.shields.io/github/stars/harry0703/MoneyPrinterTurbo.svg?style=for-the-badge" alt="Stargazers"></a> <a href="https://github.com/harry0703/MoneyPrinterTurbo/issues"><img src="https://img.shields.io/github/issues/harry0703/MoneyPrinterTurbo.svg?style=for-the-badge" alt="Issues"></a> <a href="https://github.com/harry0703/MoneyPrinterTurbo/network/members"><img src="https://img.shields.io/github/forks/harry0703/MoneyPrinterTurbo.svg?style=for-the-badge" alt="Forks"></a> <a href="https://github.com/harry0703/MoneyPrinterTurbo/blob/main/LICENSE"><img src="https://img.shields.io/github/license/harry0703/MoneyPrinterTurbo.svg?style=for-the-badge" alt="License"></a> </p> <br> <h3>简体中文 | <a href="README-en.md">English</a></h3> <div align="center"> <a href="https://trendshift.io/repositories/8731" target="_blank"><img src="https://trendshift.io/api/badge/repositories/8731" alt="harry0703%2FMoneyPrinterTurbo | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a> </div> <br> 只需提供一个视频 <b>主题</b> 或 <b>关键词</b> ,就可以全自动生成视频文案、视频素材、视频字幕、视频背景音乐,然后合成一个高清的短视频。 <br>


</div>
用于视频的背景音乐,位于项目的 resource/songs 目录下。 > 当前项目里面放了一些默认的音乐,来自于 YouTube 视频,如有侵权,请删除。
API 和 Web界面1080x19201920x1080字体、位置、颜色、大小,同时支持字幕描边设置背景音乐音量如果未安装 Docker,请先安装 https://www.docker.com/products/docker-desktop/
如果是Windows系统,请参考微软的文档:
cd MoneyPrinterTurbo
docker-compose up
注意:最新版的docker安装时会自动以插件的形式安装docker compose,启动命令调整为docker compose up
打开浏览器,访问 http://0.0.0.0:8501
打开浏览器,访问 http://0.0.0.0:8080/docs 或者 http://0.0.0.0:8080/redoc
视频教程
推荐使用 uv 管理 Python 环境和依赖,默认使用 Python 3.11
git clone https://github.com/harry0703/MoneyPrinterTurbo.git
cd MoneyPrinterTurbo
uv python install 3.11
uv sync --frozen
如果你暂时不使用 uv,也可以继续使用 venv + pip
python3.11 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
说明: - pyproject.toml 是主依赖定义文件 - uv.lock 是锁文件,建议默认执行 uv sync --frozen - requirements.txt 仅保留给旧的 pip 安装方式兼容使用
- Windows: - 下载 https://imagemagick.org/script/download.php 选择Windows版本,切记一定要选择 静态库 版本,比如 ImageMagick-7.1.1-32-Q16-x64-static.exe - 安装下载好的 ImageMagick,注意不要修改安装路径 - 修改 配置文件 config.toml 中的 imagemagick_path 为你的 实际安装路径
- MacOS:
brew install imagemagick
` - Ubuntu sudo apt-get install imagemagick
- CentOS sudo yum install ImageMagick
注意需要到 MoneyPrinterTurbo 项目 根目录 下执行以下命令
###### Windows
uv run streamlit run ./webui/Main.py --browser.gatherUsageStats=False
如果你已经手动激活了虚拟环境,也可以直接执行:
webui.bat
###### MacOS or Linux
uv run streamlit run ./webui/Main.py --browser.gatherUsageStats=False
如果你已经手动激活了虚拟环境,也可以直接执行:
sh webui.sh
启动后,会自动打开浏览器(如果打开是空白,建议换成 Chrome 或者 Edge 打开)
uv run python main.py
如果你已经手动激活了虚拟环境,也可以直接执行:
python main.py
uv sync --frozen 进行本地部署免去本地环境配置,点击直接在 Google Colab 中快速体验 MoneyPrinterTurbo
下载一键启动包,解压直接使用(路径不要有 中文、特殊字符、空格) 当前提供的安装包仍是 v1.2.6 的旧打包版本,建议下载后先执行 update.bat 更新到最新代码。
下载后,建议先双击执行 update.bat 更新到最新代码,然后双击 start.bat 启动
启动后,会自动打开浏览器(如果打开是空白,建议换成 Chrome 或者 Edge 打开)
| 项目 | 最低配置 | 推荐配置 | 理想配置 |
|---|---|---|---|
| CPU | 4 核 | 6 到 8 核 | 8 核及以上 |
| RAM | 4 GB | 8 GB | 16 GB 及以上 |
| GPU | 非必须 | 4 GB 显存及以上 | 8 GB 显存及以上 |
faster-whisper、批量生成或更重的本地处理链路,GPU 会明显提升速度ffmpeg_path = "C:\\Users\\harry\\Downloads\\ffmpeg.exe" ```
LocalEntryNotfoundEror: Cannot find an appropriate cached snapshotfolderfor the specified revision on the local disk and outgoing trafic has been disabled. To enablerepo look-ups and downloads online, pass 'local files only=False' as input.
或者
An error occurred while synchronizing the model Systran/faster-whisper-large-v3 from the Hugging Face Hub: An error happened while trying to locate the files on the Hub and we cannot find the appropriate snapshot folder for the specified revision on the local disk. Please check your internet connection and try again. Trying to load the model directly from the local cache, if it exists.
解决方法:点击查看如何从网盘手动下载模型
57k stars体现社区认可度高,工作流设计完整,自动化程度好,但依赖外部API成本,适合专业用户和团队使用。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:MoneyPrinterTurbo Agent工作流 的核心功能完整,质量优秀。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | MoneyPrinterTurbo |
| 原始描述 | 开源AI工作流:利用AI大模型,一键生成高清短视频 Generate short videos with one click using AI LLM.。⭐57.3k · Python |
| Topics | AI生成短视频自动化开源Python |
| GitHub | https://github.com/harry0703/MoneyPrinterTurbo |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-18 · 更新时间:2026-05-19 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端